Searched defs:orphans (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleRareInheritedData.h99 short orphans; member in class:blink::StyleRareInheritedData
H A DRenderStyle.h716 short orphans() const { return rareInheritedData->orphans; } function in class:blink::RenderStyle
1238 void setHasAutoOrphans() { SET_VAR(rareInheritedData, m_hasAutoOrphans, true); SET_VAR(rareInheritedData, orphans, initialOrphans()); }
1239 void setOrphans(short o) { SET_VAR(rareInheritedData, m_hasAutoOrphans, false); SET_VAR(rareInheritedData, orphans, o); }
/external/chromium_org/ui/gfx/geometry/
H A Dr_tree_unittest.cc545 RTreeNodes orphans; local
549 test_parent->RemoveChild(test_parent->child(1), &orphans));
550 EXPECT_EQ(0U, orphans.size());
557 test_parent->RemoveChild(test_parent->child(1), &orphans));
558 EXPECT_EQ(0U, orphans.size());
565 test_parent->RemoveChild(test_parent->child(0), &orphans));
566 EXPECT_EQ(0U, orphans.size());
602 // Now remove all of the level 0 nodes so we get the record nodes as orphans.
603 RTreeNodes orphans; local
605 level_1_children[i / 2]->RemoveChild(level_0_children[i], &orphans);
[all...]
H A Dr_tree_base.cc131 NodeBase* child_node, Nodes* orphans) {
136 orphans->push_back(orphan.release());
606 Nodes orphans; local
607 scoped_ptr<NodeBase> removed_node(parent->RemoveChild(node, &orphans));
622 parent->RemoveChild(child, &orphans);
633 while (!orphans.empty()) {
634 Nodes::iterator last_element = orphans.end() - 1;
636 orphans.weak_erase(last_element);
130 RemoveChild( NodeBase* child_node, Nodes* orphans) argument
/external/opencv/cv/src/
H A Dcvstereogc.cpp81 GCVtx** orphans; member in struct:CvStereoGCState2
123 static int icvGCResizeOrphansBuf( GCVtx**& orphans, int norphans ) argument
126 GCVtx** newOrphans = (GCVtx**)cvAlloc( newNOrphans*sizeof(orphans[0]) );
128 newOrphans[i] = orphans[i];
129 cvFree( &orphans );
130 orphans = newOrphans;
142 GCVtx** orphans = _orphans; local
242 // modify weights of the edges along the path and collect orphans
258 maxOrphans = icvGCResizeOrphansBuf( orphans, norphans );
259 orphans[norphan
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlockLineLayout.cpp926 // However, we'll prioritize orphans - so nothing we do here should create
959 // If there was an explicit value for orphans, respect that. If not, we still
961 // This means that setting widows implies we also care about orphans, but given
963 // author is always free to set orphans explicitly as well.
964 int orphans = style()->hasAutoOrphans() ? style()->initialOrphans() : style()->orphans(); local
965 int numLinesAvailable = numLinesInPreviousPage - orphans;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.registry_3.5.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.runtime.compatibility_3.2.100.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc7832 uint16_t orphans[8] = { 0x61, 0x62, 0xd800, 0x63, 0x64, 0xdc00, 0x65, 0x66 }; local
7834 context->GetIsolate(), orphans, v8::String::kNormalString, 8);

Completed in 2930 milliseconds