HomeSort by relevance Sort by last modified time
    Searched full:siblings (Results 26 - 50 of 315) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/w3c/dom/
DocumentFragment.java 45 * useful when the user wishes to create nodes that are siblings; the
  /art/compiler/optimizing/
register_allocator.h 115 // Connect adjacent siblings within blocks.
118 // Connect siblings between block entries and exits.
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
Axis.java 78 * The following-sibling axis contains all the following siblings of the
110 * The preceding-sibling axis contains all the preceding siblings of the
  /external/chromium-trace/catapult/systrace/profile_chrome/third_party/
perf_to_tracing.py 209 # Return siblings of a call tree node.
219 # Get siblings of node's parent.
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
Data.java 124 * Is this the first of its siblings?
129 * Is this the last of its siblings?
NestedMapData.java 68 // Doubly linked list of siblings.
260 * Is this the first of its siblings?
268 * Is this the last of its siblings?
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
CommonSuperclassTest.java 148 // siblings
178 // siblings with undefined superclass
  /libcore/ojluni/src/main/java/java/util/stream/
AbstractShortCircuitTask.java 219 * later right siblings of all its parents.
222 // Go up the tree, cancel right siblings of this node and all parents
  /system/core/debuggerd/
debuggerd.cpp 484 BacktraceMap* backtrace_map, const std::set<pid_t>& siblings,
502 engrave_tombstone(tombstone_fd, backtrace_map, request.pid, request.tid, siblings, signal,
506 dump_backtrace(fd, backtrace_map, request.pid, request.tid, siblings, nullptr);
529 engrave_tombstone(tombstone_fd, backtrace_map, request.pid, request.tid, siblings, signal,
638 std::set<pid_t> siblings; local
640 ptrace_siblings(request.pid, request.tid, siblings);
663 succeeded = perform_dump(request, fd, tombstone_fd, backtrace_map.get(), siblings,
692 for (pid_t sibling : siblings) {
tombstone.cpp 608 const std::set<pid_t>& siblings, int signal, int si_code,
623 if (!siblings.empty()) {
624 for (pid_t sibling : siblings) {
688 const std::set<pid_t>& siblings, int signal, int original_si_code,
701 dump_crash(&log, map, pid, tid, siblings, signal, original_si_code, abort_msg_address);
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-docs.js 539 node.siblings().css("display","none"); // hide all siblings
544 node.siblings().filter(".en").css("display","inline");
553 node.siblings().css("display","none"); // hide all siblings
558 node.siblings().filter(".en").css("display","inline");
  /external/doclava/res/assets/templates/assets/
doclava-developer-docs.js 452 node.siblings().css("display","none"); // hide all siblings
457 node.siblings().filter(".en").css("display","inline");
466 node.siblings().css("display","none"); // hide all siblings
471 node.siblings().filter(".en").css("display","inline");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilities.java 575 * Returns true iff the given elements are contiguous siblings
578 * @return true if the elements are contiguous siblings with no gaps
582 // All elements must be siblings (e.g. same parent)
593 // Ensure that the siblings are contiguous; no gaps.
596 List<Element> siblings = DomUtilities.getChildren((Element) parent); local
597 if (siblings.size() != elements.size()) {
601 for (Element node : siblings) {
    [all...]
  /frameworks/base/core/java/android/animation/
AnimatorSet.java 1059 findSiblings(node.mSiblings.get(i), siblings); local
    [all...]
  /external/iproute2/man/man8/
tc-cbq-details.8 235 it will try to borrow avgidle from siblings that are not
356 Signifies that this class will not borrow bandwidth from its siblings.
359 Means that this class will not borrow bandwidth to its siblings
tc-cbq.8 145 Classes by default borrow bandwidth from their siblings. A class can be
273 Signifies that this class will not borrow bandwidth from its siblings.
276 Means that this class will not borrow bandwidth to its siblings
  /external/mesa3d/src/glsl/
ralloc.c 64 /* Linked list of siblings */
214 /* Unlink from parent & siblings */
  /frameworks/base/core/java/android/view/
GhostView.java 274 * compare the draw order of the siblings.
311 * view and comparedWith are siblings with the same parent. This uses the logic
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSettingsAdapter.java 141 BluetoothMapAccountItem siblings = childList.get(i);
142 if (!siblings.mIsChecked) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeIterator.cs 115 // while we're out of siblings, keep popping back up towards root
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeIterator.cs 136 // while we're out of siblings, keep popping back up towards root
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeIterator.java 108 // while we're out of siblings, keep popping back up towards root
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorExsltFunction.java 120 * the func:result element does not contain any following siblings except xsl:fallback.
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/
jquery.treeview.min.js 15 */;(function($){$.extend($.fn,{swapClass:function(c1,c2){var c1Elements=this.filter('.'+c1);this.filter('.'+c2).removeClass(c2).addClass(c1);c1Elements.removeClass(c1).addClass(c2);return this;},replaceClass:function(c1,c2){return this.filter('.'+c1).removeClass(c1).addClass(c2).end();},hoverClass:function(className){className=className||"hover";return this.hover(function(){$(this).addClass(className);},function(){$(this).removeClass(className);});},heightToggle:function(animated,callback){animated?this.animate({height:"toggle"},animated,callback):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();if(callback)callback.apply(this,arguments);});},heightHide:function(animated,callback){if(animated){this.animate({height:"hide"},animated,callback);}else{this.hide();if(callback)this.each(callback);}},prepareBranches:function(settings){if(!settings.prerendered){this.filter(":last-child:not(ul)").addClass(CLASSES.last);this.filter((settings.collapsed?"":"."+CLASSES.closed)+":not(."+CLASSES.open+")").find(">ul").hide();}return this.filter(":has(>ul)");},applyClasses:function(settings,toggler){this.filter(":has(>ul):not(:has(>a))").find(">span").click(function(event){toggler.apply($(this).next());}).add($("a",this)).hoverClass();if(!settings.prerendered){this.filter(":has(>ul:hidden)").addClass(CLASSES.expandable).replaceClass(CLASSES.last,CLASSES.lastExpandable);this.not(":has(>ul:hidden)").addClass(CLASSES.collapsable).replaceClass(CLASSES.last,CLASSES.lastCollapsable);this.prepend("<div class=\""+CLASSES.hitarea+"\"/>").find("div."+CLASSES.hitarea).each(function(){var classes="";$.each($(this).parent().attr("class").split(" "),function(){classes+=this+"-hitarea ";});$(this).addClass(classes);});}this.find("div."+CLASSES.hitarea).click(toggler);},treeview:function(settings){settings=$.extend({cookieId:"treeview"},settings);if(settings.add){return this.trigger("add",[settings.add]);}if(settings.toggle){var callback=settings.toggle;settings.toggle=function(){return callback.apply($(this).parent()[0],arguments);};}function treeController(tree,control){function handler(filter){return function(){toggler.apply($("div."+CLASSES.hitarea,tree).filter(function(){return filter?$(this).parent("."+filter).length:true;}));return false;};}$("a:eq(0)",control).click(handler(CLASSES.collapsable));$("a:eq(1)",control).click(handler(CLASSES.expandable));$("a:eq(2)",control).click(handler());}function toggler(){$(this).parent().find(">.hitarea").swapClass(CLASSES.collapsableHitarea,CLASSES.expandableHitarea).swapClass(CLASSES.lastCollapsableHitarea,CLASSES.lastExpandableHitarea).end().swapClass(CLASSES.collapsable,CLASSES.expandable).swapClass(CLASSES.lastCollapsable,CLASSES.lastExpandable).find(">ul").heightToggle(settings.animated,settings.toggle);if(settings.unique){$(this).parent().siblings().find(">.hitarea").replaceClass(CLASSES.collapsableHitarea,CLASSES.expandableHitarea).replaceClas (…)
  /external/elfutils/libdw/
libdw_visit_scopes.c 118 that unit are siblings of the other children. So don't do

Completed in 2096 milliseconds

12 3 4 5 6 7 8 91011>>