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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/xpath/
text-nodes-expected.txt 15 following-sibling::node(), [object Element]: ""
16 following-sibling::node(), a: "b c"
17 following-sibling::text(), a: "b c"
18 following-sibling::node(), b: "c"
20 preceding-sibling::node(), b: "a"
23 preceding-sibling::node(), c: "a b"
24 preceding-sibling::text(), c: "a b"
text-nodes.html 41 test("following-sibling::node()", elem);
42 test("following-sibling::node()", aText);
43 test("following-sibling::text()", aText);
44 test("following-sibling::node()", bText);
46 test("preceding-sibling::node()", bText);
49 test("preceding-sibling::node()", cText);
50 test("preceding-sibling::text()", cText);
xpath-functional-test-expected.txt 8 [ok].//blockquote/following-sibling::*
9 [ok].//blockquote/preceding-sibling::*
22 [ok].//*[following-sibling::blockquote]
23 [ok].//*[preceding-sibling::blockquote]
55 [ok].//blockquote/following-sibling::*[1]
56 [ok].//blockquote/preceding-sibling::*[1]
document-order-expected.txt 21 PASS following-sibling::node() (context = attr1)
22 PASS preceding-sibling::node() (context = attr4)
  /external/webkit/Source/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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
StreamForwarder.java 27 StreamForwarder sibling; field in class:StreamForwarder
31 StreamForwarder(Channel c, StreamForwarder sibling, Socket s, InputStream is, OutputStream os, String mode)
38 this.sibling = sibling;
84 if (sibling != null)
86 while (sibling.isAlive())
90 sibling.join();
  /external/webkit/LayoutTests/fast/xpath/py-dom-xpath/
predicates-expected.txt 4 PASS //item[@id="2"]/following-sibling::item[1]
5 PASS //item[@id="5"]/preceding-sibling::item[1]
11 PASS (//item[@id="5"]/preceding-sibling::item)[1]
axes-expected.txt 4 PASS //*[@id="2.2"]/following-sibling::*
5 PASS //*[@id="2.2"]/preceding-sibling::*
predicates.html 40 test(doc, doc.documentElement, '//item[@id="2"]/following-sibling::item[1]', [I4]);
41 test(doc, doc.documentElement, '//item[@id="5"]/preceding-sibling::item[1]', [I4]);
47 test(doc, doc.documentElement, '(//item[@id="5"]/preceding-sibling::item)[1]', [I2]);
paths-expected.txt 22 PASS following-sibling::chapter[position()=1]
23 PASS preceding-sibling::chapter[position()=1]
  /external/clang/test/Driver/
no-sibling-calls.c 1 // RUN: %clang -### %s -fno-optimize-sibling-calls 2> %t
5 // RUN: %clang -### -foptimize-sibling-calls %s 2> %t
  /development/samples/training/threadsample/res/values/
attrs.xml 4 <!-- The sibling to hide after the image is downloaded
  /external/e2fsprogs/lib/ext2fs/
extent_dbg.ct 19 request do_first_sib, "Goto first sibling",
22 request do_last_sib, "Goto last sibling",
25 request do_next_sib, "Goto next sibling",
28 request do_prev_sib, "Goto previous sibling",
  /external/webkit/Source/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->lastChild()) {
155 sibling = sibling->lastChild();
156 node = sibling;
163 sibling = sibling->previousSibling()
    [all...]
  /external/markdown/markdown/extensions/
def_list.py 44 sibling = self.lastChild(parent)
45 if not terms and sibling.tag == 'p':
48 terms = sibling.text.split('\n')
49 parent.remove(sibling)
50 # Aquire new sibling
51 sibling = self.lastChild(parent)
55 if sibling and sibling.tag == 'dl':
57 dl = sibling
  /external/markdown/markdown/
blockprocessors.py 131 level, sibling = self.get_level(parent, block)
138 elif sibling.tag in self.ITEM_TYPES:
139 # The sibling is a li. Use it as parent.
140 self.parser.parseBlocks(sibling, [block])
141 elif len(sibling) and sibling[-1].tag in self.ITEM_TYPES:
144 if sibling[-1].text:
146 block = '%s\n\n%s' % (sibling[-1].text, block)
147 sibling[-1].text = ''
148 self.parser.parseChunk(sibling[-1], block
    [all...]
  /external/webkit/LayoutTests/fast/dom/Node/
fragment-mutation-expected.txt 7 Moving next item to become previous sibling of the re-parentee should not result in stack exhaustion: PASS
15 Moving next item to become previous sibling of the re-parentee should not result in stack exhaustion: PASS
  /external/chromium/chrome/browser/sync/engine/
change_reorder_buffer.h 30 // (c) When there are changes to the sibling order (this means Added items,
33 // are not explicitly pushed. The sibling order will be preserved in
34 // the output list -- items will appear before their sibling-order
36 // (d) When there are no changes to the sibling order under a parent node,
37 // the sibling order is not necessarily preserved in the output for
  /external/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.h 34 /// How many to add to "this" to get the sibling.
79 // our sibling will be some index after "this".
104 void setSibling(DWARFDebugInfoEntryMinimal *sibling) {
105 if (sibling) {
107 // our sibling will be some index after "this".
108 SiblingIdx = sibling - this;
109 sibling->setParent(getParent());
  /external/webkit/Source/WebCore/rendering/
RenderCounter.cpp 56 Element* sibling; local
61 sibling = parent->previousElementSibling();
68 sibling = parent->lastElementChild();
74 while (sibling) {
75 if (RenderObject* renderer = sibling->renderer()) {
78 parent = sibling;
79 sibling = sibling->lastElementChild();
80 if (!sibling) {
86 sibling = sibling->previousElementSibling()
102 Element* sibling; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
PostReceiverCreationAction.java 58 newType.createMethod(methodContent, null /* sibling*/, false /* force */,
80 null /* sibling */, new NullProgressMonitor());
82 null /* sibling */, new NullProgressMonitor());
  /external/webkit/Source/WebCore/svg/
SVGElementInstance.h 151 void setNextSibling(SVGElementInstance* sibling) { m_nextSibling = sibling; }
152 void setPreviousSibling(SVGElementInstance* sibling) { m_previousSibling = sibling; }
  /external/apache-xml/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/Source/WebCore/page/
FrameTree.cpp 267 Frame* sibling = nextSibling();
268 if (sibling) {
269 ASSERT(!stayWithin || sibling->tree()->isDescendantOf(stayWithin));
270 return sibling;
274 while (!sibling && (!stayWithin || frame->tree()->parent() != stayWithin)) {
278 sibling = frame->tree()->nextSibling();
282 ASSERT(!stayWithin || !sibling || sibling->tree()->isDescendantOf(stayWithin));
283 return sibling;

Completed in 2923 milliseconds

1 2 3 4 5 6 7 8 91011>>