/external/chromium_org/content/test/data/accessibility/ |
aria-level-expected-win.txt | 8 ROLE_SYSTEM_TEXT name='Tree item at level 1' READONLY 10 ROLE_SYSTEM_TEXT name='Tree item at level 2' READONLY 12 ROLE_SYSTEM_TEXT name='Tree item at level 3' READONLY
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Parser/ |
innerHTML-setter.html | 12 var tree = generateBinDOMTree(10); 15 description: "This benchmark tests innerHTML setter for a large DOM tree", 17 div.innerHTML = tree;
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_treewriter.h | 6 * tree. An additional intellectual property rights grant can be found 8 * be found in the AUTHORS file in the root of the source tree. 48 vp9_tree tree, const vp9_prob *probs, 55 i = tree[i + bit]; 59 static INLINE void write_token(vp9_writer *w, vp9_tree tree, 62 treed_write(w, tree, probs, token->value, token->len); 65 static INLINE int treed_cost(vp9_tree tree, const vp9_prob *probs, 73 i = tree[i + bit]; 79 static INLINE int cost_token(vp9_tree tree, const vp9_prob *probs, 81 return treed_cost(tree, probs, token->value, token->len) [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
tree-inline.h | 0 /* Tree inlining hooks and declarations. 46 tree src_fn; 50 tree dst_fn; 64 tree retvar; 71 tree (*copy_decl) (tree, struct copy_body_data *); 74 tree block; 113 void (*transform_lang_insert_block) (tree); 172 extern tree copy_tree_body_r (tree *, int *, void *) [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
tree-inline.h | 0 /* Tree inlining hooks and declarations. 46 tree src_fn; 50 tree dst_fn; 64 tree retvar; 71 tree (*copy_decl) (tree, struct copy_body_data *); 74 tree block; 113 void (*transform_lang_insert_block) (tree); 172 extern tree copy_tree_body_r (tree *, int *, void *) [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
tree-inline.h | 0 /* Tree inlining hooks and declarations. 46 tree src_fn; 50 tree dst_fn; 64 tree retvar; 71 tree (*copy_decl) (tree, struct copy_body_data *); 74 tree block; 113 void (*transform_lang_insert_block) (tree); 172 extern tree copy_tree_body_r (tree *, int *, void *) [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
tree-inline.h | 0 /* Tree inlining hooks and declarations. 46 tree src_fn; 50 tree dst_fn; 64 tree retvar; 71 tree (*copy_decl) (tree, struct copy_body_data *); 74 tree block; 113 void (*transform_lang_insert_block) (tree); 172 extern tree copy_tree_body_r (tree *, int *, void *) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
BaseTreeAdaptor.cs | 33 namespace Antlr.Runtime.Tree 42 /** <summary>A TreeAdaptor that works with any Tree implementation.</summary> */ 48 * expensive: we have to create a hashtable with all tree nodes in it. 60 * Create tree node that holds the start and stop tokens associated 65 * If you specify your own kind of tree nodes, you will likely have to 71 * subclass your own tree node class to avoid class cast exception. 82 public virtual bool IsNil( object tree ) 84 return ( (ITree)tree ).IsNil; 109 public virtual object DupTree( object tree ) 111 return DupTree( tree, null ) [all...] |
/external/clang/test/Misc/ |
diag-template-diffing.cpp | 3 // RUN: not %clang_cc1 -fsyntax-only %s -fdiagnostics-show-template-tree -std=c++11 2>&1 | FileCheck %s -check-prefix=CHECK-ELIDE-TREE 4 // RUN: not %clang_cc1 -fsyntax-only %s -fno-elide-type -fdiagnostics-show-template-tree -std=c++11 2>&1 | FileCheck %s -check-prefix=CHECK-NOELIDE-TREE 30 // CHECK-ELIDE-TREE: no matching function for call to 'f' 31 // CHECK-ELIDE-TREE: candidate function not viable: no known conversion from argument type to parameter type for 1st argument 32 // CHECK-ELIDE-TREE: vector< 33 // CHECK-ELIDE-TREE: [class std::basic_string != class versa_string]> 34 // CHECK-NOELIDE-TREE: no matching function for call to 'f' 35 // CHECK-NOELIDE-TREE: candidate function not viable: no known conversion from argument type to parameter type for 1st a (…) [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
BaseTreeAdaptor.java | 28 package org.antlr.runtime.tree; 37 /** A TreeAdaptor that works with any Tree implementation. */ 41 * expensive: we have to create a hashtable with all tree nodes in it. 50 /** create tree node that holds the start and stop tokens associated 53 * If you specify your own kind of tree nodes, you will likely have to 59 * subclass your own tree node class to avoid class cast exception. 69 public boolean isNil(Object tree) { 70 return ((Tree)tree).isNil(); 73 public Object dupTree(Object tree) { [all...] |
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestTreeNodeStream.java | 32 import org.antlr.runtime.tree.*; 35 /** Test the tree node stream. */ 48 Tree t = new CommonTree(new CommonToken(101)); 62 Tree t = new CommonTree(new CommonToken(101)); 78 Tree root = new CommonTree((Token)null); 80 Tree t = new CommonTree(new CommonToken(101)); 85 Tree u = new CommonTree(new CommonToken(105)); 101 Tree root = new CommonTree((Token)null); 118 Tree root = new CommonTree((Token)null); 133 Tree t = new CommonTree(new CommonToken(101)) [all...] |
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/ |
TTree.g | 0 tree grammar TTree; 12 // the tree parser after the parser. It will also rebuild 13 // the tree parser if the parser is rebuilt. 17 // Use ANTLR built-in CommonToken for tree nodes
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
Tree.as | 1 package org.antlr.runtime.tree { 2 /** What does a tree look like? ANTLR has a number of support classes 7 * NOTE: When constructing trees, ANTLR can build any kind of tree; it can 10 * This is a tree node without any payload; just navigation and factory stuff. 12 public interface Tree { 14 function getChild(i:int):Tree; 18 // Tree tracks parent and child index now > 3.0 20 function get parent():Tree; 22 function set parent(t:Tree):void; 28 function getAncestor(ttype:int):Tree; [all...] |
TreeConstants.as | 1 package org.antlr.runtime.tree
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t049treeparseraWalker.g | 2 tree grammar t049treeparseraWalker;
|
t049treeparserbWalker.g | 2 tree grammar t049treeparserbWalker;
|
t049treeparsereWalker.g | 2 tree grammar t049treeparsereWalker;
|
t049treeparserfWalker.g | 2 tree grammar t049treeparserfWalker;
|
t049treeparsergWalker.g | 2 tree grammar t049treeparsergWalker;
|
t049treeparseriWalker.g | 0 tree grammar t049treeparseriWalker;
|
t051treeRewriteASTaWalker.g | 2 tree grammar t051treeRewriteASTaWalker;
|
t051treeRewriteASTacWalker.g | 2 tree grammar t051treeRewriteASTacWalker;
|
t051treeRewriteASTbWalker.g | 2 tree grammar t051treeRewriteASTbWalker;
|
t051treeRewriteASTdWalker.g | 2 tree grammar t051treeRewriteASTdWalker;
|
t051treeRewriteASTeWalker.g | 2 tree grammar t051treeRewriteASTeWalker;
|