Home
last modified time | relevance | path

Searched refs:tree (Results 1 – 25 of 167) sorted by relevance

1234567

/template/strap/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DTrees.php25 public static function toStringTree(Tree $tree, ?array $ruleNames = null) : string argument
27 $string = self::getNodeText($tree, $ruleNames);
30 $childCount = $tree->getChildCount();
39 $child = $tree->getChild($i);
52 public static function getNodeText(Tree $tree, ?array $ruleNames) : string argument
55 if ($tree instanceof RuleContext) {
56 $ruleIndex = $tree->getRuleContext()->getRuleIndex();
58 $altNumber = $tree->getAltNumber();
67 if ($tree instanceof ErrorNode) {
68 return (string) $tree;
[all …]
H A DParseTreeWalker.php18 public function walk(ParseTreeListener $listener, ParseTree $tree) : void argument
20 if ($tree instanceof ErrorNode) {
21 $listener->visitErrorNode($tree);
26 if ($tree instanceof TerminalNode) {
27 $listener->visitTerminal($tree);
32 if (!$tree instanceof RuleNode) {
36 $this->enterRule($listener, $tree);
38 $count = $tree->getChildCount();
41 $child = $tree->getChild($i);
48 $this->exitRule($listener, $tree);
H A DAbstractParseTreeVisitor.php16 public function visit(ParseTree $tree) argument
18 return $tree->accept($this);
81 public function visitErrorNode(ErrorNode $tree) argument
H A DParseTreeVisitor.php17 * @param ParseTree $tree The {@see ParseTree} to visit.
19 public function visit(ParseTree $tree); argument
/template/strap/resources/theme/default/components/css/
H A Dpage-explorer-tree.css1 .page-explorer-tree-cs {
9 .page-explorer-tree-cs ul {
14 .page-explorer-tree-cs > ul {
18 .page-explorer-tree-cs li {
23 .page-explorer-tree-cs img, .page-explorer-tree-cs svg {
28 .page-explorer-tree-cs a {
40 .page-explorer-tree-cs > ul {
47 .page-explorer-tree-cs a {
52 .page-explorer-tree-cs .btn {
62 .page-explorer-tree-cs .btn:hover, .page-explorer-tree-cs .btn:focus {
[all …]
/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHandlebars.php457 $tree = $this->tokenize($source);
458 return new Template($this, $tree, $source);
474 $tree = $this->tokenize($source);
475 return new Template($this, $tree, $source);
511 $tree = $this->tokenize($source);
512 return new Template($this, $tree, $source);
524 $tree = $this->getCache()->get($hash);
525 if ($tree === false) {
527 $tree = $this->getParser()->parse($tokens);
528 $this->getCache()->set($hash, $tree);
[all …]
H A DTemplate.php30 protected $tree = []; variable in Handlebars\\Template
43 * @param array $tree Parsed tree
46 public function __construct(Handlebars $engine, $tree, $source) argument
49 $this->tree = $tree;
61 return $this->tree;
124 list($index, $tree, $stop) = $topTree;
127 while (array_key_exists($index, $tree)) {
128 $current = $tree[$index];
194 list($index, $tree, $stop) = $topTree;
195 while (array_key_exists($index, $tree)) {
[all …]
H A DHelpers.php226 $tree = $tpl->getTree();
230 foreach ($tree[0]['nodes'] as $node) {
243 foreach ($tree[0]['nodes'] as $key => $node) {
251 $remains = array_slice($tree[0]['nodes'], $key + 1);
/template/strap/ComboStrap/
H A DTreeVisit.php9 public static function visit(TreeNode $tree, Callable $function, int $level = 0) argument
11 call_user_func($function, $tree, $level);
12 if ($tree->hasChildren()) {
14 foreach ($tree->getChildren() as $child) {
H A DTreeSystem.php30 public static function print(TreeNode $tree) argument
38 TreeVisit::visit($tree, $printRecursively);
H A DPageSql.php57 $tree = $parser->pageSql();
64 ParseTreeWalker::default()->walk($this->listener, $tree);
H A DPageExplorerTag.php636 $tree = PathTreeNode::buildTreeViaFileSystemChildren($namespacePath);
637 self::treeProcessTree($returnedXhtml, $tree, $data);
/template/starterbootstrap/
Dgenerate_index.php70 $tree = array();
72 return $tree;
73 … _array2treer($source_arr, $tree, $parent_id, $parent_id, $key_children, $key_id, $key_parent_id);
74 return $tree;
DREADME.markdown52 I've [forked bootstrap](https://github.com/apexskier/bootstrap/tree/starterbootstrap)
57 [`less/dokuwiki`](https://github.com/apexskier/bootstrap/tree/starterbootstrap/less/dokuwiki)
/template/strap/resources/dictionary/
H A DREADME.md9 …* [fad](./fad-icons.json) - list of [fad svg](https://github.com/fefanto/fontaudio/tree/master/svg…
10 …omoon-icons.json) - list of [icomoon svg](https://github.com/Keyamoon/IcoMoon-Free/tree/master/SVG)
11 …json) - list of [CoreUI Brands icons](https://github.com/coreui/coreui-icons/tree/master/svg/brand)
/template/amanuensis/inc/
Dindex.js44 this.tree = document.getElementById(navid);
47 if(this.tree != null)
50 this.items = this.tree.getElementsByTagName('li');
/template/battlehorse/js/
Ddragdrop.js24 tree: false property
59 if(drop.tree) {
607 tree: false, property
660 tree: options.tree, property
679 if(options.dropOnEmpty || options.tree) {
691 if(options.tree) e.treeNode = element;
695 if(options.tree) {
714 element, options.only, options.tree ? true : false, options.tag);
719 element, options.only, options.tree ? true : false, options.treeTag);
725 if(overlap > .33 && overlap < .66 && Sortable.options(dropon).tree) {
[all …]
/template/a_new_day/js/
Ddragdrop.js24 tree: false property
59 if(drop.tree) {
607 tree: false, property
660 tree: options.tree, property
679 if(options.dropOnEmpty || options.tree) {
691 if(options.tree) e.treeNode = element;
695 if(options.tree) {
714 element, options.only, options.tree ? true : false, options.tag);
719 element, options.only, options.tree ? true : false, options.treeTag);
725 if(overlap > .33 && overlap < .66 && Sortable.options(dropon).tree) {
[all …]
/template/strap/
H A Dcomposer.lock56 "source": "https://github.com/antlr/antlr-php-runtime/tree/0.5.1"
99 "source": "https://github.com/ThomasWeinert/PhpCss/tree/2.0.0"
146 "source": "https://github.com/dragonmantank/cron-expression/tree/v1.2.0"
203 "source": "https://github.com/hidehalo/nanoid-php/tree/1.1.8"
318 "source": "https://github.com/php-webdriver/php-webdriver/tree/1.12.1"
375 "source": "https://github.com/salesforce/handlebars-php/tree/3.0.1"
428 "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
507 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
587 "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
667 "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
[all …]
/template/strap/resources/slot/
H A Dpage-side.md1 <page-explorer tree></page-explorer>
/template/twigstarter/
Dcomposer.lock73 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
156 "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
232 "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
316 "source": "https://github.com/twigphp/Twig/tree/v2.15.3"
/template/strap/vendor/antlr/antlr4-php-runtime/
H A DREADME.md42 Suppose you're using the JSON grammar from https://github.com/antlr/grammars-v4/tree/master/json.
54 tree visitor, but we won't be doing that here. For a full list of antlr4 tool
91 $tree = $parser->json();
93 ParseTreeWalker::default()->walk(new TreeShapeListener(), $tree);
/template/gtopia/
Dsystem.css54 div.tree-child {
55 background: url(../../misc/tree.png) no-repeat 11px center; /* LTR */
57 div.tree-child-last {
58 background: url(../../misc/tree-bottom.png) no-repeat 11px center; /* LTR */
60 div.tree-child-horizontal {
61 background: url(../../misc/tree.png) no-repeat -11px center;
/template/notos/css/
Dbase.less45 // namespace tree (ugly)
/template/byu_2017_theme/css/
D_media_popup.css77 /*____________ tree ____________*/

1234567