HomeSort by relevance Sort by last modified time
    Searched defs:ancestor (Results 1 - 25 of 377) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorExsltFuncResult.java 52 ElemTemplateElement ancestor = handler.getElemTemplateElement().getParentElem(); local
53 while (ancestor != null && !(ancestor instanceof ElemExsltFunction))
55 if (ancestor instanceof ElemVariable
56 || ancestor instanceof ElemParam
57 || ancestor instanceof ElemExsltFuncResult)
62 ancestor = ancestor.getParentElem();
64 if (ancestor == null)
  /external/guava/guava/src/com/google/common/collect/
AbstractMapBasedMultimap.java 331 @Nullable K key, List<V> list, @Nullable WrappedCollection ancestor) {
333 ? new RandomAccessWrappedList(key, list, ancestor)
334 : new WrappedList(key, list, ancestor);
342 * <p>Full collections, identified by a null ancestor field, contain all
349 * given key. Its ancestor field points to the full wrapped collection with
357 final WrappedCollection ancestor; field in class:AbstractMapBasedMultimap.WrappedCollection
361 @Nullable WrappedCollection ancestor) {
364 this.ancestor = ancestor;
366 = (ancestor == null) ? null : ancestor.getDelegate()
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractMapBasedMultimap.java 328 @Nullable K key, List<V> list, @Nullable WrappedCollection ancestor) {
330 ? new RandomAccessWrappedList(key, list, ancestor)
331 : new WrappedList(key, list, ancestor);
339 * <p>Full collections, identified by a null ancestor field, contain all
346 * given key. Its ancestor field points to the full wrapped collection with
354 final WrappedCollection ancestor; field in class:AbstractMapBasedMultimap.WrappedCollection
358 @Nullable WrappedCollection ancestor) {
361 this.ancestor = ancestor;
363 = (ancestor == null) ? null : ancestor.getDelegate()
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
ViewLoader.java 300 View ancestor = (View) parent; local
301 while (ancestor.getParent() != null) {
302 ancestor = (View) ancestor.getParent();
304 ancestor.clearFocus();
  /dalvik/dx/src/com/android/dx/ssa/
Dominators.java 117 DFSInfo ancestorbbInfo = info[bbInfo.ancestor.getIndex()];
119 if (ancestorbbInfo.ancestor != null) {
128 SsaBasicBlock vAncestor = vbbInfo.ancestor;
131 // Make sure we process our ancestor before ourselves.
132 if (visited.add(vAncestor) && vabbInfo.ancestor != null) {
138 // Update based on ancestor info.
139 if (vabbInfo.ancestor == null) {
148 vbbInfo.ancestor = vabbInfo.ancestor;
156 if (bbInfo.ancestor == null)
279 public SsaBasicBlock ancestor; field in class:Dominators.DFSInfo
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 202 Object ancestor = getAncestor(adaptor, tokenNames, t, goal); local
203 if ( ancestor==null ) return false;
204 t = ancestor;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 131 // Check that the node at index "position" is not an ancestor
133 // RETURN -1. If position is NOT an ancestor, return position.
139 // We have to look all the way up the ancestor chain
140 // to make sure we don't have an ancestor.
141 int ancestor = startPos; local
142 while(ancestor > 0)
144 // Get the node whose index == ancestor
145 ancestor*=slotsize;
146 int chunkpos = ancestor >> lowbits;
147 int slotpos = ancestor & lowmask
    [all...]
DTMDefaultBase.java 1358 int ancestor=_parent(elementNodeIndex); local
    [all...]
  /external/guava/guava/src/com/google/common/net/
InternetDomainName.java 348 return hasPublicSuffix() ? ancestor(publicSuffixIndex) : null;
425 return ancestor(publicSuffixIndex - 1);
436 * Returns an {@code InternetDomainName} that is the immediate ancestor of
445 return ancestor(1);
449 * Returns the ancestor of the current domain at the given number of levels
456 private InternetDomainName ancestor(int levels) { method in class:InternetDomainName
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
BodyDeclarationLocators.java 150 ASTNode ancestor = node; local
151 while (ancestor != null && !(ancestor instanceof BodyDeclaration)) {
152 ancestor = ancestor.getParent();
155 return ancestor instanceof BodyDeclaration ? (BodyDeclaration) ancestor : null;
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/
JavaParserClassDeclaration.java 105 getAncestors().forEach(ancestor -> ancestor.getTypeDeclaration().getAllFields().forEach(f -> {
120 return ancestor.useThisTypeParametersOnTheGivenType(f.getType());
246 // We want to avoid infinite recursion in case of Object having Object as ancestor
257 ResolvedReferenceTypeDeclaration ancestor = (ResolvedReferenceTypeDeclaration) new SymbolSolver(typeSolver).solveType(type); local
258 if (ancestor.canBeAssignedTo(other)) {
294 // We want to avoid infinite recursion in case of Object having Object as ancestor
302 ResolvedReferenceType ancestor = toReferenceType(implemented); local
303 ancestors.add(ancestor);
JavaParserInterfaceDeclaration.java 165 ResolvedReferenceTypeDeclaration ancestor = (ResolvedReferenceTypeDeclaration) new SymbolSolver(typeSolver).solveType(type); local
166 if (ancestor.canBeAssignedTo(other)) {
174 ResolvedReferenceTypeDeclaration ancestor = (ResolvedReferenceTypeDeclaration) new SymbolSolver(typeSolver).solveType(type); local
175 if (ancestor.canBeAssignedTo(other)) {
193 getAncestors().forEach(ancestor -> ancestor.getTypeDeclaration().getAllFields().forEach(f -> {
208 return ancestor.useThisTypeParametersOnTheGivenType(f.getType());
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionClassAdapter.java 77 ResolvedReferenceType ancestor = ancestors.get(i); local
78 if (ancestor.hasName() && ancestor.getQualifiedName().equals(Object.class.getCanonicalName())) {
92 for (ResolvedReferenceType ancestor : typeDeclaration.getAllAncestors()) {
93 if (ancestor.getTypeDeclaration().hasField(name)) {
94 ReflectionFieldDeclaration reflectionFieldDeclaration = (ReflectionFieldDeclaration) ancestor.getTypeDeclaration().getField(name);
95 return reflectionFieldDeclaration.replaceType(ancestor.getFieldType(name).get());
120 for (ResolvedReferenceType ancestor : typeDeclaration.getAllAncestors()) {
121 fields.addAll(ancestor.getTypeDeclaration().getAllFields());
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/javassistmodel/
JavassistClassDeclarationTest.java 192 ResolvedReferenceType ancestor = null; local
194 ancestor = constructorDeclaration.getAllSuperClasses().get(0);
195 assertEquals("com.github.javaparser.ast.body.BodyDeclaration", ancestor.getQualifiedName());
196 assertEquals("com.github.javaparser.ast.body.ConstructorDeclaration", ancestor.typeParametersMap().getValueBySignature("com.github.javaparser.ast.body.BodyDeclaration.T").get().asReferenceType().getQualifiedName());
198 ancestor = constructorDeclaration.getAllSuperClasses().get(1);
199 assertEquals("com.github.javaparser.ast.Node", ancestor.getQualifiedName());
201 ancestor = constructorDeclaration.getAllSuperClasses().get(2);
202 assertEquals("java.lang.Object", ancestor.getQualifiedName());
312 ResolvedReferenceType ancestor = null; local
314 ancestor = constructorDeclaration.getAncestors().get(0)
357 ResolvedReferenceType ancestor = null; local
    [all...]
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
LocaleData.java 52 // This also outputs the index of the last written ancestor in the stop_list
63 int ancestor = packed_locale; local
67 out[count] = ancestor;
71 if (stop_list[i] == ancestor) {
76 ancestor = findParent(ancestor, script);
77 } while (ancestor != PACKED_ROOT);
92 // ancestor, so the distance in the parent tree is the sum of the distance
93 // of 'supported' to the lowest common ancestor (number of ancestors
95 // lowest common ancestor (the index of the ancestor in request_ancestors)
    [all...]
  /frameworks/base/libs/androidfw/
LocaleData.cpp 69 // This also outputs the index of the last written ancestor in the stop_list
80 uint32_t ancestor = packed_locale; local
83 if (out != nullptr) out[count] = ancestor;
86 if (stop_list[i] == ancestor) {
91 ancestor = findParent(ancestor, script);
92 } while (ancestor != PACKED_ROOT);
107 // ancestor, so the distance in the parent tree is the sum of the distance
108 // of 'supported' to the lowest common ancestor (number of ancestors
110 // lowest common ancestor (the index of the ancestor in request_ancestors)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/util/
TestUtils.java 75 // the ancestor hierarchy of our view and collect a list of all ancestors with non-null
91 // We're done traversing the ancestor chain
103 // the topmost ancestor) and draw their backgrounds into our combined bitmap. At each step
105 // currently drawn ancestor.
108 View ancestor = ancestorsWithBackgrounds.get(i); local
112 ancestor.getBackground().draw(canvas);
  /frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/testutils/
TestUtils.java 67 // the ancestor hierarchy of our view and collect a list of all ancestors with non-null
83 // We're done traversing the ancestor chain
95 // the topmost ancestor) and draw their backgrounds into our combined bitmap. At each step
97 // currently drawn ancestor.
100 View ancestor = ancestorsWithBackgrounds.get(i); local
104 ancestor.getBackground().draw(canvas);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/
JavaParserClassDeclarationTest.java 188 ResolvedReferenceType ancestor = null; local
190 ancestor = constructorDeclaration.getAllSuperClasses().get(0);
191 assertEquals("com.github.javaparser.ast.body.BodyDeclaration", ancestor.getQualifiedName());
192 assertEquals("com.github.javaparser.ast.body.ConstructorDeclaration", ancestor.typeParametersMap().getValueBySignature("com.github.javaparser.ast.body.BodyDeclaration.T").get().asReferenceType().getQualifiedName());
194 ancestor = constructorDeclaration.getAllSuperClasses().get(1);
195 assertEquals("com.github.javaparser.ast.Node", ancestor.getQualifiedName());
197 ancestor = constructorDeclaration.getAllSuperClasses().get(2);
198 assertEquals("java.lang.Object", ancestor.getQualifiedName());
301 ResolvedReferenceType ancestor = null; local
303 ancestor = constructorDeclaration.getAncestors().get(0)
346 ResolvedReferenceType ancestor = null; local
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionClassDeclarationTest.java 333 ResolvedReferenceType ancestor; local
335 ancestor = constructorDeclaration.getAllSuperClasses().get(0);
336 assertEquals("com.github.javaparser.ast.body.CallableDeclaration", ancestor.getQualifiedName());
337 assertEquals("com.github.javaparser.ast.body.ConstructorDeclaration", ancestor.typeParametersMap().getValueBySignature("com.github.javaparser.ast.body.CallableDeclaration.T").get().asReferenceType().getQualifiedName());
339 ancestor = constructorDeclaration.getAllSuperClasses().get(1);
340 assertEquals("com.github.javaparser.ast.body.BodyDeclaration", ancestor.getQualifiedName());
341 assertEquals("com.github.javaparser.ast.body.ConstructorDeclaration", ancestor.typeParametersMap().getValueBySignature("com.github.javaparser.ast.body.BodyDeclaration.T").get().asReferenceType().getQualifiedName());
343 ancestor = constructorDeclaration.getAllSuperClasses().get(2);
344 assertEquals("com.github.javaparser.ast.Node", ancestor.getQualifiedName());
346 ancestor = constructorDeclaration.getAllSuperClasses().get(3)
588 ResolvedReferenceType ancestor; local
641 ResolvedReferenceType ancestor; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
ipa-prop.h 49 getting addresses of of ancestor fields in C++
51 NULL, ancestor jump function must behave like a simple pass-through.
73 IPA_JF_ANCESTOR /* represented by field ancestor */
110 /* Structure holding data required to describe an ancestor pass-through
115 /* Offset of the field representing the ancestor. */
127 agg_preserved set or an ancestor jump function with agg_preserved set, all
177 struct ipa_ancestor_jf_data GTY ((tag ("IPA_JF_ANCESTOR"))) ancestor; member in union:ipa_jump_func::jump_func_value
256 /* Return the offset of an ancestor jump function JFUNC. */
262 return jfunc->value.ancestor.offset;
265 /* Return the result type of an ancestor jump function JFUNC. *
    [all...]
  /external/libxml2/include/libxml/
xpath.h 384 xmlNodePtr ancestor; /* used for walking preceding axis */ member in struct:_xmlXPathParserContext
  /libcore/ojluni/src/main/java/sun/security/x509/
X500Name.java 1376 RDN[] ancestor = new RDN[i]; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/abego/treelayout/org.abego.treelayout.core/1.0.1/
org.abego.treelayout.core-1.0.1.jar 
  /external/annotation-tools/scene-lib/src/annotations/io/
ASTPath.java 1294 Tree ancestor = actualPath.get(i-1); local
    [all...]

Completed in 947 milliseconds

1 2 3 4 5 6 7 8 91011>>