HomeSort by relevance Sort by last modified time
    Searched full:reference (Results 1 - 25 of 5589) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_Index.h 63 OMX_IndexParamPriorityMgmt, /**< reference: OMX_PRIORITYMGMTTYPE */
64 OMX_IndexParamAudioInit, /**< reference: OMX_PORT_PARAM_TYPE */
65 OMX_IndexParamImageInit, /**< reference: OMX_PORT_PARAM_TYPE */
66 OMX_IndexParamVideoInit, /**< reference: OMX_PORT_PARAM_TYPE */
67 OMX_IndexParamOtherInit, /**< reference: OMX_PORT_PARAM_TYPE */
68 OMX_IndexParamNumAvailableStreams, /**< reference: OMX_PARAM_U32TYPE */
69 OMX_IndexParamActiveStream, /**< reference: OMX_PARAM_U32TYPE */
70 OMX_IndexParamSuspensionPolicy, /**< reference: OMX_PARAM_SUSPENSIONPOLICYTYPE */
71 OMX_IndexParamComponentSuspended, /**< reference: OMX_PARAM_SUSPENSIONTYPE */
72 OMX_IndexConfigCapturing, /**< reference: OMX_CONFIG_BOOLEANTYPE */
    [all...]
  /external/opencore/extern_libs_v2/khronos/openmax/include/
OMX_Index.h 80 OMX_IndexParamPriorityMgmt, /**< reference: OMX_PRIORITYMGMTTYPE */
81 OMX_IndexParamAudioInit, /**< reference: OMX_PORT_PARAM_TYPE */
82 OMX_IndexParamImageInit, /**< reference: OMX_PORT_PARAM_TYPE */
83 OMX_IndexParamVideoInit, /**< reference: OMX_PORT_PARAM_TYPE */
84 OMX_IndexParamOtherInit, /**< reference: OMX_PORT_PARAM_TYPE */
85 OMX_IndexParamNumAvailableStreams, /**< reference: OMX_PARAM_U32TYPE */
86 OMX_IndexParamActiveStream, /**< reference: OMX_PARAM_U32TYPE */
87 OMX_IndexParamSuspensionPolicy, /**< reference: OMX_PARAM_SUSPENSIONPOLICYTYPE */
88 OMX_IndexParamComponentSuspended, /**< reference: OMX_PARAM_SUSPENSIONTYPE */
89 OMX_IndexConfigCapturing, /**< reference: OMX_CONFIG_BOOLEANTYPE */
    [all...]
  /development/ide/xcode/SampleCode/English.lproj/main.nib/
objects.xib 54 <reference idRef="148"/>
104 <reference idRef="193"/>
133 <reference idRef="146"/>
134 <reference idRef="142"/>
135 <reference idRef="143"/>
140 <reference name="rootControl" idRef="167"/>
144 <reference idRef="199"/>
150 <reference idRef="144"/>
159 <reference idRef="139"/>
160 <reference idRef="134"/
    [all...]
  /development/ide/xcode/animatorTest/English.lproj/main.nib/
objects.xib 174 <reference idRef="127"/>
175 <reference idRef="128"/>
176 <reference idRef="130"/>
177 <reference idRef="131"/>
178 <reference idRef="132"/>
179 <reference idRef="133"/>
180 <reference idRef="134"/>
181 <reference idRef="135"/>
182 <reference idRef="136"/>
183 <reference idRef="137"/
    [all...]
  /external/skia/xcode/SampleCode/English.lproj/main.nib/
objects.xib 54 <reference idRef="148"/>
104 <reference idRef="193"/>
133 <reference idRef="146"/>
134 <reference idRef="142"/>
135 <reference idRef="143"/>
140 <reference name="rootControl" idRef="167"/>
144 <reference idRef="199"/>
150 <reference idRef="144"/>
159 <reference idRef="139"/>
160 <reference idRef="134"/
    [all...]
  /external/skia/xcode/Simple/English.lproj/main.nib/
objects.xib 54 <reference idRef="148"/>
104 <reference idRef="193"/>
133 <reference idRef="146"/>
134 <reference idRef="142"/>
135 <reference idRef="143"/>
140 <reference name="rootControl" idRef="167"/>
144 <reference idRef="199"/>
150 <reference idRef="144"/>
159 <reference idRef="139"/>
160 <reference idRef="134"/
    [all...]
  /dalvik/libcore/luni/src/main/java/java/lang/ref/
ReferenceQueue.java 25 * The {@code ReferenceQueue} is the container on which reference objects are
33 private Reference<? extends T> head;
43 * Returns the next available reference from the queue, removing it in the
44 * process. Does not wait for a reference to become available.
46 * @return the next available reference, or {@code null} if no reference is
50 public synchronized Reference<? extends T> poll() {
55 Reference<? extends T> ret;
71 * Returns the next available reference from the queue, removing it in the
72 * process. Waits indefinitely for a reference to become available
    [all...]
  /frameworks/base/docs/html/
sitemap.txt 5 http://developer.android.com/reference/packages.html
172 http://developer.android.com/reference/classes.html
173 http://developer.android.com/reference/android/package-summary.html
174 http://developer.android.com/reference/android/accessibilityservice/package-summary.html
175 http://developer.android.com/reference/android/accounts/package-summary.html
176 http://developer.android.com/reference/android/app/package-summary.html
177 http://developer.android.com/reference/android/appwidget/package-summary.html
178 http://developer.android.com/reference/android/bluetooth/package-summary.html
179 http://developer.android.com/reference/android/content/package-summary.html
180 http://developer.android.com/reference/android/content/pm/package-summary.htm
    [all...]
  /dalvik/libcore/concurrent/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 private final T reference; field in class:AtomicMarkableReference.ReferenceBooleanPair
27 reference = r; bit = i;
37 * @param initialRef the initial reference
45 * Returns the current value of the reference.
47 * @return the current value of the reference
50 return atomicRef.get().reference;
63 * Returns the current values of both the reference and the mark
    [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 private final T reference; field in class:AtomicStampedReference.ReferenceIntegerPair
27 reference = r; integer = i;
37 * @param initialRef the initial reference
46 * Returns the current value of the reference.
48 * @return the current value of the reference
51 return atomicRef.get().reference;
64 * Returns the current values of both the reference and the stamp
    [all...]
  /external/bluetooth/bluez/doc/
bluez-docs.xml 8 <title>BlueZ Reference Manual</title>
50 <reference id="manager">
55 </reference>
57 <reference id="adapter">
62 </reference>
64 <reference id="device">
69 </reference>
71 <reference id="agent">
76 </reference>
78 <reference id="reference"
    [all...]
  /external/webkit/WebKit/mac/Panels/English.lproj/WebAuthenticationPanel.nib/
designable.nib 39 <reference key="NSNextResponder"/>
44 <reference key="NSNextResponder" ref="327235052"/>
47 <reference key="NSSuperview" ref="327235052"/>
60 <reference key="NSControlView" ref="705333610"/>
82 <reference key="NSNextResponder" ref="327235052"/>
85 <reference key="NSSuperview" ref="327235052"/>
98 <reference key="NSControlView" ref="199018347"/>
99 <reference key="NSBackgroundColor" ref="475108766"/>
100 <reference key="NSTextColor" ref="644083014"/>
104 <reference key="NSNextResponder" ref="327235052"/
    [all...]
  /cts/tools/signature-tools/src/signature/model/
IClassReference.java 20 * {@code IClassReference} models a reference to an {@link IClassDefinition}. If
22 * {@link ITypeVariableDefinition}s, this reference can be seen as a raw type.
27 * Returns the definition this class reference is referencing.
29 * @return the definition this class reference is referencing
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
  /cts/tools/signature-tools/templates/
ClassReferenceLink.st 1 $Link(url={http://code.google.com/android/reference/$it.packageFragments; separator="/"$/$it.name$.html}, name={<tt>$it.name$</tt>})$
PackageAddedLink.st 1 $Link(url={http://code.google.com/android/reference/$it.packageFragments; separator="/"$/package-summary.html}, name={<tt>$it.name$</tt>})$
  /external/guava/src/com/google/common/base/
FinalizablePhantomReference.java 22 * Phantom reference with a {@code finalizeReferent()} method which a
27 * <p>Unlike a normal phantom reference, this reference will be cleared
37 * Constructs a new finalizable phantom reference.
39 * @param referent to phantom reference
  /packages/apps/Camera/res/values/
attrs.xml 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="largeIcons" format="reference" />
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/ref/
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
45 public abstract class Reference<T> {
48 * The object to which this reference refers.
55 * If non-null, the queue on which this reference will be enqueued
66 * and be a java.lang.ref.Reference.
69 volatile Reference queueNext;
82 Reference() {
87 * Makes the referent {@code null}. This does not force the reference
    [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.
50 public class PhantomReference<T> extends Reference<T> {
53 * Constructs a new phantom reference and registers it with the given
54 * reference queue. The reference queue may be {@code null}, but this case
55 * 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:
88 public class WeakReference<T> extends Reference<T> {
91 * Constructs a new weak reference to the given referent. The newly created
92 * reference is not registered with any reference queue.
104 * Constructs a new weak reference to the given referent. The newly created
105 * reference is registered with the given reference queue
    [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)
  /dalvik/libcore/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/skia/include/core/
SkRefCnt.h 25 objects. When a new owner wants a reference, it calls ref(). When an owner
26 wants to release its reference, it calls unref(). When the shared object's
27 reference count goes to zero as the result of an unref() call, its (virtual)
34 /** Default construct, initializing the reference count to 1.
38 /** Destruct, asserting that the reference count is 1.
42 /** Return the reference count.
46 /** Increment the reference count. Must be balanced by a call to unref().
53 /** Decrement the reference count. If the reference count is 1 before the
107 unref() on it, set its reference to null, and return tru
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
IdItem.java 22 * Representation of a reference to an item inside a Dalvik file.
27 * the reference
35 * class of the reference
54 * reference.

Completed in 350 milliseconds

1 2 3 4 5 6 7 8 91011>>