/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
refcount.rs | 3 // Testing reference counting of RS object types
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
refcount.rs | 3 // Testing reference counting of RS object types
|
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/ |
refcount.rs | 3 // Testing reference counting of RS object types
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
broken1-expected-completion20.txt | 2 android:textColorHighlight : Color of the text selection highlight. [color, reference]
|
/external/webkit/Tools/MiniBrowser/mac/ |
MainMenu.xib | 46 <reference key="NSMenu" ref="649796088"/> 65 <reference key="NSMenu" ref="110575045"/> 69 <reference key="NSOnImage" ref="35465992"/> 70 <reference key="NSMixedImage" ref="502551668"/> 73 <reference key="NSMenu" ref="110575045"/> 80 <reference key="NSOnImage" ref="35465992"/> 81 <reference key="NSMixedImage" ref="502551668"/> 84 <reference key="NSMenu" ref="110575045"/> 89 <reference key="NSOnImage" ref="35465992"/> 90 <reference key="NSMixedImage" ref="502551668"/ [all...] |
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicMarkableReference.java | 10 * An {@code AtomicMarkableReference} maintains an object reference 15 * [reference, boolean] pairs. 19 * @param <V> The type of object referred to by this reference 24 final T reference; field in class:AtomicMarkableReference.Pair 26 private Pair(T reference, boolean mark) { 27 this.reference = reference; 30 static <T> Pair<T> of(T reference, boolean mark) { 31 return new Pair<T>(reference, mark); 41 * @param initialRef the initial reference [all...] |
AtomicStampedReference.java | 10 * An {@code AtomicStampedReference} maintains an object reference 15 * [reference, integer] pairs. 19 * @param <V> The type of object referred to by this reference 24 final T reference; field in class:AtomicStampedReference.Pair 26 private Pair(T reference, int stamp) { 27 this.reference = reference; 30 static <T> Pair<T> of(T reference, int stamp) { 31 return new Pair<T>(reference, stamp); 41 * @param initialRef the initial reference [all...] |
/external/clang/test/Parser/ |
cxx0x-rvalue-reference.cpp | 7 int & &&ar = a; // expected-error{{'ar' declared as a reference to a reference}}
|
/external/doclava/res/assets/templates/components/ |
masthead.cs | 4 <?cs if:reference && reference.apilevels ?>
|
/external/markdown/tests/extensions-x-abbr/ |
abbr.html | 1 <p>An <abbr title="Abbreviation">ABBR</abbr>: "<abbr title="Reference">REF</abbr>". 2 ref and REFERENCE should be ignored.</p>
|
abbr.txt | 2 ref and REFERENCE should be ignored. 4 *[REF]: Reference
|
/external/markdown/tests/misc/ |
stronintags.html | 3 <p>reference <strong>[test][]</strong> 4 reference [<strong>test</strong>][]</p
|
/external/skia/include/core/ |
SkWeakRefCnt.h | 17 objects. When an existing strong owner wants to share a reference, it calls 18 ref(). When a strong owner wants to release its reference, it calls 19 unref(). When the shared object's strong reference count goes to zero as 26 reference by calling weak_ref(). A call to weak_ref() must be balanced my a 27 call to weak_unref(). To obtain a strong reference from a weak reference, 29 a strong reference on which unref() must be called. Note that this does not 30 affect the original weak reference, weak_unref() must still be called. When 31 the weak reference count goes to zero, the object is deleted. While the 32 weak reference count is positive and the strong reference count is zero th [all...] |
/frameworks/ex/chips/res/values/ |
attrs.xml | 18 <attr name="invalidChipBackground" format="reference" /> 19 <attr name="chipBackground" format="reference" /> 20 <attr name="chipBackgroundPressed" format="reference" /> 21 <attr name="chipDelete" format="reference" /> 22 <attr name="chipAlternatesLayout" format="reference" /> 23 <attr name="chipPadding" format="reference" /> 24 <attr name="chipHeight" format="reference" /> 25 <attr name="chipFontSize" format="reference" />
|
/packages/apps/Camera/res/values/ |
attrs.xml | 22 <attr name="defaultValue" format="string|reference" /> 23 <attr name="entryValues" format="reference" /> 24 <attr name="entries" format="reference" /> 27 <attr name="icons" format="reference" /> 28 <attr name="modes" format="reference" /> 32 <attr name="singleIcon" format="reference" /> 34 <attr name="largeIcons" format="reference" /> 35 <attr name="images" format="reference" />
|
/packages/apps/LegacyCamera/res/values/ |
attrs.xml | 22 <attr name="defaultValue" format="string|reference" /> 23 <attr name="entryValues" format="reference" /> 24 <attr name="entries" format="reference" /> 27 <attr name="icons" format="reference" /> 28 <attr name="modes" format="reference" /> 32 <attr name="singleIcon" format="reference" /> 34 <attr name="largeIcons" format="reference" /> 35 <attr name="images" format="reference" />
|
/external/clang/test/CXX/expr/expr.post/expr.reinterpret.cast/ |
p1-0x.cpp | 3 // If T is an lvalue reference type or an rvalue reference to function 4 // type, the result is an lvalue; if T is an rvalue reference to 13 int &&ir1 = reinterpret_cast<int &&>(0); // expected-error {{rvalue to reference type}} 14 int &&ir2 = reinterpret_cast<int &&>('a'); // expected-error {{rvalue to reference type}}
|
/packages/apps/Gallery2/res/values/ |
attrs.xml | 19 <attr name="switchStyle" format="reference" /> 29 <attr name="defaultValue" format="string|reference" /> 30 <attr name="entryValues" format="reference" /> 31 <attr name="entries" format="reference" /> 32 <attr name="labelList" format="reference" /> 35 <attr name="icons" format="reference" /> 36 <attr name="modes" format="reference" /> 40 <attr name="singleIcon" format="reference" /> 42 <attr name="largeIcons" format="reference" /> 43 <attr name="images" format="reference" /> [all...] |
/external/chromium/base/ |
atomic_ref_count.h | 5 // This is a low level implementation of atomic semantics for reference 22 // Increment a reference count by "increment", which must exceed 0. 28 // Decrement a reference count by "decrement", which must exceed 0, 30 // Insert barriers to ensure that state written before the reference count 42 // Increment a reference count by 1. 47 // Decrement a reference count by 1 and return whether the result is non-zero. 48 // Insert barriers to ensure that state written before the reference count 54 // Return whether the reference count is one. If the reference count is used 56 // thread owns the reference and no other thread shares it. This call perform [all...] |
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.ref/ |
p5.cpp | 15 member; // expected-note{{reference member 'member' will never be initialized}} 21 & // expected-error {{declared as a reference to a reference}} 43 * // expected-error {{declared as a pointer to a reference}} 51 * // expected-error {{declared as a pointer to a reference}} 56 * // expected-error {{declared as a pointer to a reference}} 61 * // expected-error {{declared as a pointer to a reference}} 65 * // expected-error {{declared as a pointer to a reference}} 134 // The declaration of a reference shall contain an initializer 138 // return type (8.3.5); see 3.1. A reference shall be initialized t [all...] |
/external/qemu/ |
qobject.h | 14 * QObject Reference Counts Terminology 18 * return it as either a weak or a strong reference. If the reference 19 * is strong, you are responsible for calling QDECREF() on the reference 22 * If the reference is weak, the owner of the reference may free it at 23 * any time in the future. Before storing the reference anywhere, you 24 * should call QINCREF() to make the reference strong. 26 * - Transferring ownership: when you transfer ownership of a reference 28 * QDECREF() when the reference is no longer needed. In other words [all...] |
/frameworks/base/docs/html/reference/ |
gcm_lists.js | 2 { id:0, label:"com.google.android.gcm", link:"reference/com/google/android/gcm/package-summary.html", type:"package", deprecated:"false" }, 3 { id:1, label:"com.google.android.gcm.GCMBaseIntentService", link:"reference/com/google/android/gcm/GCMBaseIntentService.html", type:"class", deprecated:"false" }, 4 { id:2, label:"com.google.android.gcm.GCMBroadcastReceiver", link:"reference/com/google/android/gcm/GCMBroadcastReceiver.html", type:"class", deprecated:"false" }, 5 { id:3, label:"com.google.android.gcm.GCMConstants", link:"reference/com/google/android/gcm/GCMConstants.html", type:"class", deprecated:"false" }, 6 { id:4, label:"com.google.android.gcm.GCMRegistrar", link:"reference/com/google/android/gcm/GCMRegistrar.html", type:"class", deprecated:"false" }, 7 { id:5, label:"com.google.android.gcm.server", link:"reference/com/google/android/gcm/server/package-summary.html", type:"package", deprecated:"false" }, 8 { id:6, label:"com.google.android.gcm.server.Constants", link:"reference/com/google/android/gcm/server/Constants.html", type:"class", deprecated:"false" }, 9 { id:7, label:"com.google.android.gcm.server.InvalidRequestException", link:"reference/com/google/android/gcm/server/InvalidRequestException.html", type:"class", deprecated:"false" }, 10 { id:8, label:"com.google.android.gcm.server.Message", link:"reference/com/google/android/gcm/server/Message.html", type:"class", deprecated:"false" }, 11 { id:9, label:"com.google.android.gcm.server.Message.Builder", link:"reference/com/google/android/gcm/server/Message.Builder.html", type:"class", deprecated:"false" } [all...] |
gms_lists.js | 2 { id:0, label:"com.google.android.gms", link:"reference/com/google/android/gms/package-summary.html", type:"package", deprecated:"false" }, 3 { id:1, label:"com.google.android.gms.R", link:"reference/com/google/android/gms/R.html", type:"class", deprecated:"false" }, 4 { id:2, label:"com.google.android.gms.R.attr", link:"reference/com/google/android/gms/R.attr.html", type:"class", deprecated:"false" }, 5 { id:3, label:"com.google.android.gms.R.color", link:"reference/com/google/android/gms/R.color.html", type:"class", deprecated:"false" }, 6 { id:4, label:"com.google.android.gms.R.drawable", link:"reference/com/google/android/gms/R.drawable.html", type:"class", deprecated:"false" }, 7 { id:5, label:"com.google.android.gms.R.id", link:"reference/com/google/android/gms/R.id.html", type:"class", deprecated:"false" }, 8 { id:6, label:"com.google.android.gms.R.string", link:"reference/com/google/android/gms/R.string.html", type:"class", deprecated:"false" }, 9 { id:7, label:"com.google.android.gms.R.styleable", link:"reference/com/google/android/gms/R.styleable.html", type:"class", deprecated:"false" }, 10 { id:8, label:"com.google.android.gms.appstate", link:"reference/com/google/android/gms/appstate/package-summary.html", type:"package", deprecated:"false" }, 11 { id:9, label:"com.google.android.gms.appstate.AppState", link:"reference/com/google/android/gms/appstate/AppState.html", type:"class", deprecated:"false" } [all...] |
/external/clang/test/SemaCXX/ |
warn-dangling-field.cpp | 12 int &x, *y; // expected-note {{reference member declared here}} \ 15 : x(i), // expected-warning {{binding reference member 'x' to stack allocated parameter 'i'}} 17 S(int &i) : x(i), y(&i) {} // no-warning: reference parameter 22 const X &x; // expected-note {{reference member declared here}} 23 S2(int i) : x(i) {} // expected-warning {{binding reference member 'x' to a temporary}} 32 T x; // expected-note {{reference member declared here}} 33 S4(int i) : x(i) {} // expected-warning {{binding reference member 'x' to stack allocated parameter 'i'}}
|
/external/webrtc/src/modules/interface/ |
module.h | 36 // Reference counted version of the module interface. 39 // Increase the reference count by one. 40 // Returns the incremented reference count. 42 // reference counting ADM and Video capture module. 48 // Decrease the reference count by one. 49 // Returns the decreased reference count. 50 // Returns 0 if the last reference was just released. 51 // When the reference count reach 0 the object will self-destruct. 53 // reference counting ADM and Video capture module.
|