/external/webkit/WebCore/rendering/ |
D | InlineBox.cpp | 249 InlineBox* leaf = 0; in nextLeafChild() local 250 for (InlineBox* box = nextOnLine(); box && !leaf; box = box->nextOnLine()) in nextLeafChild() 251 leaf = box->isLeaf() ? box : static_cast<InlineFlowBox*>(box)->firstLeafChild(); in nextLeafChild() 252 if (!leaf && parent()) in nextLeafChild() 253 leaf = parent()->nextLeafChild(); in nextLeafChild() 254 return leaf; in nextLeafChild() 259 InlineBox* leaf = 0; in prevLeafChild() local 260 for (InlineBox* box = prevOnLine(); box && !leaf; box = box->prevOnLine()) in prevLeafChild() 261 leaf = box->isLeaf() ? box : static_cast<InlineFlowBox*>(box)->lastLeafChild(); in prevLeafChild() 262 if (!leaf && parent()) in prevLeafChild() [all …]
|
D | RootInlineBox.cpp | 351 static bool isEditableLeaf(InlineBox* leaf) in isEditableLeaf() argument 353 …return leaf && leaf->renderer() && leaf->renderer()->node() && leaf->renderer()->node()->isContent… in isEditableLeaf() 375 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) { in closestLeafChildForXPos() local 376 if (!leaf->renderer()->isListMarker() && (!onlyEditableLeaves || isEditableLeaf(leaf))) { in closestLeafChildForXPos() 377 closestLeaf = leaf; in closestLeafChildForXPos() 378 if (x < leaf->m_x + leaf->m_width) in closestLeafChildForXPos() 381 return leaf; in closestLeafChildForXPos()
|
D | InlineFlowBox.cpp | 979 InlineBox* leaf = 0; in firstLeafChild() local 980 for (InlineBox* child = firstChild(); child && !leaf; child = child->nextOnLine()) in firstLeafChild() 981 leaf = child->isLeaf() ? child : static_cast<InlineFlowBox*>(child)->firstLeafChild(); in firstLeafChild() 982 return leaf; in firstLeafChild() 987 InlineBox* leaf = 0; in lastLeafChild() local 988 for (InlineBox* child = lastChild(); child && !leaf; child = child->prevOnLine()) in lastLeafChild() 989 leaf = child->isLeaf() ? child : static_cast<InlineFlowBox*>(child)->lastLeafChild(); in lastLeafChild() 990 return leaf; in lastLeafChild()
|
/external/webkit/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/clearsilver/perl/ |
D | test.cs | 4 <?cs each:leaf =TopNode.2nd1 ?> 5 <?cs var: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/junit/src/junit/swingui/ |
D | TestSuitePanel.java | 56 boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) { in getTreeCellRendererComponent() argument 58 Component c= super.getTreeCellRendererComponent(tree, value, sel, expanded, leaf, row, hasFocus); in getTreeCellRendererComponent()
|
/external/tesseract/classify/ |
D | kdtree.h | 64 preorder, postorder, endorder, leaf enumerator
|
D | kdtree.cpp | 853 (*WalkAction) (SubTree->Data, leaf, Level); in Walk()
|
D | cluster.cpp | 795 if ((Order == preorder) || (Order == leaf)) { in MakePotentialClusters()
|
/external/openssl/crypto/ |
D | sparccpuid.S | 145 be 1f ! could have been a leaf function...
|
/external/sqlite/dist/ |
D | sqlite3.c | 29356 u8 leaf; /* True if leaf flag is set */ member 30586 assert( pPage->leaf==0 || pPage->leaf==1 ); in sqlite3BtreeParseCellPtr() 30588 assert( n==4-4*pPage->leaf ); in sqlite3BtreeParseCellPtr() 30839 assert( start>=pPage->hdrOffset+6+(pPage->leaf?0:4) ); in freeSpace() 30905 pPage->leaf = (flagByte & PTF_LEAF)!=0; in decodeFlags() 30906 pPage->childPtrSize = 4*(pPage->leaf==0); in decodeFlags() 30917 pPage->hasData = !(pPage->zeroData || (!pPage->leaf && pPage->leafData)); in decodeFlags() 30968 pPage->cellOffset = cellOffset = hdr + 12 - 4*pPage->leaf; in sqlite3BtreeInitPage() 32031 if( !pPage->leaf ){ in setChildPtrmaps() 32038 if( !pPage->leaf ){ in setChildPtrmaps() [all …]
|
/external/tinyxml/ |
D | readme.txt | 416 A TiXmlText. This is a leaf node and cannot contain other nodes.
|
/external/e2fsprogs/ |
D | RELEASE-NOTES | 1044 that the "best" (i.e., leaf) device is probed by the blkid library. 2254 empty directory block is an empty leaf block or an interior htree
|
/external/webkit/WebCore/ |
D | ChangeLog-2007-10-14 | 11551 Test: editing/selection/inline-closest-leaf-child.html 11554 (WebCore::RootInlineBox::closestLeafChildForXPos): Return the last leaf if 11555 it's the closest match, or if no other leaf matches (for example if all 33777 return the closest editable leaf. Removed an early return if the 33778 position is before the first leaf, it's not really much of an 62051 the inserted content is the last position in the last leaf 62052 inserted. This is a problem when the last leaf is inside a 62054 Second, smart spaces were inserted inside the last leaf, not 62065 Special case for when the last leaf inserted is inside a select 63288 only occur as a leaf, corresponds to using system fallback fonts after the list [all …]
|
D | ChangeLog-2005-08-23 | 25050 …bug by going down to the last leaf child of the root line box; a one line change we will roll out … 33688 (khtml::VisiblePosition::previousPosition): Switch to node iteration instead "leaf" 33690 since other code relied on the leaf behavior. That is no longer true. Plus, the 35599 … so we can set the selection end to nodes that are not leaf nodes and it will still work. Also took 36948 …Swap RenderBox and RenderContainer. Make leaf RenderObjects actually derive off of RenderBox inst… 37007 only want to consider leaf nodes. 46442 (DOM::Position::equivalentLeafPosition): Do not attempt to find a leaf if the 47564 (KHTMLSelection::validate): Now adjusts the selection down to leaf nodes if needed.
|
D | ChangeLog-2002-12-03 | 1469 itself to a leaf. Then the children of the <form> are treated
|
D | ChangeLog-2008-08-10 | 26777 intended for use in all leaf inline boxes. 26863 bidi level on all leaf boxes. 29166 and leaf nodes.
|
D | ChangeLog-2009-06-16 | 14975 (WebCore::getLeafBoxesInLogicalOrder): Added. Reconstruct leaf boxes in logical order. 15199 (WebCore::getLeafBoxesInLogicalOrder): Added. Reconstruct leaf boxes in logical order. 81694 …(1) Make invalidateRect a pure virtual function on Widget. All leaf widgets must now implement th…
|
D | ChangeLog-2006-05-10 | 2887 The function would prune a rendered leaf because it assumed that the
|
/external/webkit/WebKit/mac/ |
D | ChangeLog | 11110 …(1) Make invalidateRect a pure virtual function on Widget. All leaf widgets must now implement th…
|
D | ChangeLog-2002-12-03 | 11741 (-[IFBookmark setURLString:]): Take out special case for non-leaf.
|
/external/webkit/WebKit/win/ |
D | ChangeLog-2009-06-16 | 3271 …(1) Make invalidateRect a pure virtual function on Widget. All leaf widgets must now implement th…
|
/external/srec/config/en.us/dictionary/ |
D | large.ok | 16551 leaf lEf
|