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

1 2 3 4 5 6 7 8 91011>>

  /art/test/408-move-bug/
info.txt 2 compiler. Input moves where being overridden by sibling moves.
  /external/libxml2/test/XPath/xptr/
vidbase 2 xpointer(id('chapter1')/p[1]/range-to(following-sibling::p[2]))
  /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/debugfs/
extent_cmds.ct 16 request do_first_sib, "Goto first sibling",
19 request do_last_sib, "Goto last sibling",
22 request do_next_sib, "Goto next sibling",
25 request do_prev_sib, "Goto previous sibling",
  /external/libxml2/test/schemas/
bug312957_0.xml 6 <sibling name="gill"/>
bug312957_1.xsd 6 <xs:selector xpath="siblings/sibling"/>
23 <xs:element name="sibling" type="sibling_type" minOccurs="0"
  /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/autotest/client/site_tests/security_SeccompSyscallFilters/src/
seccomp_bpf_tests.c 1040 struct tsync_sibling sibling[TSYNC_SIBLINGS];
1060 memset(&self->sibling, 0, sizeof(self->sibling));
1075 self->sibling[0].tid = 0;
1076 self->sibling[0].cond = &self->cond;
1077 self->sibling[0].started = &self->started;
1078 self->sibling[0].mutex = &self->mutex;
1079 self->sibling[0].diverge = 0;
1080 self->sibling[0].num_waits = 1;
1081 self->sibling[0].prog = &self->root_prog
    [all...]
  /external/libedit/src/
keymacro.c 81 struct keymacro_node_t *sibling;/* ptr to another key with same prefix*/ member in struct:keymacro_node_t
302 if (ptr->sibling) {
303 /* try next sibling */
304 return node_trav(el, ptr->sibling, ch, val);
306 /* no next sibling -- mismatch */
325 for (xm = ptr; xm->sibling != NULL; xm = xm->sibling)
326 if (xm->sibling->ch == *str)
328 if (xm->sibling == NULL)
329 xm->sibling = node__get(*str); /* setup new node *
    [all...]
  /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...]
  /packages/apps/TV/tests/common/src/com/android/tv/testing/uihelper/
UiObject2Utils.java 29 for (UiObject2 sibling : theUiObject.getParent().getChildren()) {
30 Point siblingCenter = sibling.getVisibleCenter();
  /external/chromium-trace/catapult/systrace/profile_chrome/third_party/
perf_to_tracing.py 217 # Try to reduce misplaced stack leaves by moving them up into sibling nodes.
223 # If parent's sibling has same node name, has no children and small weight,
224 # transplant sibling's samples into the current node.
225 for sibling in parent_siblings:
226 if sibling.name == node.name and \
227 len(sibling.children) == 0 and \
228 sibling.GetTotalWeight() <= node.GetTotalWeight() * 0.15:
230 # Transplant samples from sibling to current node.
231 for samp in sibling.samples:
234 sibling.samples = [
    [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());
  /cts/tests/tests/os/jni/seccomp-tests/tests/
seccomp_bpf_tests.c 1418 struct tsync_sibling sibling[TSYNC_SIBLINGS]; local
    [all...]
  /external/elfutils/libdw/
dwarf_siblingof.c 1 /* Return sibling of given DIE.
68 /* Find the end of the DIE or the sibling attribute. */
79 /* The sibling attribute should point after this DIE in the CU.
114 /* No more sibling at all. */
  /external/libxml2/result/XPath/xptr/
vidbase 12 Expression: xpointer(id('chapter1')/p[1]/range-to(following-sibling::p[2]))
  /external/pdfium/fpdfsdk/src/
fpdfdoc_embeddertest.cpp 95 FPDF_BOOKMARK sibling = FPDFBookmark_GetNextSibling(document(), child); local
96 EXPECT_NE(nullptr, sibling);
97 EXPECT_EQ(28, FPDFBookmark_GetTitle(sibling, buf, sizeof(buf)));
101 EXPECT_EQ(nullptr, FPDFBookmark_GetNextSibling(document(), 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/libgdx/backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/
HeadlessFileHandle.java 41 public FileHandle sibling (String name) { method in class:HeadlessFileHandle
42 if (file.getPath().length() == 0) throw new GdxRuntimeException("Cannot get the sibling of the root.");
  /external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
JglfwFileHandle.java 41 public FileHandle sibling (String name) { method in class:JglfwFileHandle
42 if (file.getPath().length() == 0) throw new GdxRuntimeException("Cannot get the sibling of the root.");
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglFileHandle.java 41 public FileHandle sibling (String name) { method in class:LwjglFileHandle
42 if (file.getPath().length() == 0) throw new GdxRuntimeException("Cannot get the sibling of the root.");
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3FileHandle.java 41 public FileHandle sibling (String name) { method in class:Lwjgl3FileHandle
42 if (file.getPath().length() == 0) throw new GdxRuntimeException("Cannot get the sibling of the root.");
  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/
IOSFileHandle.java 53 public FileHandle sibling (String name) { method in class:IOSFileHandle
54 if (file.getPath().length() == 0) throw new GdxRuntimeException("Cannot get the sibling of the root.");
  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSFileHandle.java 53 public FileHandle sibling (String name) { method in class:IOSFileHandle
54 if (file.getPath().length() == 0) throw new GdxRuntimeException("Cannot get the sibling of the root.");

Completed in 540 milliseconds

1 2 3 4 5 6 7 8 91011>>