/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_ssa.cpp | 59 #define ANCESTOR(i) (data[(i) + 1 * count]) 69 INFO("ANCESTOR(%i) = %i\n", i, ANCESTOR(i)); 88 SEMI(i) = ANCESTOR(i) = -1; 111 if (ANCESTOR(ANCESTOR(v)) >= 0) { 112 squash(ANCESTOR(v)); 114 if (SEMI(LABEL(ANCESTOR(v))) < SEMI(LABEL(v))) 115 LABEL(v) = LABEL(ANCESTOR(v)); 116 ANCESTOR(v) = ANCESTOR(ANCESTOR(v)) [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/chromium-trace/catapult/dashboard/docs/ |
code-snippets.md | 82 ancestor = utils.TestKey('ChromiumPerf/linux-release/sunspider') 83 keys = graph_data.Test.query(ancestor=ancestor).fetch(keys_only=True) 110 test_query = graph_data.Test.query(ancestor=ancestor_key) 145 test_keys = graph_data.Test.query(ancestor=ancestor_key).fetch(keys_only=True)
|
/external/chromium-trace/catapult/tracing/tracing/model/ |
event_container.html | 49 * of timestamps for all ancestor events. 59 * will describe the range of timestamps of all ancestor events. 68 * Shifts the timestamps for ancestor events by 'amount' milliseconds.
|
/external/chromium-trace/catapult/tracing/tracing/ui/ |
view_specific_brushing_state.html | 27 Under the hood, the state element searches the DOM tree for an ancestor element 55 * If no state has been persisted yet or there is no ancestor element with 76 * If there is no ancestor element with a brushingStateController field,
|
brushing_state_controller_test.html | 162 var ancestor = document.createElement('div'); 163 ancestor.brushingStateController = controller; 165 var element = addChildDiv(addChildDiv(addChildDiv(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...] |
/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/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...] |
/art/test/800-smali/smali/ |
b_22411633_2.smali | 18 # that only have Object as a common ancestor.
|
/external/chromium-trace/catapult/third_party/polymer/components/iron-dropdown/test/ |
iron-dropdown-scroll-manager.html | 40 var ancestor; 48 ancestor = document.body; 75 test('recognizes ancestor as locked', function() { 76 expect(Polymer.IronDropdownScrollManager.elementIsScrollLocked(ancestor))
|
/external/chromium-trace/catapult/third_party/webapp2/docs/tutorials/gettingstarted/ |
usingdatastore.rst | 38 consistent, results. Queries over a single entity group are called ancestor 39 queries. Ancestor queries use the parent key (instead of a specific entity's 43 use ancestor queries on those entity groups to return strongly consistent 81 # Ancestor Queries, as shown here, are strongly consistent with the High 83 # consistent. If we omitted the ancestor from this query there would be a 88 "WHERE ANCESTOR IS :1 " 204 consistency purposes. See `Entity Groups and Ancestor Paths <http://code.google.com/appengine/docs/python/datastore/entities.html#Entity_Groups_and_Ancestor_Paths>`_ 205 for more information. Objects that share a common `ancestor <http://code.google.com/appengine/docs/python/datastore/queryclass.html#Query_ancestor>`_ 243 "WHERE ANCESTOR IS :1 " 269 "WHERE ANCESTOR IS :1 [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
Keywords.java | 44 /** ancestor axes string. */ 45 private static final String FROM_ANCESTORS_STRING = "ancestor"; 47 /** ancestor-or-self axes string. */ 49 "ancestor-or-self"; 60 /** ancestor axes string. */
|
/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();
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
DOM2DTMdefaultNamespaceDeclarationNode.java | 350 NodeImpl ancestor = (NodeImpl)getElementAncestor(this); 351 if (ancestor != null) { 352 return ancestor.lookupNamespaceURI(specifiedPrefix); 380 NodeImpl ancestor = (NodeImpl)getElementAncestor(this); 381 if (ancestor != null) { 382 return ancestor.lookupNamespaceURI(specifiedPrefix); 428 NodeImpl ancestor = (NodeImpl)getElementAncestor(this); 429 if (ancestor != null) { 430 return ancestor.isDefaultNamespace(namespaceURI); 452 NodeImpl ancestor = (NodeImpl)getElementAncestor(this) [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/eigen/Eigen/src/Core/ |
CwiseBinaryOp.h | 42 typedef typename remove_all<Lhs>::type Ancestor; 43 typedef typename traits<Ancestor>::XprKind XprKind; 45 RowsAtCompileTime = traits<Ancestor>::RowsAtCompileTime, 46 ColsAtCompileTime = traits<Ancestor>::ColsAtCompileTime, 47 MaxRowsAtCompileTime = traits<Ancestor>::MaxRowsAtCompileTime, 48 MaxColsAtCompileTime = traits<Ancestor>::MaxColsAtCompileTime
|
/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);
|
/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) {
|
/libcore/ojluni/src/main/java/java/util/prefs/ |
Preferences.java | 69 * ancestor including itself. 82 * <p>A node <i>n</i>'s path name relative to its ancestor <i>a</i> 453 * @throws IllegalStateException if this node (or an ancestor) has been 474 * @throws IllegalStateException if this node (or an ancestor) has been 492 * @throws IllegalStateException if this node (or an ancestor) has been 510 * @throws IllegalStateException if this node (or an ancestor) has been 528 * @throws IllegalStateException if this node (or an ancestor) has been 558 * @throws IllegalStateException if this node (or an ancestor) has been 578 * @throws IllegalStateException if this node (or an ancestor) has been 608 * @throws IllegalStateException if this node (or an ancestor) has bee [all...] |
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udir/ |
p1.cpp | 15 // Test that names appear as if in deepest common ancestor.
|
/external/droiddriver/src/io/appium/droiddriver/finders/ |
ChainFinder.java | 29 * Note typically first Finder finds the ancestor, then second Finder finds the
|
/external/chromium-trace/catapult/third_party/polymer/components/iron-resizable-behavior/ |
iron-resizable-behavior.html | 35 * The closest ancestor element that implements `IronResizableBehavior`. 105 * Used to assign the closest resizable ancestor to this resizable 106 * if the ancestor detects a request for notifications.
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
CheckObjCInstMethSignature.cpp | 29 static bool AreTypesCompatible(QualType Derived, QualType Ancestor, 34 if (Derived->isAnyPointerType() && Ancestor->isAnyPointerType()) 37 return C.typesAreCompatible(Derived, Ancestor);
|
/external/libxml2/result/XPath/tests/ |
simplebase | 89 Expression: /child::EXAMPLE/attribute::prop1/ancestor-or-self::node() 105 Expression: /child::EXAMPLE/attribute::prop1/ancestor-or-self::* 124 Expression: /descendant::p/ancestor::chapter
|