HomeSort by relevance Sort by last modified time
    Searched refs:sibling (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/webkit/WebCore/dom/
TreeWalker.cpp 145 for (RefPtr<Node> sibling = node->previousSibling(); sibling; ) {
146 short acceptNodeResult = acceptNode(state, sibling.get());
151 m_current = sibling.release();
154 if (sibling->firstChild()) {
155 sibling = sibling->firstChild();
162 sibling = sibling->previousSibling();
181 for (RefPtr<Node> sibling = node->nextSibling(); sibling; )
    [all...]
  /external/tcpdump/
makemib 207 for (sib = child[parent]; sib != ""; sib = sibling[sib])
223 sibling[new] = child[parent]
234 # printf "/* %s c=%s s=%s */\n", newitem, child[item], sibling[item]
241 if (sibling[item] != "") {
242 dump(sibling[item])
243 s = "&_"sibling[item]"_obj"
  /external/webkit/WebCore/page/
FrameTree.cpp 241 Frame* sibling = nextSibling();
242 if (sibling) {
243 ASSERT(!stayWithin || sibling->tree()->isDescendantOf(stayWithin));
244 return sibling;
248 while (!sibling && (!stayWithin || frame->tree()->parent() != stayWithin)) {
252 sibling = frame->tree()->nextSibling();
256 ASSERT(!stayWithin || !sibling || sibling->tree()->isDescendantOf(stayWithin));
257 return sibling;
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsLayerQt.h 47 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
48 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);
  /cts/tools/dex-tools/test/dex/reader/util/
SpecialJavaFileManager.java 44 JavaFileObject.Kind kind, FileObject sibling) {
  /external/bluetooth/glib/glib/
gnode.h 126 GNode *sibling,
129 GNode *sibling,
174 * @sibling: the sibling #GNode to place the new #GNode before
177 * Inserts a new #GNode before the given sibling.
181 #define g_node_insert_data_before(parent, sibling, data) \
182 g_node_insert_before ((parent), (sibling), g_node_new (data))
251 * Gets the previous sibling of a #GNode.
253 * Returns: the previous sibling of @node, or %NULL if @node is %NULL
262 * Gets the next sibling of a #GNode
    [all...]
ghook.h 44 GHook *sibling);
123 GHook *sibling,
155 GHook *sibling);
gqueue.h 93 GList *sibling,
96 GList *sibling,
glist.c 232 * @sibling: the list element before which the new element
242 GList *sibling,
249 g_return_val_if_fail (sibling == NULL, list);
252 else if (sibling)
258 node->prev = sibling->prev;
259 node->next = sibling;
260 sibling->prev = node;
268 g_return_val_if_fail (sibling == list, node);
  /external/webkit/WebCore/svg/
SVGElementInstance.h 144 void setNextSibling(SVGElementInstance* sibling) { m_nextSibling = sibling; }
145 void setPreviousSibling(SVGElementInstance* sibling) { m_previousSibling = sibling; }
  /external/webkit/WebCore/platform/graphics/android/
GraphicsLayerAndroid.h 49 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
50 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);
  /external/webkit/WebCore/platform/graphics/win/
GraphicsLayerCACF.h 53 virtual void addChildAbove(GraphicsLayer *layer, GraphicsLayer *sibling);
54 virtual void addChildBelow(GraphicsLayer *layer, GraphicsLayer *sibling);
  /external/webkit/WebCore/rendering/
MediaControlElements.cpp 169 // Find next sibling with a renderer to determine where to insert.
170 Node* sibling = nextSibling(); local
171 while (sibling && !sibling->renderer())
172 sibling = sibling->nextSibling();
173 parent()->renderer()->addChild(renderer, sibling ? sibling->renderer() : 0);
401 // Find next sibling with a renderer to determine where to insert.
402 Node* sibling = nextSibling() local
    [all...]
RenderObjectChildList.cpp 45 for (RenderObject* sibling = child; sibling; sibling = sibling->nextSibling()) {
46 if (sibling->isListItem())
47 toRenderListItem(sibling)->updateValue();
  /external/bluetooth/glib/gobject/
gobject-query.c 58 GType sibling,
75 sibling ? O_BRANCH : (type != root ? O_LLEAF : O_SPACE),
89 if (sibling)
  /external/qemu/hw/
qdev.c 101 QLIST_INSERT_HEAD(&bus->children, dev, sibling);
116 QLIST_REMOVE(dev, sibling);
296 QLIST_FOREACH(bus, &dev->child_bus, sibling) {
334 QLIST_INSERT_HEAD(&parent->child_bus, bus, sibling);
387 QLIST_FOREACH(child, &dev->child_bus, sibling) {
399 QLIST_FOREACH(dev, &bus->children, sibling) {
qdev.h 25 QLIST_ENTRY(DeviceState) sibling; member in struct:DeviceState
41 QLIST_ENTRY(BusState) sibling; member in struct:BusState
  /external/elfutils/tests/
run-show-die-info.sh 89 Attrs : sibling name low_pc high_pc prototyped decl_file decl_line external frame_base type
96 Attrs : sibling name decl_file decl_line declaration external type
168 Attrs : sibling name type
184 Attrs : sibling name byte_size decl_file decl_line
410 Attrs : sibling byte_size decl_file decl_line
421 Attrs : sibling type
478 Attrs : sibling byte_size decl_file decl_line
489 Attrs : sibling type
569 Attrs : sibling name byte_size decl_file decl_line
690 Attrs : sibling name byte_size decl_file decl_lin
    [all...]
  /external/skia/src/xml/
SkDOM.cpp 106 const Node* sibling = node->fNextSibling; local
109 for (; sibling != NULL; sibling = sibling->fNextSibling)
110 if (!strcmp(name, sibling->fName))
113 return sibling;
  /external/chromium/third_party/icu/source/tools/ctestfw/
ctest.c 30 struct TestNode* sibling; member in struct:TestNode
138 newNode->sibling = NULL;
153 if(tn->sibling != NULL) {
154 cleanUpTestTree(tn->sibling);
226 nextNode = nextNode -> sibling;
232 curNode->sibling = nextNode;
303 iterateTestsWithLevel ( root->sibling, len, list, mode );
407 nextNode = nextNode -> sibling;
  /external/icu4c/tools/ctestfw/
ctest.c 30 struct TestNode* sibling; member in struct:TestNode
138 newNode->sibling = NULL;
153 if(tn->sibling != NULL) {
154 cleanUpTestTree(tn->sibling);
226 nextNode = nextNode -> sibling;
232 curNode->sibling = nextNode;
303 iterateTestsWithLevel ( root->sibling, len, list, mode );
407 nextNode = nextNode -> sibling;
  /bionic/libc/kernel/common/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /development/ndk/platforms/android-3/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource

Completed in 5538 milliseconds

1 2 3