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

1 2 3 4 5 6

  /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 329 @Nullable K key, List<V> list, @Nullable WrappedCollection ancestor) {
331 ? new RandomAccessWrappedList(key, list, ancestor)
332 : new WrappedList(key, list, ancestor);
340 * <p>Full collections, identified by a null ancestor field, contain all
347 * given key. Its ancestor field points to the full wrapped collection with
355 final WrappedCollection ancestor; field in class:AbstractMapBasedMultimap.WrappedCollection
359 @Nullable WrappedCollection ancestor) {
362 this.ancestor = ancestor;
364 = (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...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
Utilities.java 98 View ancestor = ancestorChain.get(i); local
101 pt[0] += ancestor.getScrollX();
102 pt[1] += ancestor.getScrollY();
  /external/robolectric/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)
278 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/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...]
  /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...]
  /external/libxml2/include/libxml/
xpath.h 384 xmlNodePtr ancestor; /* used for walking preceding axis */ member in struct:_xmlXPathParserContext
  /packages/apps/Launcher3/src/com/android/launcher3/
Utilities.java 311 View ancestor = ancestorChain.get(i); local
314 pt[0] += ancestor.getScrollX();
315 pt[1] += ancestor.getScrollY();
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LoggerTest.java 2768 Logger ancestor = new MockParentLogger("ancestorLogger", local
2889 Logger ancestor = new MockLogger("ancestorLogger", local
2961 Logger ancestor = new MockLogger("ancestorLogger", local
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
TestUtil.java 4034 File ancestor = new File("."); local
    [all...]
  /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...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/shared/maven-dependency-tree/1.2/
maven-dependency-tree-1.2.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar 
org.eclipse.help.base_3.5.2.v201011171123.jar 
org.eclipse.help_3.5.0.v20100524.jar 
  /libcore/benchmarks/libs/
caliper.jar 
  /prebuilts/misc/common/power-helper/
PowerTestHelper.jar 
  /prebuilts/misc/common/ub-uiautomator/
ub-uiautomator.jar 
  /external/vogar/lib/
guava.jar 

Completed in 937 milliseconds

1 2 3 4 5 6