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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/manual-tests/qt/
plugin-sibling-frame.html 4 <frame src="plugin-sibling-frame-include.html">
plugin-iframe.html 21 <iframe src="plugin-sibling-frame-include.html" width="200" height="200"
  /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/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...]
gqueue.h 93 GList *sibling,
96 GList *sibling,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
PostReceiverCreationAction.java 57 newType.createMethod(methodContent, null /* sibling*/, false /* force */,
79 null /* sibling */, new NullProgressMonitor());
81 null /* sibling */, new NullProgressMonitor());
PostActivityCreationAction.java 61 newType.createMethod(methodContent, null /* sibling*/, false /* force */,
83 null /* sibling */, new NullProgressMonitor());
  /external/webkit/WebCore/svg/
SVGElementInstance.h 144 void setNextSibling(SVGElementInstance* sibling) { m_nextSibling = sibling; }
145 void setPreviousSibling(SVGElementInstance* sibling) { m_previousSibling = sibling; }
  /sdk/layoutopt/libs/uix/src/resources/rules/
InefficientWeight.rule 7 // - The node is the only sibling with a weight
  /libcore/luni/src/main/java/org/apache/xml/dtm/
Axis.java 78 * The following-sibling axis contains all the following siblings of the
80 * the following-sibling axis is empty.
110 * The preceding-sibling axis contains all the preceding siblings of the
112 * the preceding-sibling axis is empty.
173 false, // following-sibling
178 true, // preceding-sibling
192 "following-sibling", // 7
197 "preceding-sibling", // 12
  /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/elfutils/libdw/
dwarf_siblingof.c 1 /* Return sibling of given DIE.
48 /* Find the end of the DIE or the sibling attribute. */
75 /* No more sibling at 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/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/qemu/hw/
qdev.h 25 QLIST_ENTRY(DeviceState) sibling; member in struct:DeviceState
41 QLIST_ENTRY(BusState) sibling; member in struct:BusState
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) {
  /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/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...]
RenderCounter.cpp 51 if (RenderObject* sibling = object->previousSibling())
52 return sibling;
139 // A sibling without a parent means that the counter node tree was not constructed correctly so we stop
151 // We found a reset counter that is on a renderer that is a sibling of ours or a parent.
153 // We are also a reset counter and the previous reset was on a sibling renderer
154 // hence we are the next sibling of that counter if that reset is not a root or
169 // to an ancestor of the placed counter's renderer we know we are a sibling of that node.
175 // We are at the potential end of the search, but we had no previous sibling candidate
177 // previousSibling, and when we are a sibling of the end counter we must set previousSibling
196 // We come here if the previous sibling or parent of our renderer had no
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/parts/
DropFeedback.java 100 UiElementEditPart sibling = null; local
105 sibling = findLinearTarget(parentPart, where)[1];
110 sibling = info.targetParts[info.anchorIndex];
111 sibling = getNextUiSibling(sibling);
116 UiElementNode uiSibling = sibling != null ? sibling.getUiNode() : null;
171 * Returns the next UI sibling of this part, i.e. the element which is just after in
174 * Note: by "UI sibling" here we mean the sibling in the UiNode hierarchy. By design th
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiActions.java 105 * If a sibling is given and that sibling has the same parent, the new node is added
106 * right after that sibling. Otherwise the new node is added at the end of the parent
172 // try to select the last previous sibling or the last parent
217 // removed and then inserted before its previous sibling.
218 // If the previous sibling can have children, though, then it
234 // parent, move it up in the hierarchy as previous sibling
297 // removed and then inserted after its next sibling.
298 // If the next sibling is a node that can have children, though,
  /external/bluetooth/glib/docs/reference/glib/tmpl/
trees-nary.sgml 63 @next: points to the node's next sibling (a sibling is another
65 @prev: points to the node's previous sibling.
128 @sibling:
139 @sibling:
181 @sibling:
  /external/libxml2/include/libxml/
entities.h 45 struct _xmlNode *next; /* next sibling link */
46 struct _xmlNode *prev; /* previous sibling link */
  /external/webkit/WebCore/platform/graphics/android/
GraphicsLayerAndroid.h 49 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
50 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);

Completed in 8175 milliseconds

1 2 3 4 5 6 7 8 91011>>