HomeSort by relevance Sort by last modified time
    Searched refs:ancestor (Results 1 - 25 of 332) 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/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-tests/test/com/google/common/collect/
FauxveridesTest.java 112 private void doHasAllFauxveridesTest(Class<?> descendant, Class<?> ancestor) {
113 Set<MethodSignature> required = getAllRequiredToFauxveride(ancestor);
114 Set<MethodSignature> found = getAllFauxveridden(descendant, ancestor);
117 assertEquals("Must hide public static methods from ancestor classes",
121 private static Set<MethodSignature> getAllRequiredToFauxveride(Class<?> ancestor) {
122 return getPublicStaticMethodsBetween(ancestor, Object.class);
126 Class<?> descendant, Class<?> ancestor) {
127 return getPublicStaticMethodsBetween(descendant, ancestor);
131 Class<?> descendant, Class<?> ancestor) {
133 for (Class<?> clazz : getClassesBetween(descendant, ancestor)) {
    [all...]
  /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)
278 public SsaBasicBlock ancestor; field in class:Dominators.DFSInfo
    [all...]
  /external/dexmaker/src/dx/java/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)
278 public SsaBasicBlock ancestor; field in class:Dominators.DFSInfo
    [all...]
  /frameworks/base/libs/androidfw/
LocaleData.cpp 68 // This also outputs the index of the last written ancestor in the stop_list
79 uint32_t ancestor = packed_locale; local
82 if (out != nullptr) out[count] = ancestor;
85 if (stop_list[i] == ancestor) {
90 ancestor = findParent(ancestor, script);
91 } while (ancestor != PACKED_ROOT);
106 // ancestor, so the distance in the parent tree is the sum of the distance
107 // of 'supported' to the lowest common ancestor (number of ancestors
109 // lowest common ancestor (the index of the ancestor in request_ancestors)
    [all...]
  /external/pdfium/tools/drmemory/scripts/
path_utils.py 21 def FindAncestor(start_dir, ancestor):
22 """Finds an ancestor dir in a path.
31 if tail == ancestor:
36 raise PathNotFound("Unable to find ancestor %s in %s" % (ancestor, start_dir))
  /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/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/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/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
  /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...]
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/
FadeAndShortSlide.java 344 private int getRelativeLeft(View child, View ancestor) {
348 if (parent == ancestor) {
357 private int getRelativeRight(View child, View ancestor) {
361 if (parent == ancestor) {
370 private int getRelativeTop(View child, View ancestor) {
374 if (parent == ancestor) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/src/
nestegg.c 283 struct list_node * ancestor; member in struct:saved_state
303 struct list_node * ancestor; member in struct:nestegg
787 ne_is_ancestor_element(uint64_t id, struct list_node * ancestor)
791 for (; ancestor; ancestor = ancestor->previous)
792 for (element = ancestor->node; element->id; ++element)
812 ne_ctx_push(nestegg * ctx, struct ebml_element_desc * ancestor, void * data)
817 item->previous = ctx->ancestor;
818 item->node = ancestor;
    [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/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();
  /cts/tests/tests/widget/src/android/widget/cts/util/
TestUtils.java 58 // the ancestor hierarchy of our view and collect a list of all ancestors with non-null
74 // We're done traversing the ancestor chain
86 // the topmost ancestor) and draw their backgrounds into our combined bitmap. At each step
88 // currently drawn ancestor.
91 View ancestor = ancestorsWithBackgrounds.get(i); local
95 ancestor.getBackground().draw(canvas);
  /external/objenesis/tck/src/org/objenesis/tck/candidates/
candidates.properties 65 org.objenesis.tck.candidates.SerializableWithAncestorThrowingException = Serializable with ancestor throwing exception
  /frameworks/support/v7/appcompat/tests/src/android/support/v7/testutils/
TestUtils.java 66 // the ancestor hierarchy of our view and collect a list of all ancestors with non-null
82 // We're done traversing the ancestor chain
94 // the topmost ancestor) and draw their backgrounds into our combined bitmap. At each step
96 // currently drawn ancestor.
99 View ancestor = ancestorsWithBackgrounds.get(i); local
103 ancestor.getBackground().draw(canvas);
  /prebuilts/tools/common/m2/repository/org/abego/treelayout/org.abego.treelayout.core/1.0.1/
org.abego.treelayout.core-1.0.1.jar 
  /prebuilts/tools/common/offline-m2/org/abego/treelayout/org.abego.treelayout.core/1.0.1/
org.abego.treelayout.core-1.0.1.jar 
  /external/autotest/utils/
run_pylint.py 179 any(ancestor.name == 'base_test' for ancestor in
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/fixtures/
open_element_stack_test.js 263 _test['Get common ancestor'] = function () {
266 ancestor = treeAdapter.createElement('#ancestor', '', []);
278 stack.push(ancestor);
280 assert.strictEqual(stack.getCommonAncestor(element), ancestor);
  /packages/apps/Launcher3/src/com/android/launcher3/
Utilities.java 370 * @param ancestor The root view to make the coordinates relative to.
379 View descendant, View ancestor, int[] coord, boolean includeRootScroll) {
383 while(v != ancestor && v != null) {
424 View ancestor = ancestorChain.get(i); local
427 pt[0] += ancestor.getScrollX();
428 pt[1] += ancestor.getScrollY();
    [all...]

Completed in 689 milliseconds

1 2 3 4 5 6 7 8 91011>>