Home
last modified time | relevance | path

Searched refs:sibling (Results 1 – 25 of 68) sorted by relevance

123

/external/linux-tools-perf/src/lib/
Drbtree.c205 struct rb_node *node = NULL, *sibling, *tmp1, *tmp2; in ____rb_erase_color() local
215 sibling = parent->rb_right; in ____rb_erase_color()
216 if (node != sibling) { /* node == parent->rb_left */ in ____rb_erase_color()
217 if (rb_is_red(sibling)) { in ____rb_erase_color()
227 parent->rb_right = tmp1 = sibling->rb_left; in ____rb_erase_color()
228 sibling->rb_left = parent; in ____rb_erase_color()
230 __rb_rotate_set_parents(parent, sibling, root, in ____rb_erase_color()
232 augment_rotate(parent, sibling); in ____rb_erase_color()
233 sibling = tmp1; in ____rb_erase_color()
235 tmp1 = sibling->rb_right; in ____rb_erase_color()
[all …]
/external/markdown/markdown/
Dblockprocessors.py131 level, sibling = self.get_level(parent, block)
138 elif sibling.tag in self.ITEM_TYPES:
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)
150 self.create_item(sibling, block)
193 sibling = self.lastChild(parent)
[all …]
/external/libedit/src/
Dkeymacro.c81 struct keymacro_node_t *sibling;/* ptr to another key with same prefix*/ member
302 if (ptr->sibling) { in node_trav()
304 return node_trav(el, ptr->sibling, ch, val); in node_trav()
325 for (xm = ptr; xm->sibling != NULL; xm = xm->sibling) in node__try()
326 if (xm->sibling->ch == *str) in node__try()
328 if (xm->sibling == NULL) in node__try()
329 xm->sibling = node__get(*str); /* setup new node */ in node__try()
330 ptr = xm->sibling; in node__try()
391 for (xm = ptr; xm->sibling != NULL; xm = xm->sibling) in node__delete()
392 if (xm->sibling->ch == *str) in node__delete()
[all …]
/external/markdown/markdown/extensions/
Ddef_list.py44 sibling = self.lastChild(parent)
45 if not terms and sibling.tag == 'p':
48 terms = sibling.text.split('\n')
49 parent.remove(sibling)
51 sibling = self.lastChild(parent)
55 if sibling and sibling.tag == 'dl':
57 dl = sibling
/external/tcpdump/
Dmakemib207 for (sib = child[parent]; sib != ""; sib = sibling[sib])
223 sibling[new] = child[parent]
241 if (sibling[item] != "") {
242 dump(sibling[item])
243 s = "&_"sibling[item]"_obj"
/external/e2fsprogs/debugfs/
Dextent_cmds.ct16 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/elfutils/src/tests/
Drun-show-die-info.sh88 … Attrs : sibling name low_pc high_pc prototyped decl_file decl_line external frame_base type
95 Attrs : sibling name decl_file decl_line declaration external type
167 Attrs : sibling name type
183 Attrs : sibling name byte_size decl_file decl_line
409 Attrs : sibling byte_size decl_file decl_line
420 Attrs : sibling type
477 Attrs : sibling byte_size decl_file decl_line
488 Attrs : sibling type
568 Attrs : sibling name byte_size decl_file decl_line
689 Attrs : sibling name byte_size decl_file decl_line
[all …]
Drun-readelf-dwz-multi.sh112 sibling (ref_udata) [ 6e]
173 sibling (ref_udata) [ 6e]
/external/llvm/test/CodeGen/SystemZ/
Dcall-03.ll1 ; Test sibling calls.
15 ; a sibling call.
33 ; use sibling calls in that case.
42 ; Check a call that passes indirect arguments. We can't use sibling
53 ; sibling calls
/external/skia/src/xml/
DSkDOM.cpp99 const Node* sibling = node->fNextSibling; in getNextSibling() local
102 for (; sibling != NULL; sibling = sibling->fNextSibling) in getNextSibling()
103 if (!strcmp(name, sibling->fName)) in getNextSibling()
106 return sibling; in getNextSibling()
/external/droiddriver/src/io/appium/droiddriver/finders/
DPredicates.java288 for (UiElement sibling : parent.getChildren(UiElement.VISIBLE)) {
289 if (sibling != element && siblingPredicate.apply(sibling)) {
/external/icu/icu4c/source/tools/ctestfw/
Dctest.c45 struct TestNode* sibling; member
177 newNode->sibling = NULL; in createTestNode()
192 if(tn->sibling != NULL) { in cleanUpTestTree()
193 cleanUpTestTree(tn->sibling); in cleanUpTestTree()
266 nextNode = nextNode -> sibling; in addTestNode()
272 curNode->sibling = nextNode; in addTestNode()
484 iterateTestsWithLevel ( root->sibling, depth, nodeList, mode ); in iterateTestsWithLevel()
611 nextNode = nextNode -> sibling; in getTest()
/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugInfoEntry.h405 SetSibling (DWARFDebugInfoEntry* sibling) in SetSibling() argument
407 if (sibling) in SetSibling()
411 m_sibling_idx = sibling - this; in SetSibling()
412 sibling->SetParent(GetParent()); in SetSibling()
/external/libxml2/test/XPath/xptr/
Dvidbase2 xpointer(id('chapter1')/p[1]/range-to(following-sibling::p[2]))
/external/jetty/src/java/org/eclipse/jetty/webapp/
DWebInfConfiguration.java451 …File sibling = new File(warfile.getParent(),warfile.getName().substring(0,warfile.getName().length… in unpack() local
452 if (sibling.exists() && sibling.isDirectory() && sibling.canWrite()) in unpack()
453 extractedWebAppDir=sibling; in unpack()
/external/libxml2/result/XPath/xptr/
Dvidbase12 Expression: xpointer(id('chapter1')/p[1]/range-to(following-sibling::p[2]))
/external/compiler-rt/test/msan/
Dlit.cfg15 "-fno-optimize-sibling-calls",
/external/libmtp/examples/
Dfolders.c39 dump_folder_list(folderlist->sibling, level); in dump_folder_list()
Demptyfolders.c56 prune_empty_folders(device,files,folderlist->sibling,do_delete); // recurse along in prune_empty_folders()
/external/libxml2/os400/libxmlrpg/
Dentities.rpgle42 d next like(xmlNodePtr) next sibling link
43 d prev like(xmlNodePtr) prev sibling link
Dtree.rpgle282 d next like(xmlNodePtr) next sibling link
283 d prev like(xmlNodePtr) previous sibling lnk
375 d next like(xmlNodePtr) next sibling link
376 d prev like(xmlNodePtr) previous sibling lnk
427 d next like(xmlNodePtr) next sibling link
428 d prev like(xmlNodePtr) previous sibling lnk
451 d next like(xmlAttrPtr) next sibling link
452 d prev like(xmlAttrPtr) previous sibling lnk
498 d next like(xmlNodePtr) next sibling link
499 d prev like(xmlNodePtr) previous sibling lnk
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRTreeIterator.m158 // if no children, look for next sibling of ancestor
170 // must have found a node with an unvisited sibling
/external/valgrind/coregrind/m_debuginfo/
Dreaddwarf3.c1538 void skip_DIE (UWord *sibling, in skip_DIE() argument
1551 *sibling = cts.u.val; in skip_DIE()
1994 UWord sibling = 0; in trace_DIE() local
2022 sibling = cts.u.val; in trace_DIE()
2034 vg_assert (check_sibling == sibling); in trace_DIE()
2549 UWord sibling; // sibling of the last read DIE (if it has a sibling). member
2728 parser->sibling = cts.u.val; in parse_inl_DIE()
2788 parser->sibling = cts.u.val; in parse_inl_DIE()
4175 UWord sibling = 0; in read_DIE() local
4241 inlparser->sibling = 0; in read_DIE()
[all …]
/external/skia/gyp/
Dandroid_system.gyp15 # Also this assumes that the android directory is a sibling to the directory
Dandroid_deps.gyp16 # Also this assumes that the android directory is a sibling to the directory

123