Home
last modified time | relevance | path

Searched refs:leaf (Results 1 – 25 of 91) sorted by relevance

1234

/external/guava/guava-tests/test/com/google/common/collect/
DBstNodeTest.java53 SimpleNode leaf = new SimpleNode('a', null, null); in testHasChildLeaf() local
54 testLacksChild(leaf, LEFT); in testHasChildLeaf()
55 testLacksChild(leaf, RIGHT); in testHasChildLeaf()
59 SimpleNode leaf = new SimpleNode('a', null, null); in testHasChildLeftOnly() local
60 SimpleNode node = new SimpleNode('b', leaf, null); in testHasChildLeftOnly()
61 testChildIs(node, LEFT, leaf); in testHasChildLeftOnly()
66 SimpleNode leaf = new SimpleNode('c', null, null); in testHasChildRightOnly() local
67 SimpleNode node = new SimpleNode('b', null, leaf); in testHasChildRightOnly()
69 testChildIs(node, RIGHT, leaf); in testHasChildRightOnly()
/external/webkit/Source/WebCore/rendering/
DInlineBox.cpp246 InlineBox* leaf = 0; in nextLeafChild() local
247 for (InlineBox* box = nextOnLine(); box && !leaf; box = box->nextOnLine()) in nextLeafChild()
248 leaf = box->isLeaf() ? box : static_cast<InlineFlowBox*>(box)->firstLeafChild(); in nextLeafChild()
249 if (!leaf && parent()) in nextLeafChild()
250 leaf = parent()->nextLeafChild(); in nextLeafChild()
251 return leaf; in nextLeafChild()
256 InlineBox* leaf = 0; in prevLeafChild() local
257 for (InlineBox* box = prevOnLine(); box && !leaf; box = box->prevOnLine()) in prevLeafChild()
258 leaf = box->isLeaf() ? box : static_cast<InlineFlowBox*>(box)->lastLeafChild(); in prevLeafChild()
259 if (!leaf && parent()) in prevLeafChild()
[all …]
DRootInlineBox.cpp456 static bool isEditableLeaf(InlineBox* leaf) in isEditableLeaf() argument
458 …return leaf && leaf->renderer() && leaf->renderer()->node() && leaf->renderer()->node()->rendererI… in isEditableLeaf()
480 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) { in closestLeafChildForLogicalLeftPosition() local
481 if (!leaf->renderer()->isListMarker() && (!onlyEditableLeaves || isEditableLeaf(leaf))) { in closestLeafChildForLogicalLeftPosition()
482 closestLeaf = leaf; in closestLeafChildForLogicalLeftPosition()
483 if (leftPosition < leaf->logicalRight()) in closestLeafChildForLogicalLeftPosition()
486 return leaf; in closestLeafChildForLogicalLeftPosition()
DInlineFlowBox.cpp1242 InlineBox* leaf = 0; in firstLeafChild() local
1243 for (InlineBox* child = firstChild(); child && !leaf; child = child->nextOnLine()) in firstLeafChild()
1244 leaf = child->isLeaf() ? child : static_cast<InlineFlowBox*>(child)->firstLeafChild(); in firstLeafChild()
1245 return leaf; in firstLeafChild()
1250 InlineBox* leaf = 0; in lastLeafChild() local
1251 for (InlineBox* child = lastChild(); child && !leaf; child = child->prevOnLine()) in lastLeafChild()
1252 leaf = child->isLeaf() ? child : static_cast<InlineFlowBox*>(child)->lastLeafChild(); in lastLeafChild()
1253 return leaf; in lastLeafChild()
1382 InlineBox* leaf = firstLeafChild(); in collectLeafBoxesInLogicalOrder() local
1390 for (; leaf; leaf = leaf->nextLeafChild()) { in collectLeafBoxesInLogicalOrder()
[all …]
/external/quake/quake/src/QW/client/
Dgl_refrag.c59 prev = &ef->leaf->efrags; in R_RemoveEfrags()
94 mleaf_t *leaf; in R_SplitEntityOnNode() local
109 leaf = (mleaf_t *)node; in R_SplitEntityOnNode()
128 ef->leaf = leaf; in R_SplitEntityOnNode()
129 ef->leafnext = leaf->efrags; in R_SplitEntityOnNode()
130 leaf->efrags = ef; in R_SplitEntityOnNode()
Dr_efrag.c60 prev = &ef->leaf->efrags; in R_RemoveEfrags()
95 mleaf_t *leaf; in R_SplitEntityOnNode() local
110 leaf = (mleaf_t *)node; in R_SplitEntityOnNode()
129 ef->leaf = leaf; in R_SplitEntityOnNode()
130 ef->leafnext = leaf->efrags; in R_SplitEntityOnNode()
131 leaf->efrags = ef; in R_SplitEntityOnNode()
/external/quake/quake/src/WinQuake/
Dgl_refrag.cpp59 prev = &ef->leaf->efrags; in R_RemoveEfrags()
94 mleaf_t *leaf; in R_SplitEntityOnNode() local
109 leaf = (mleaf_t *)node; in R_SplitEntityOnNode()
128 ef->leaf = leaf; in R_SplitEntityOnNode()
129 ef->leafnext = leaf->efrags; in R_SplitEntityOnNode()
130 leaf->efrags = ef; in R_SplitEntityOnNode()
Dr_efrag.cpp60 prev = &ef->leaf->efrags; in R_RemoveEfrags()
95 mleaf_t *leaf; in R_SplitEntityOnNode() local
110 leaf = (mleaf_t *)node; in R_SplitEntityOnNode()
129 ef->leaf = leaf; in R_SplitEntityOnNode()
130 ef->leafnext = leaf->efrags; in R_SplitEntityOnNode()
131 leaf->efrags = ef; in R_SplitEntityOnNode()
/external/webkit/Source/WebCore/rendering/svg/
DSVGRootInlineBox.cpp216 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) { in closestLeafChildForPosition() local
217 if (!leaf->isSVGInlineTextBox()) in closestLeafChildForPosition()
219 if (point.y() < leaf->m_y) in closestLeafChildForPosition()
221 if (point.y() > leaf->m_y + leaf->virtualLogicalHeight()) in closestLeafChildForPosition()
224 closestLeaf = leaf; in closestLeafChildForPosition()
225 if (point.x() < leaf->m_x + leaf->m_logicalWidth) in closestLeafChildForPosition()
226 return leaf; in closestLeafChildForPosition()
/external/webkit/Source/JavaScriptCore/wtf/
DTCPageMap.h147 Leaf* leaf = reinterpret_cast<Leaf*>((*allocator_)(sizeof(Leaf))); in Ensure() local
148 if (leaf == NULL) return false; in Ensure()
149 memset(leaf, 0, sizeof(*leaf)); in Ensure()
150 root_[i1] = leaf; in Ensure()
259 Leaf* leaf = reinterpret_cast<Leaf*>((*allocator_)(sizeof(Leaf))); in Ensure() local
260 if (leaf == NULL) return false; in Ensure()
261 memset(leaf, 0, sizeof(*leaf)); in Ensure()
262 root_->ptrs[i1]->ptrs[i2] = reinterpret_cast<Node*>(leaf); in Ensure()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_mutex.cc54 bool leaf[N] = {}; in InitializeMutex() local
61 CHECK(!leaf[i]); in InitializeMutex()
62 leaf[i] = true; in InitializeMutex()
71 CHECK(!leaf[i] || cnt[i] == 0); in InitializeMutex()
75 if (!leaf[i]) in InitializeMutex()
78 if (i == j || leaf[j] || j == MutexTypeInvalid) in InitializeMutex()
/external/e2fsprogs/lib/ext2fs/
Dextent_dbg.ct16 request do_last_leaf, "Goto last leaf",
31 request do_next_leaf, "Goto next leaf",
34 request do_prev_leaf, "Goto previous leaf",
/external/grub/netboot/
Dtulip.c835 struct medialeaf *leaf = &mtable->mleaf[i]; in parse_eeprom() local
838 leaf->type = 0; in parse_eeprom()
839 leaf->media = p[0] & 0x3f; in parse_eeprom()
840 leaf->leafdata = p; in parse_eeprom()
845 switch(leaf->type = p[1]) { in parse_eeprom()
848 leaf->media = p[2] & 0x0f; in parse_eeprom()
852 leaf->media = 11; in parse_eeprom()
864 leaf->media = p[2] & MEDIA_MASK; in parse_eeprom()
865 switch (leaf->media) { in parse_eeprom()
874 leaf->media = 19; in parse_eeprom()
[all …]
/external/llvm/include/llvm/ADT/
DIntervalMap.h799 template <typename NodeT> NodeT &leaf() const { in leaf() function
1329 return branched() ? path.leaf<Leaf>().start(path.leafOffset()) : in unsafeStart()
1330 path.leaf<RootLeaf>().start(path.leafOffset()); in unsafeStart()
1336 return branched() ? path.leaf<Leaf>().stop(path.leafOffset()) : in unsafeStop()
1337 path.leaf<RootLeaf>().stop(path.leafOffset()); in unsafeStop()
1343 return branched() ? path.leaf<Leaf>().value(path.leafOffset()) : in unsafeValue()
1344 path.leaf<RootLeaf>().value(path.leafOffset()); in unsafeValue()
1378 return &path.template leaf<Leaf>() == &RHS.path.template leaf<Leaf>();
1482 if (!Traits::stopLess(path.leaf<Leaf>().stop(path.leafSize() - 1), x)) { in treeAdvanceTo()
1483 path.leafOffset() = path.leaf<Leaf>().safeFind(path.leafOffset(), x); in treeAdvanceTo()
[all …]
/external/quake/quake/src/QW/server/
Dsv_send.c259 mleaf_t *leaf; in SV_Multicast() local
264 leaf = Mod_PointInLeaf (origin, sv.worldmodel); in SV_Multicast()
265 if (!leaf) in SV_Multicast()
268 leafnum = leaf - sv.worldmodel->leafs; in SV_Multicast()
310 leaf = Mod_PointInLeaf (client->edict->v.origin, sv.worldmodel); in SV_Multicast()
311 if (leaf) in SV_Multicast()
314 leafnum = leaf - sv.worldmodel->leafs - 1; in SV_Multicast()
/external/llvm/test/CodeGen/X86/
Dfp-elim.ll3 ; RUN: llc < %s -march=x86 -asm-verbose=false -disable-non-leaf-fp-elim | FileCheck %s -check-prefi…
5 ; Implement -momit-leaf-frame-pointer
D2009-12-11-TLSNoRedZone.ll20 define void @leaf() nounwind {
21 ; CHECK: leaf:
/external/chromium/chrome/browser/resources/sync_internals/
Dsync_node_browser.css28 /* TODO(akalin): Find a better icon to use for leaf nodes. */
29 #sync-node-tree .leaf .tree-label {
/external/qemu/elff/
Ddwarf_die.cc117 DIEObject* leaf = child->get_leaf_for_address(address); in get_leaf_for_address() local
118 if (leaf != NULL) { in get_leaf_for_address()
119 return leaf; in get_leaf_for_address()
/external/valgrind/main/gdbserver_tests/
Dt.c97 static void leaf(void) {} in leaf() function
101 leaf(); // ensures not leaf, as ppc unwind implies VEX iropt precise exns in breakme()
/external/smack/src/org/jivesoftware/smackx/pubsub/
DNodeType.java23 leaf, enumConstant
/external/llvm/test/Transforms/SimplifyCFG/
Dvolatile-phioper.ll44 …ract-model"="standard" "no-frame-pointer-elim" "no-frame-pointer-elim-non-leaf" "realign-stack" "r…
45 …ract-model"="standard" "no-frame-pointer-elim" "no-frame-pointer-elim-non-leaf" "realign-stack" "r…
/external/chromium/base/
Dfile_path_unittest.cc299 FilePath::StringType leaf(cases[i].inputs[1]); in TEST_F() local
300 FilePath observed_str = root.Append(leaf); in TEST_F()
302 "i: " << i << ", root: " << root.value() << ", leaf: " << leaf; in TEST_F()
303 FilePath observed_path = root.Append(FilePath(leaf)); in TEST_F()
305 "i: " << i << ", root: " << root.value() << ", leaf: " << leaf; in TEST_F()
310 std::string ascii = WideToUTF8(leaf); in TEST_F()
312 std::string ascii = leaf; in TEST_F()
316 "i: " << i << ", root: " << root.value() << ", leaf: " << leaf; in TEST_F()
/external/compiler-rt/lib/msan/tests/
DCMakeLists.txt24 -mno-omit-leaf-frame-pointer)
54 -mno-omit-leaf-frame-pointer
/external/llvm/test/CodeGen/PowerPC/
Dunal4-std.ll24 …fpmad"="false" "no-frame-pointer-elim"="false" "no-frame-pointer-elim-non-leaf"="true" "no-infs-fp…

1234