HomeSort by relevance Sort by last modified time
    Searched refs:ancestors (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTree.as 279 /** Return a list of all ancestors of this node. The first node of
282 public function get ancestors():Array {
284 var ancestors:Array = new Array();
288 ancestors.unshift(t); // insert at start
291 return ancestors;
  /libcore/ojluni/src/main/java/java/util/prefs/
XmlSupport.java 110 List ancestors = new ArrayList(); local
114 ancestors.add(kid);
117 for (int i=ancestors.size()-1; i >= 0; i--) {
120 e.setAttribute("name", ((Preferences)ancestors.get(i)).name());
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTree.java 326 /** Return a list of all ancestors of this node. The first node of
331 List ancestors = new ArrayList();
335 ancestors.add(0, t); // insert at start
338 return ancestors;
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Actor.java 124 // Collect ancestors so event propagation is unaffected by hierarchy changes.
125 Array<Group> ancestors = Pools.obtain(Array.class); local
128 ancestors.add(parent);
133 // Notify all parent capture listeners, starting at the root. Ancestors may stop an event before children receive it.
134 Object[] ancestorsArray = ancestors.items;
135 for (int i = ancestors.size - 1; i >= 0; i--) {
150 // Notify all parent listeners, starting at the target. Children may stop an event before ancestors receive it.
151 for (int i = 0, n = ancestors.size; i < n; i++) {
158 ancestors.clear();
159 Pools.free(ancestors);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTree.cs 396 * Return a list of all ancestors of this node. The first node of
404 List<ITree> ancestors = new List<ITree>();
408 ancestors.Insert(0, t); // insert at start
411 return ancestors;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTree.cs 475 * Return a list of all ancestors of this node. The first node of
484 List<ITree> ancestors = new List<ITree>();
489 ancestors.Insert( 0, t ); // insert at start
492 return ancestors;
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
MembersInjectionBinding.java 227 final List<TypeElement> ancestors = new ArrayList<>(); local
233 ancestors.add(MoreElements.asType(type.asElement()));
258 ancestors.indexOf(right.element().getEnclosingElement()),
259 ancestors.indexOf(left.element().getEnclosingElement()))
280 if (injectionSite.getKind().isField()) { // Inject all fields (self and ancestors)
  /external/guava/guava/src/com/google/common/reflect/
ClassPath.java 337 ImmutableSet<File> ancestors) throws IOException {
339 if (ancestors.contains(canonical)) {
350 .addAll(ancestors)
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java 173 * Only ancestors that are searched are
186 * Only ancestors that are searched are
203 * Only ancestors that are searched are
222 * attribute is specified, then the only ancestors that are searched are those
226 * When level="multiple", it constructs a list of all ancestors of the current node
230 * If the from attribute is specified, then the only ancestors that are searched are
819 NodeVector ancestors = local
822 int lastIndex = ancestors.size() - 1;
830 int target = ancestors.elementAt(i);
965 * Get the ancestors, up to the root, that match th
982 NodeSetDTM ancestors = new NodeSetDTM(xctxt.getDTMManager()); local
    [all...]
  /external/autotest/utils/
run_pylint.py 176 # ancestors.
178 hasattr(node.parent.frame(), 'ancestors') and
180 node.parent.frame().ancestors())):
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 215 [ancestors] the list of successive parents from a tree node to the root node
277 def ancestors method in class:ANTLR3.AST
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py 144 """Return a list of all ancestors of this node.
904 """Return a list of all ancestors of this node.
912 ancestors = []
915 ancestors.insert(0, t) # insert at start
918 return ancestors
    [all...]
  /external/chromium-trace/catapult/netlog_viewer/netlog_viewer/
ui_webui_resources_js_util.js 104 * @param {Node} el A node to search for ancestors with |className|.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/arch/
sh.s 155 ! Instructions inherited from ancestors:
sh2.s 27 ! Instructions inherited from ancestors: sh
sh2a-nofpu-or-sh3-nommu.s 18 ! Instructions inherited from ancestors: sh sh2
sh2a-nofpu-or-sh4-nommu-nofpu.s 17 ! Instructions inherited from ancestors: sh sh2 sh2a-nofpu-or-sh3-nommu
sh2a-or-sh3e.s 17 ! Instructions inherited from ancestors: sh sh2 sh2a-nofpu-or-sh3-nommu sh2e
sh2e.s 52 ! Instructions inherited from ancestors: sh sh2
sh3-nommu.s 28 ! Instructions inherited from ancestors: sh sh2 sh2a-nofpu-or-sh3-nommu
sh3.s 17 ! Instructions inherited from ancestors: sh sh2 sh2a-nofpu-or-sh3-nommu sh3-nommu
sh3e.s 16 ! Instructions inherited from ancestors: sh sh2 sh2a-nofpu-or-sh3-nommu sh2a-or-sh3e sh2e sh3 sh3-nommu
sh4-nofpu.s 16 ! Instructions inherited from ancestors: sh sh2 sh2a-nofpu-or-sh3-nommu sh2a-nofpu-or-sh4-nommu-nofpu sh3 sh3-nommu sh4-nommu-nofpu
sh4-nommu-nofpu.s 28 ! Instructions inherited from ancestors: sh sh2 sh2a-nofpu-or-sh3-nommu sh2a-nofpu-or-sh4-nommu-nofpu sh3-nommu
sh4a-nofpu.s 23 ! Instructions inherited from ancestors: sh sh2 sh2a-nofpu-or-sh3-nommu sh2a-nofpu-or-sh4-nommu-nofpu sh3 sh3-nommu sh4-nofpu sh4-nommu-nofpu

Completed in 592 milliseconds

1 2 3 4