/frameworks/native/include/media/openmax/ |
OMX_IndexExt.h | 51 OMX_IndexConfigCallbackRequest, /**< reference: OMX_CONFIG_CALLBACKREQUESTTYPE */ 52 OMX_IndexConfigCommitMode, /**< reference: OMX_CONFIG_COMMITMODETYPE */ 53 OMX_IndexConfigCommit, /**< reference: OMX_CONFIG_COMMITTYPE */ 66 OMX_IndexParamNalStreamFormatSupported, /**< reference: OMX_NALSTREAMFORMATTYPE */ 67 OMX_IndexParamNalStreamFormat, /**< reference: OMX_NALSTREAMFORMATTYPE */ 68 OMX_IndexParamNalStreamFormatSelect, /**< reference: OMX_NALSTREAMFORMATTYPE */ 69 OMX_IndexParamVideoVp8, /**< reference: OMX_VIDEO_PARAM_VP8TYPE */ 70 OMX_IndexConfigVideoVp8ReferenceFrame, /**< reference: OMX_VIDEO_VP8REFERENCEFRAMETYPE */ 71 OMX_IndexConfigVideoVp8ReferenceFrameType, /**< reference: OMX_VIDEO_VP8REFERENCEFRAMEINFOTYPE */
|
/prebuilts/tools/common/freemarker/ |
src.zip | |
/external/clang/test/SemaCXX/ |
overloaded-name.cpp | 9 (void)((void)0, ovl); // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}} 11 (void)(b? ovl : &ovl); // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}} 12 (void)(b? ovl<float> : &ovl); // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}} 25 f(text); // expected-error {{reference to non-static member function must be called; did you mean to call it with no arguments?}} 27 f(text); // expected-error {{reference to non-static member function must be called; did you mean to call it with no arguments?}}
|
auto-subst-failure.cpp | 5 auto &b = f(); // expected-error {{cannot form a reference to 'void'}} 9 auto &&e(f()); // expected-error {{cannot form a reference to 'void'}} 13 (void)new auto&(f()); // expected-error {{cannot form a reference to 'void'}}
|
illegal-member-initialization.cpp | 4 A() : value(), cvalue() { } // expected-error {{reference to type 'int' requires an initializer}} 13 X() { } // expected-error {{constructor for 'X' must explicitly initialize the reference member 'value'}} \ 15 // expected-error {{constructor for 'X' must explicitly initialize the reference member 'b'}} \
|
ref-init-ambiguous.cpp | 17 const E2 &e2 = c; // expected-error {{reference initialization of type 'const E2 &' with initializer of type 'C' is ambiguous}} 23 foo(c); // expected-error {{reference initialization of type 'const E2 &' with initializer of type 'C' is ambiguous}} 25 return c; // expected-error {{reference initialization of type 'const E2 &' with initializer of type 'C' is ambiguous}}
|
/external/guava/guava/src/com/google/common/base/ |
FinalizablePhantomReference.java | 23 * Phantom reference with a {@code finalizeReferent()} method which a background thread invokes 27 * <p>Unlike a normal phantom reference, this reference will be cleared automatically. 35 * Constructs a new finalizable phantom reference. 37 * @param referent to phantom reference
|
/frameworks/support/v7/mediarouter/res/values/ |
attrs.xml | 23 <attr name="externalRouteEnabledDrawable" format="reference" /> 29 <attr name="mediaRouteButtonStyle" format="reference" /> 30 <attr name="mediaRouteOffDrawable" format="reference" /> 31 <attr name="mediaRouteConnectingDrawable" format="reference" /> 32 <attr name="mediaRouteOnDrawable" format="reference" />
|
/packages/apps/Calendar/ |
project.properties | 16 android.library.reference.1=../../../frameworks/ex/chips 17 android.library.reference.2=../../../frameworks/opt/calendar 18 android.library.reference.3=../../../frameworks/opt/colorpicker 19 android.library.reference.4=../../../frameworks/opt/datetimepicker 20 android.library.reference.5=../../../frameworks/opt/timezonepicker
|
/cts/tools/signature-tools/src/signature/model/ |
ITypeVariableReference.java | 20 * {@code ITypeVariableReference} models a reference to an 26 * Returns the definition this type variable reference is referencing. 28 * @return the definition this type variable reference is referencing
|
/external/chromium/chrome/browser/ui/gtk/ |
owned_widget_gtk.cc | 21 // widget was created. There should be a floating reference. 24 // Sink the floating reference, we should now own this reference.
|
/external/guava/guava-tests/test/com/google/common/base/ |
FinalizableReferenceQueueTest.java | 43 MockReference reference = new MockReference( local 47 if (reference.finalizeReferentCalled) { 73 * Keeps a weak reference to the underlying reference queue. When this 74 * reference is cleared, we know that the background thread has stopped 75 * and released its strong reference. 96 * If we don't keep a strong reference to the reference object, it won't 99 FinalizableWeakReference<Object> reference; field in class:FinalizableReferenceQueueTest 110 * Queue and clear a reference for good measure. We test later on tha [all...] |
/external/iproute2/doc/ |
Plan | 3 1. User Reference manuals. 4 1.1 IP Command reference (ip-cref.tex, published) 5 1.2 TC Command reference (tc-cref.tex)
|
/external/llvm/test/CodeGen/X86/ |
tailcall-fastisel.ll | 5 define fastcc i8* @"visit_array_aux<`Reference>"(%0 %arg, i32 %arg1) nounwind { 7 %tmp20 = tail call fastcc i8* @"visit_array_aux<`Reference>"(%0 %arg, i32 undef) ; <i8*> [#uses=1] 8 ; CHECK: jmp "_visit_array_aux<`Reference>" ## TAILCALL
|
/libcore/luni/src/main/java/java/lang/ref/ |
FinalizerReference.java | 22 public final class FinalizerReference<T> extends Reference<T> { 54 FinalizerReference<?> reference = new FinalizerReference<Object>(referent, queue); local 56 reference.prev = null; 57 reference.next = head; 59 head.prev = reference; 61 head = reference; 65 public static void remove(FinalizerReference<?> reference) { 67 FinalizerReference<?> next = reference.next; 68 FinalizerReference<?> prev = reference.prev; 69 reference.next = null [all...] |
PhantomReference.java | 36 * Implements a phantom reference, which is the weakest of the three types of 40 * reference queue of the phantom reference must explicitly be processed by some 41 * application code. As a consequence, a phantom reference that is not 42 * registered with any reference queue does not make any sense. 48 public class PhantomReference<T> extends Reference<T> { 51 * Constructs a new phantom reference and registers it with the given 52 * reference queue. The reference queue may be {@code null}, but this case 53 * does not make any sense, since the reference will never be enqueued, an [all...] |
WeakReference.java | 36 * Implements a weak reference, which is the middle of the three types of 64 * with their corresponding reference queues, if any. 72 * reference: 86 public class WeakReference<T> extends Reference<T> { 89 * Constructs a new weak reference to the given referent. The newly created 90 * reference is not registered with any reference queue. 99 * Constructs a new weak reference to the given referent. The newly created 100 * reference is registered with the given reference queue [all...] |
Reference.java | 36 * Provides an abstract class which describes behavior common to all reference 38 * {@code Reference} in addition to the ones provided by this package. It is 40 * with the system's garbage collector. The existing, specialized reference 49 * <p>In order to use reference objects properly it is important to understand 63 * instance of a {@code java.lang.ref.Reference} subclass. 98 public abstract class Reference<T> { 101 * The object to which this reference refers. 108 * If non-null, the queue on which this reference will be enqueued 118 * and be a java.lang.ref.Reference. 121 volatile Reference queueNext [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/ |
input_iterator.h | 15 typedef typename std::iterator_traits<It>::reference reference; typedef in class:input_iterator 20 reference operator*() const {return *it_;}
|
/external/chromium/chrome/browser/prefs/ |
pref_value_map_unittest.cc | 50 PrefValueMap reference; local 51 EXPECT_TRUE(reference.SetValue("b", Value::CreateStringValue("test"))); 52 EXPECT_TRUE(reference.SetValue("c", Value::CreateStringValue("test"))); 53 EXPECT_TRUE(reference.SetValue("e", Value::CreateStringValue("test"))); 59 reference.GetDifferingKeys(&check, &differing_paths); 69 reference.GetDifferingKeys(&check, &differing_paths);
|
/external/clang/test/CodeGenObjC/ |
protocols-lazy.m | 11 // Definition triggered by protocol reference. 17 // Forward definition triggered by protocol reference. 23 // Definition triggered by class reference. 30 // Definition following forward reference. 35 // reference, which has to be 39 // Protocol reference following definition.
|
/external/skia/tests/ |
SortTest.cpp | 25 const int array[], const int reference[], int n) { 27 if (array[j] != reference[j]) { 29 str.printf("%sSort [%d] failed %d %d", label, n, array[j], reference[j]); 38 /** The reference sort of the random numbers. */ 41 then this array is compared against the reference sort. */ 49 // Use qsort as the reference sort.
|
/development/samples/SpellChecker/HelloSpellChecker/ |
_index.html | 2 href="../../../../reference/android/view/textservice/TextServicesManager.html">TextServicesManager</a></code> 3 and <code><a href="../../../../reference/android/view/textservice/SpellCheckerSession.html">SpellCheckerSession</a></code>
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
XMLStringFactoryImpl.java | 41 * @return A never-null static reference to a String factory. 52 * @param string Java String reference, which must be non-null. 54 * @return An XMLString object that wraps the String reference. 65 * @param fsb FastStringBuffer reference, which must be non-null. 69 * @return An XMLString object that wraps the FastStringBuffer reference. 80 * @param string FastStringBuffer reference, which must be non-null. 84 * @return An XMLString object that wraps the FastStringBuffer reference. 94 * @return An non-null reference to an XMLString that represents "".
|
/external/clang/test/CXX/class/class.local/ |
p1-0x.cpp | 7 int& x2 = x; // expected-error{{reference to local variable 'x' declared in enclosing function 'f'}} 13 int& x2 = x; // expected-error{{reference to local variable 'x' declared in enclosing lambda expression}}
|