/external/guava/guava-tests/test/com/google/common/collect/ |
D | BstNodeTest.java | 53 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/ |
D | InlineBox.cpp | 246 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 …]
|
D | RootInlineBox.cpp | 456 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()
|
D | InlineFlowBox.cpp | 1242 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/ |
D | gl_refrag.c | 59 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()
|
D | r_efrag.c | 60 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/ |
D | gl_refrag.cpp | 59 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()
|
D | r_efrag.cpp | 60 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/ |
D | SVGRootInlineBox.cpp | 216 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/ |
D | TCPageMap.h | 147 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/ |
D | tsan_mutex.cc | 54 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/ |
D | extent_dbg.ct | 16 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/ |
D | tulip.c | 835 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/ |
D | IntervalMap.h | 799 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/ |
D | sv_send.c | 259 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/ |
D | fp-elim.ll | 3 ; RUN: llc < %s -march=x86 -asm-verbose=false -disable-non-leaf-fp-elim | FileCheck %s -check-prefi… 5 ; Implement -momit-leaf-frame-pointer
|
D | 2009-12-11-TLSNoRedZone.ll | 20 define void @leaf() nounwind { 21 ; CHECK: leaf:
|
/external/chromium/chrome/browser/resources/sync_internals/ |
D | sync_node_browser.css | 28 /* TODO(akalin): Find a better icon to use for leaf nodes. */ 29 #sync-node-tree .leaf .tree-label {
|
/external/qemu/elff/ |
D | dwarf_die.cc | 117 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/ |
D | t.c | 97 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/ |
D | NodeType.java | 23 leaf, enumConstant
|
/external/llvm/test/Transforms/SimplifyCFG/ |
D | volatile-phioper.ll | 44 …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/ |
D | file_path_unittest.cc | 299 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/ |
D | CMakeLists.txt | 24 -mno-omit-leaf-frame-pointer) 54 -mno-omit-leaf-frame-pointer
|
/external/llvm/test/CodeGen/PowerPC/ |
D | unal4-std.ll | 24 …fpmad"="false" "no-frame-pointer-elim"="false" "no-frame-pointer-elim-non-leaf"="true" "no-infs-fp…
|