Searched refs:sibling (Results 26 - 50 of 89) sorted by relevance

1234

/external/chromium_org/third_party/libxslt/libxslt/
H A Dpattern.c898 xmlNodePtr sibling = node; local
900 while (sibling != NULL) {
901 if (sibling == previous)
905 (sibling->name != NULL) &&
906 (previous->name[0] == sibling->name[0]) &&
907 (xmlStrEqual(previous->name, sibling->name)))
910 ((sibling->ns != NULL) &&
912 sibling->ns->href))))
915 sibling = sibling
1030 xmlNodePtr sibling = node; local
[all...]
/external/chromium_org/third_party/skia/src/xml/
H A DSkDOM.cpp98 const Node* sibling = node->fNextSibling; local
101 for (; sibling != NULL; sibling = sibling->fNextSibling)
102 if (!strcmp(name, sibling->fName))
105 return sibling;
/external/qemu/hw/core/
H A Dqdev.c102 QLIST_INSERT_HEAD(&bus->children, dev, sibling);
230 QLIST_REMOVE(dev, sibling);
410 QLIST_FOREACH(bus, &dev->child_bus, sibling) {
448 QLIST_INSERT_HEAD(&parent->child_bus, bus, sibling);
501 QLIST_FOREACH(child, &dev->child_bus, sibling) {
513 QLIST_FOREACH(dev, &bus->children, sibling) {
/external/skia/src/xml/
H A DSkDOM.cpp98 const Node* sibling = node->fNextSibling; local
101 for (; sibling != NULL; sibling = sibling->fNextSibling)
102 if (!strcmp(name, sibling->fName))
105 return sibling;
/external/chromium_org/chrome/browser/resources/options/
H A Dsearch_page.js96 // This bubble is 'owned' by the next sibling.
478 var sibling = element.previousElementSibling;
479 if (sibling && (sibling.classList.contains('search-bubble') ||
480 sibling.classList.contains('search-bubble-wrapper')))
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DComposedTreeWalker.h152 if (Node* sibling = traverseNextSibling(m_node)) {
153 m_node = sibling;
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.h363 // our sibling will be some index after "this".
405 SetSibling (DWARFDebugInfoEntry* sibling) argument
407 if (sibling)
410 // our sibling will be some index after "this".
411 m_sibling_idx = sibling - this;
412 sibling->SetParent(GetParent());
449 uint32_t m_sibling_idx:31, // How many to add to "this" to get the sibling.
/external/droiddriver/src/com/google/android/droiddriver/finders/
H A DPredicates.java288 for (UiElement sibling : parent.getChildren(UiElement.VISIBLE)) {
289 if (sibling != element && siblingPredicate.apply(sibling)) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DDOMPresentationUtils.js333 var sibling = siblings[i];
334 if (sibling.nodeType() !== Node.ELEMENT_NODE)
337 if (sibling === node) {
343 if (sibling.nodeNameInCorrectCase() !== nodeName)
355 var siblingClassNamesArray = prefixedElementClassNames(sibling);
458 // Returns -1 in case of error, 0 if no siblings matching the same expression, <XPath index among the same expression-matching sibling nodes> otherwise.
/external/chromium_org/chrome/renderer/autofill/
H A Dautofill_renderer_browsertest.cc267 "<iframe id=sibling></iframe>";
276 WebElement sibling = GetMainFrame()->document().getElementById("sibling"); variable
277 ASSERT_FALSE(sibling.isNull());
278 sibling_frame_ = WebLocalFrame::fromFrameOwnerElement(sibling);
321 // Pretend that a sibling frame navigated. No cancel should be sent.
/external/chromium_org/ui/gfx/geometry/
H A Dr_tree_base.cc448 scoped_ptr<Node> sibling(new Node(level_));
449 sibling->set_parent(parent());
451 sibling->set_rect(high_bounds[split_index]);
454 // sorted bounds rects between ourselves and our sibling.
459 sibling->children_.insert(sibling->children_.end(),
463 for (size_t i = 0; i < sibling->children_.size(); ++i)
464 sibling->children_[i]->set_parent(sibling.get());
466 return sibling
[all...]
/external/chromium_org/third_party/icu/source/tools/ctestfw/
H A Dctest.c45 struct TestNode* sibling; member in struct:TestNode
177 newNode->sibling = NULL;
192 if(tn->sibling != NULL) {
193 cleanUpTestTree(tn->sibling);
266 nextNode = nextNode -> sibling;
272 curNode->sibling = nextNode;
484 iterateTestsWithLevel ( root->sibling, depth, nodeList, mode );
610 nextNode = nextNode -> sibling;
/external/icu/icu4c/source/tools/ctestfw/
H A Dctest.c45 struct TestNode* sibling; member in struct:TestNode
177 newNode->sibling = NULL;
192 if(tn->sibling != NULL) {
193 cleanUpTestTree(tn->sibling);
266 nextNode = nextNode -> sibling;
272 curNode->sibling = nextNode;
484 iterateTestsWithLevel ( root->sibling, depth, nodeList, mode );
611 nextNode = nextNode -> sibling;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGUseElement.cpp592 // lose the sibling chain when we are back from recursion.
594 for (RefPtrWillBeRawPtr<SVGElement> sibling = Traversal<SVGElement>::nextSibling(*element); sibling; sibling = Traversal<SVGElement>::nextSibling(*sibling)) {
595 if (!expandUseElementsInShadowTree(sibling.get()))
645 // lose the sibling chain when we are back from recursion.
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderGrid.cpp251 RenderBox* sibling = child.nextSiblingBox(); local
252 bool lastSibling = !sibling;
255 sibling = child.previousSiblingBox();
258 if (sibling)
259 index = lastSibling ? m_gridItemsIndexesMap.get(sibling) + 1 : m_gridItemsIndexesMap.get(sibling);
261 if (sibling && !lastSibling) {
262 for (; sibling; sibling = sibling
[all...]
/external/chromium_org/tools/json_schema_compiler/
H A Didl_schema.py239 for sibling in self.parent.GetChildren():
240 if sibling.cls == 'Array' and sibling.GetName() == self.parent.GetName():
/external/chromium_org/ui/views/widget/
H A Droot_view.h150 // turned on, but does not contain |sibling|.
154 View* sibling);
H A Droot_view.cc671 View* sibling) {
675 if (sibling && p->Contains(sibling))
668 NotifyEnterExitOfDescendant(const ui::MouseEvent& event, ui::EventType type, View* view, View* sibling) argument
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DCompilingClassLoader.java175 JavaFileObject.Kind kind, FileObject sibling) throws IOException {
174 getJavaFileForOutput(Location location, final String className, JavaFileObject.Kind kind, FileObject sibling) argument
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DApplyStyleCommand.cpp357 // an ancestor of the start node), we gather nodes up to the next sibling of the end node
449 // cloned/split, the new node is always a sibling of it. Therefore, we scan
725 Node* sibling = NodeTraversal::nextSkippingChildren(node);
726 for (Node* descendent = node.firstChild(); descendent && descendent != sibling; descendent = NodeTraversal::next(*descendent)) {
819 Node* sibling = node->nextSibling(); local
820 while (sibling && sibling != pastEndNode && !sibling->contains(pastEndNode.get())
821 && (!isBlock(sibling) || isHTMLBRElement(*sibling))
[all...]
/external/lldb/scripts/Python/interface/
H A DSBBlock.i70 %feature("docstring", "Get the sibling block for this block.") GetSibling;
158 __swig_getmethods__["sibling"] = GetSibling
159 if _newclass: sibling = property(GetSibling, None, doc='''A read only property that returns the same result as GetSibling().''')
/external/oprofile/events/i386/westmere/
H A Devents19 event:0x0f counters:0,1,2,3 um:mem_uncore_retired minimum:40000 name:MEM_UNCORE_RETIRED : Load instructions retired that HIT modified data in sibling core (Precise Event)
/external/chromium_org/chrome/browser/resources/inspect/
H A Dinspect.js145 for (var sibling = parent.firstElementChild;
146 sibling;
147 sibling = sibling.nextElementSibling) {
148 if (sibling.id > child.id) {
149 parent.insertBefore(child, sibling);
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXNodeObject.cpp387 for (Element* sibling = ElementTraversal::firstChild(*parent); sibling; sibling = ElementTraversal::nextSibling(*sibling)) {
388 const AtomicString& siblingAriaRole = sibling->getAttribute(roleAttr);
390 return sibling;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsLayer.h108 void addChildBelow(GraphicsLayer*, GraphicsLayer* sibling);

Completed in 832 milliseconds

1234