HomeSort by relevance Sort by last modified time
    Searched full:leaf (Results 1 - 25 of 1237) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/fontconfig/include/fc-lang/
fclang.h 33 #define LEAF(o,l) (LEAF0 + l * sizeof (FcCharLeaf) - (OFF0 + o * sizeof (intptr_t)))
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
stat.test 40 } {wal delete sqlite_master / 1 leaf 0 0 916 0}
55 } {t1 / 2 leaf 2 10 998 5}
60 } {i1 / 3 leaf 2 10 1000 5}
65 } {sqlite_master / 1 leaf 2 77 831 40}
83 sqlite_autoindex_t3_1 /000/ 8 leaf 8 946 46 123 \
84 sqlite_autoindex_t3_1 /001/ 9 leaf 8 988 2 131 \
85 sqlite_autoindex_t3_1 /002/ 15 leaf 7 857 137 132 \
86 sqlite_autoindex_t3_1 /003/ 20 leaf 6 739 257 129 \
88 t3 /000/ 4 leaf 2 678 328 340 \
89 t3 /001/ 5 leaf 2 682 324 342
    [all...]
recover.test 96 # Leaf-only database parses.
97 do_test recover-leaf-1.0 {
100 generate "leaf" "Leaf-node-generating line " 10
105 leaf,
111 } {{Leaf-node-generating line 0} 0 {Leaf-node-generating line 1} 1 {Leaf-node-generating line 2} 2 {Leaf-node-generating line 3} 3 {Leaf-node-generating line 4} 4 {Leaf-node-generating line 5} 5 {Leaf-node-generating line 6} 6 {Leaf-no (…)
    [all...]
  /external/clang/test/Driver/
frame-pointer-elim.c 1 // For these next two tests when optimized we should omit the leaf frame
2 // pointer, for unoptimized we should have a leaf frame pointer.
5 // LINUX-OPT: "-momit-leaf-frame-pointer"
9 // LINUX-NOT: "-momit-leaf-frame-pointer"
11 // Darwin disables omitting the leaf frame pointer even under optimization
19 // DARWIN-OPT-NOT: "-momit-leaf-frame-pointer"
25 // RUN: %clang -### -target i386-darwin -S -momit-leaf-frame-pointer %s 2>&1 | \
27 // OMIT_LEAF: "-momit-leaf-frame-pointer"
  /external/chromium_org/third_party/tcmalloc/vendor/src/
pagemap.h 121 // Put 32 entries in the root and (2^BITS)/32 entries in each leaf.
128 // Leaf node
129 struct Leaf {
133 Leaf* root_[ROOT_LENGTH]; // Pointers to 32 child nodes
170 Leaf* leaf = reinterpret_cast<Leaf*>((*allocator_)(sizeof(Leaf))); local
171 if (leaf == NULL) return false;
172 memset(leaf, 0, sizeof(*leaf))
190 Leaf* leaf = root_[i1]; local
284 Leaf* leaf = reinterpret_cast<Leaf*>((*allocator_)(sizeof(Leaf))); local
307 Leaf* leaf = reinterpret_cast<Leaf*>(root_->ptrs[i1]->ptrs[i2]); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_pytree.py 32 """Unit tests for nodes (Base, Leaf, Node)."""
37 l = pytree.Leaf(100, "foo")
57 l1 = pytree.Leaf(100, "foo")
62 l1 = pytree.Leaf(100, "foo")
63 self.assertEqual(repr(l1), "Leaf(100, 'foo')")
66 l1 = pytree.Leaf(100, "foo")
68 l2 = pytree.Leaf(100, "foo", context=(" ", (10, 1)))
72 # Make sure that the Leaf's value is stringified. Failing to
74 l1 = pytree.Leaf(2, 5)
79 l1 = pytree.Leaf(100, "foo"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_pytree.py 32 """Unit tests for nodes (Base, Leaf, Node)."""
37 l = pytree.Leaf(100, "foo")
57 l1 = pytree.Leaf(100, "foo")
62 l1 = pytree.Leaf(100, "foo")
63 self.assertEqual(repr(l1), "Leaf(100, 'foo')")
66 l1 = pytree.Leaf(100, "foo")
68 l2 = pytree.Leaf(100, "foo", context=(" ", (10, 1)))
72 # Make sure that the Leaf's value is stringified. Failing to
74 l1 = pytree.Leaf(2, 5)
79 l1 = pytree.Leaf(100, "foo"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
PatternGrammar.txt 6 # - 'TOKEN' stands for any token (leaf node)
7 # - 'any' stands for any node (leaf or interior)
fixer_util.py 8 from .pytree import Leaf, Node
19 [keyword, Leaf(token.EQUAL, u"="), value])
22 return Leaf(token.LPAR, u"(")
25 return Leaf(token.RPAR, u")")
36 target + [Leaf(token.EQUAL, u"=", prefix=u" ")] + source)
39 """Return a NAME leaf"""
40 return Leaf(token.NAME, name, prefix=prefix)
47 """A comma leaf"""
48 return Leaf(token.COMMA, u",")
51 """A period (.) leaf"""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
PatternGrammar.txt 6 # - 'TOKEN' stands for any token (leaf node)
7 # - 'any' stands for any node (leaf or interior)
fixer_util.py 8 from .pytree import Leaf, Node
19 [keyword, Leaf(token.EQUAL, u"="), value])
22 return Leaf(token.LPAR, u"(")
25 return Leaf(token.RPAR, u")")
36 target + [Leaf(token.EQUAL, u"=", prefix=u" ")] + source)
39 """Return a NAME leaf"""
40 return Leaf(token.NAME, name, prefix=prefix)
47 """A comma leaf"""
48 return Leaf(token.COMMA, u",")
51 """A period (.) leaf"""
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
ChildrenAssociationPolicy.java 17 * This enumeration represents the children association policy for associating leaf nodes
24 /** Anyone may associate leaf nodes with the collection */
27 /** Only collection node owners may associate leaf nodes with the collection. */
30 /** Only those on a whitelist may associate leaf nodes with the collection. */
  /external/guava/guava-tests/test/com/google/common/collect/
BstNodeTest.java 53 SimpleNode leaf = new SimpleNode('a', null, null); local
54 testLacksChild(leaf, LEFT);
55 testLacksChild(leaf, RIGHT);
59 SimpleNode leaf = new SimpleNode('a', null, null); local
60 SimpleNode node = new SimpleNode('b', leaf, null);
61 testChildIs(node, LEFT, leaf);
66 SimpleNode leaf = new SimpleNode('c', null, null); local
67 SimpleNode node = new SimpleNode('b', null, leaf);
69 testChildIs(node, RIGHT, leaf);
  /external/chromium_org/net/cert/
ct_objects_extractor.h 20 // leaf cert as an X.509v3 extension with the OID 1.3.6.1.4.1.11129.2.4.2.
28 // Obtains a PrecertChain log entry for |leaf|, an X.509v3 certificate that
33 // Note: If |leaf| does not contain the required extension, it is treated as
35 NET_EXPORT_PRIVATE bool GetPrecertLogEntry(X509Certificate::OSCertHandle leaf,
39 // Obtains an X509Chain log entry for |leaf|, an X.509v3 certificate that
45 NET_EXPORT_PRIVATE bool GetX509LogEntry(X509Certificate::OSCertHandle leaf,
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/
bare_object_walker.js 6 * @fileoverview A JavaScript class for walking the leaf nodes of the dom.
8 * when traversal of the leaf nodes is required (e.g. by other walkers), but
  /external/chromium_org/net/data/ssl/scripts/
generate-cross-signed-certs.sh 8 # another (newer) one signed with SHA1 - and has a leaf certificate signed
18 # should be leaf -> SHA1root, not leaf -> MD5root, leaf -> SHA1root -> MD5root,
19 # or leaf -> MD5root -> SHA1root
67 # Generate the leaf certificate request
74 # Generate the leaf certificates
92 -out ../certificates/cross-signed-leaf.pem
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
disambiguation_popup_blacklist.html 21 <div>Leaf node #1</div>
24 <div>Leaf node #2</div>
  /external/chromium_org/extensions/browser/
content_hash_tree.h 13 // This takes a list of sha256 hashes, considers them to be leaf nodes of a
20 // elements). E.g., imagine we use a branch factor of 3 for a vector of 4 leaf
32 // means that the root hash of any vector with just one leaf is the same as
33 // that leaf. Ie RootHash([A]) == A, not Hash(A).
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 23 from ..fixer_util import Name, syms, Node, Leaf
29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
30 2) clsdef => simple_stmt => expr_stmt => Leaf('__meta')
39 if isinstance(left_side, Leaf) and \
108 # look for simple_stmt[ expr_stmt[ Leaf('__metaclass__') ] ]
115 if isinstance(left_node, Leaf) and \
134 # find the first Leaf
137 if isinstance(node, Leaf) and node.type != token.DEDENT:
164 text_type = node.children[0].type # always Leaf(nnn, 'class')
186 node.insert_child(2, Leaf(token.RPAR, u')')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 23 from ..fixer_util import Name, syms, Node, Leaf
29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
30 2) clsdef => simple_stmt => expr_stmt => Leaf('__meta')
39 if isinstance(left_side, Leaf) and \
108 # look for simple_stmt[ expr_stmt[ Leaf('__metaclass__') ] ]
115 if isinstance(left_node, Leaf) and \
134 # find the first Leaf
137 if isinstance(node, Leaf) and node.type != token.DEDENT:
164 text_type = node.children[0].type # always Leaf(nnn, 'class')
186 node.insert_child(2, Leaf(token.RPAR, u')')
    [all...]
  /external/e2fsprogs/debugfs/
extent_cmds.ct 13 request do_last_leaf, "Goto last leaf",
28 request do_next_leaf, "Goto next leaf",
31 request do_prev_leaf, "Goto previous leaf",
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/pat_trie_/
traits.hpp 46 #include <ext/pb_ds/detail/pat_trie_/leaf.hpp>
110 leaf; typedef in struct:__gnu_pbds::detail::trie_traits
132 leaf,
143 leaf,
154 leaf,
165 leaf,
175 leaf,
187 leaf,
271 leaf; typedef in struct:__gnu_pbds::detail::trie_traits
293 leaf,
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
traits.hpp 46 #include <ext/pb_ds/detail/pat_trie_/leaf.hpp>
110 leaf; typedef in struct:__gnu_pbds::detail::trie_traits
132 leaf,
143 leaf,
154 leaf,
165 leaf,
175 leaf,
187 leaf,
271 leaf; typedef in struct:__gnu_pbds::detail::trie_traits
293 leaf,
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
traits.hpp 46 #include <ext/pb_ds/detail/pat_trie_/leaf.hpp>
110 leaf; typedef in struct:__gnu_pbds::detail::trie_traits
132 leaf,
143 leaf,
154 leaf,
165 leaf,
175 leaf,
187 leaf,
271 leaf; typedef in struct:__gnu_pbds::detail::trie_traits
293 leaf,
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
traits.hpp 46 #include <ext/pb_ds/detail/pat_trie_/leaf.hpp>
110 leaf; typedef in struct:__gnu_pbds::detail::trie_traits
132 leaf,
143 leaf,
154 leaf,
165 leaf,
175 leaf,
187 leaf,
271 leaf; typedef in struct:__gnu_pbds::detail::trie_traits
293 leaf,
    [all...]

Completed in 1144 milliseconds

1 2 3 4 5 6 7 8 91011>>