Searched defs:sibling (Results 1 - 25 of 34) sorted by relevance

12

/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/pdfium/fpdfsdk/
H A Dfpdfdoc_embeddertest.cpp134 FPDF_BOOKMARK sibling = FPDFBookmark_GetNextSibling(document(), child); local
135 EXPECT_TRUE(sibling);
136 EXPECT_EQ(28u, FPDFBookmark_GetTitle(sibling, buf, sizeof(buf)));
140 EXPECT_EQ(nullptr, FPDFBookmark_GetNextSibling(document(), sibling));
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
H A DDWARFDebugInfoEntry.h32 /// How many to add to "this" to get the sibling.
70 // our sibling will be some index after "this".
95 void setSibling(DWARFDebugInfoEntryMinimal *sibling) { argument
96 if (sibling) {
98 // our sibling will be some index after "this".
99 SiblingIdx = sibling - this;
100 sibling->setParent(getParent());
/external/jemalloc/test/unit/
H A Dph.c45 node_t *leftmost_child, *sibling; local
56 for (sibling = phn_next_get(node_t, link, leftmost_child); sibling !=
57 NULL; sibling = phn_next_get(node_t, link, sibling)) {
58 node_print(sibling, depth + 1);
89 node_t *leftmost_child, *sibling; local
103 for (sibling = phn_next_get(node_t, link, leftmost_child); sibling !=
104 NULL; sibling
106 link, sibling)), sibling, local
[all...]
/external/libedit/src/
H A Dkeymacro.c81 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
[all...]
/external/ltp/utils/ffsb-6.0-rc2/
H A Drbt.c824 rb_node *sibling; local
827 /* Get a pointer to the current node's sibling (notice
833 * sibling is the right child of the parent.
835 sibling = curr_node->parent->right;
837 /* Check the sibling's color. Notice that NULL
841 if (sibling && sibling->color == red) {
842 /* In case the sibling is red, color
847 sibling->color = black;
850 sibling
[all...]
/external/skia/src/xml/
H A DSkDOM.cpp93 const Node* sibling = node->fNextSibling; local
95 for (; sibling != nullptr; sibling = sibling->fNextSibling) {
96 if (!strcmp(name, sibling->fName)) {
101 return sibling;
/external/ImageMagick/MagickCore/
H A Dsegment.c168 *sibling,
1305 InitializeList(list,number_nodes,node->sibling);
1328 for ( ; child != (IntervalTree *) NULL; child=child->sibling)
1335 MeanStability(node->sibling);
1347 Stability(node->sibling);
1381 root->sibling=(IntervalTree *) NULL;
1412 node->sibling=(IntervalTree *) AcquireMagickMemory(
1413 sizeof(*node->sibling));
1414 node=node->sibling;
1418 node->sibling
165 *sibling, member in struct:_IntervalTree
[all...]
H A Dxml-tree.c92 *sibling,
922 child=child->sibling;
1133 % GetXMLTreeSibling() returns the node sibling if found, otherwise NULL.
1151 return(xml_info->sibling);
1225 child->sibling=(XMLTreeInfo *) NULL;
1254 node=node->sibling;
1267 previous->sibling=node->sibling;
1274 node=node->sibling;
1276 child->sibling
89 *sibling, member in struct:_XMLTreeInfo
[all...]
/external/icu/icu4c/source/tools/ctestfw/
H A Dctest.c47 struct TestNode* sibling; member in struct:TestNode
179 newNode->sibling = NULL;
194 if(tn->sibling != NULL) {
195 cleanUpTestTree(tn->sibling);
268 nextNode = nextNode -> sibling;
274 curNode->sibling = nextNode;
486 iterateTestsWithLevel ( root->sibling, depth, nodeList, mode );
613 nextNode = nextNode -> sibling;
/external/linux-kselftest/tools/testing/selftests/seccomp/
H A Dseccomp_bpf.c1827 struct tsync_sibling sibling[TSYNC_SIBLINGS]; local
1849 memset(&self->sibling, 0, sizeof(self->sibling));
1864 self->sibling[0].tid = 0;
1865 self->sibling[0].cond = &self->cond;
1866 self->sibling[0].started = &self->started;
1867 self->sibling[0].mutex = &self->mutex;
1868 self->sibling[0].diverge = 0;
1869 self->sibling[0].num_waits = 1;
1870 self->sibling[
1939 tsync_start_sibling(struct tsync_sibling *sibling) argument
[all...]
/external/seccomp-tests/linux/
H A Dseccomp_bpf.c1641 struct tsync_sibling sibling[TSYNC_SIBLINGS]; local
1663 memset(&self->sibling, 0, sizeof(self->sibling));
1678 self->sibling[0].tid = 0;
1679 self->sibling[0].cond = &self->cond;
1680 self->sibling[0].started = &self->started;
1681 self->sibling[0].mutex = &self->mutex;
1682 self->sibling[0].diverge = 0;
1683 self->sibling[0].num_waits = 1;
1684 self->sibling[
1753 tsync_start_sibling(struct tsync_sibling *sibling) argument
[all...]
/external/v8/src/ast/
H A Dscopes.h327 // inner_scope() and sibling() together implement the inner scope list of a
329 // "sibling" points to a next inner scope of the outer scope of this scope.
331 Scope* sibling() const { return sibling_; } function in class:v8::internal::Scope
450 Scope* sibling_; // a sibling inner scope of the outer scope of this scope.
H A Dscopes.cc650 Scope* sibling = parent->inner_scope(); local
651 for (; sibling != nullptr; sibling = sibling->sibling()) {
652 if (sibling == this) return false;
739 for (; inner_scope->sibling() != top_inner_scope_;
740 inner_scope = inner_scope->sibling()) {
748 // Reset the sibling rather than the inner_scope_ since we
/external/libmtp/src/
H A Dlibmtp.h688 LIBMTP_folder_t *sibling; /**< Next folder at same level or NULL if no more */ member in struct:LIBMTP_folder_struct
/external/valgrind/coregrind/m_debuginfo/
H A Dreaddwarf3.c945 // sibling element or the end of the DIE.
1536 If the DIE has a sibling, *sibling is set to the skipped DIE sibling value. */
1538 void skip_DIE (UWord *sibling, argument
1551 *sibling = cts.u.val;
1994 UWord sibling = 0; local
2022 sibling = cts.u.val;
2034 vg_assert (check_sibling == sibling);
2530 // followed by no attributes, and the next DIE is a sibling,
2549 UWord sibling; // sibling of the last read DIE (if it has a sibling). member in struct:__anon22938
4175 UWord sibling = 0; local
[all...]
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/guice/extensions/persist/lib/
H A Djaxen-1.1-beta-7.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jaxen/ org/jaxen/dom/ org/jaxen/dom4j/ org/ ...
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...

Completed in 1499 milliseconds

12