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

1 2 3 4 5 6 7 8 91011

  /development/samples/TicTacToeMain/
default.properties 26 android.library.reference.1=../TicTacToeLib/
  /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 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...]
  /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...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
BasicPoolEntry.java 49 * A weak reference to <code>this</code> used to detect GC of entries.
53 private final BasicPoolEntryRef reference; field in class:BasicPoolEntry
60 * @param queue the reference queue for tracking GC of this entry,
70 this.reference = new BasicPoolEntryRef(this, queue);
82 return this.reference;
  /external/webkit/WebCore/bindings/scripts/
InFilesParser.pm 65 my $reference = { };
71 bless($reference, $object);
72 return $reference;
  /libcore/luni/src/main/java/java/lang/
ThreadLocal.java 25 import java.lang.ref.Reference;
64 if (this.reference == table[index]) {
130 /** Weak reference to this thread local instance. */
131 private final Reference<ThreadLocal<T>> reference field in class:ThreadLocal
221 Reference<InheritableThreadLocal<?>> reference local
222 = (Reference<InheritableThreadLocal<?>>) k;
224 InheritableThreadLocal key = reference.get();
285 Reference<ThreadLocal<?>> referenc local
351 Reference<ThreadLocal<?>> reference local
459 Object reference = table[index]; local
514 Object reference = table[index]; local
    [all...]
  /external/bluetooth/glib/docs/
Makefile.am 4 SUBDIRS = reference
  /external/astl/tests/
test_iterator.cpp 43 typedef int& reference; typedef in struct:android::Input
51 typedef int& reference; typedef in struct:android::Forward
59 typedef int& reference; typedef in struct:android::Bidirectional
67 typedef int& reference; typedef in struct:android::Random
  /external/apache-http/src/org/apache/http/client/utils/
URIUtils.java 164 * Resolves a URI reference against a base URI. Work-around for bug in
168 * @param reference the URI reference
171 public static URI resolve(final URI baseURI, final String reference) {
172 return URIUtils.resolve(baseURI, URI.create(reference));
176 * Resolves a URI reference against a base URI. Work-around for bug in
180 * @param reference the URI reference
183 public static URI resolve(final URI baseURI, URI reference){
187 if (reference == null)
    [all...]
  /external/webkit/WebCore/platform/cf/
BinaryPropertyList.cpp 467 // As each object is written, the object reference is put in the aggregate buffer. Then,
532 ObjectReference reference = m_plan.booleanTrueObjectReference(); local
533 if (m_currentObjectReference != reference)
534 ASSERT(reference < m_currentObjectReference);
539 addAggregateObjectReference(reference);
544 ObjectReference reference = m_plan.integerObjectReference(integer);
545 if (m_currentObjectReference != reference)
546 ASSERT(reference < m_currentObjectReference);
549 return reference;
559 ObjectReference reference = m_plan.stringObjectReference(string)
775 ObjectReference reference = m_currentObjectReference++; local
    [all...]
  /external/guava/src/com/google/common/base/
Preconditions.java 173 * Ensures that an object reference passed as a parameter to the calling
176 * @param reference an object reference
177 * @return the non-null reference that was validated
178 * @throws NullPointerException if {@code reference} is null
180 public static <T> T checkNotNull(T reference) {
181 if (reference == null) {
184 return reference;
188 * Ensures that an object reference passed as a parameter to the calling
191 * @param reference an object referenc
    [all...]
  /hardware/ril/reference-cdma-sms/
Android.mk 7 reference-cdma-sms.c
  /external/guava/src/com/google/common/base/internal/
Finalizer.java 20 import java.lang.ref.Reference;
38 * Google Collections, this thread would keep an indirect strong reference
63 * @param frq reference to instance of FinalizableReferenceQueue that started
112 + " by reference finalizer thread.", t);
134 * Cleans up a single reference. Catches and logs all throwables.
136 private void cleanUp(Reference<?> reference) throws ShutDown {
143 reference.clear();
145 if (reference == frqReference) {
147 * The client no longer has a reference to th
    [all...]
  /external/webkit/WebCore/wml/
WMLVariables.cpp 92 // Find beginning of variable reference
165 String substituteVariableReferences(const String& reference, Document* document, WMLVariableEscapingMode escapeMode)
169 if (reference.isEmpty())
170 return reference;
174 return reference;
177 String remainingInput = reference;
190 // Consume all characters until the variable reference beginning
278 return reference;
  /hardware/ril/reference-ril/
Android.mk 9 reference-ril.c \
46 LOCAL_MODULE:= reference-ril
  /external/bluetooth/glib/
sanity_check 38 wc -l glib-$VERSION/docs/reference/*/html/*.html | grep total
  /external/guava/src/com/google/common/collect/
Platform.java 93 * Returns a new array of the given length with the same type as a reference
96 * @param reference any array of the desired type
99 static <T> T[] newArray(T[] reference, int length) {
100 Class<?> type = reference.getClass().getComponentType();
103 // result.getClass() == reference.getClass().getComponentType()
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
HttpRetryExceptionTest.java 36 public void assertDeserialized(Serializable reference, Serializable test) {
38 HttpRetryException ref = (HttpRetryException) reference;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/configurations/
DockModeQualifier.java 91 public boolean isBetterMatchThan(ResourceQualifier compareTo, ResourceQualifier reference) {
97 DockModeQualifier referenceQualifier = (DockModeQualifier)reference;
  /external/astl/include/
iterator 57 typedef _Reference reference;
69 typedef typename _Iterator::reference reference;
81 typedef _T& reference;
91 typedef const _T& reference;
107 typedef typename iterator_traits<_Iterator>::reference reference;
119 reference operator*() const { return *mCurrent; }
139 reference operator[](const difference_type& n) const {
  /external/stlport/stlport/stl/
_stack.h 68 typedef typename _Sequence::reference reference; typedef in class:stack
84 reference top() { return c.back(); }
  /ndk/sources/android/stlport/stlport/stl/
_stack.h 68 typedef typename _Sequence::reference reference; typedef in class:stack
84 reference top() { return c.back(); }
  /external/webkit/WebCore/platform/graphics/win/
WKCACFLayer.cpp 201 // Our superlayer should be holding a reference to us, so there should be no way for us to be destroyed while we still have a superlayer.
307 void WKCACFLayer::insertSublayerAboveLayer(PassRefPtr<WKCACFLayer> sublayer, const WKCACFLayer* reference)
309 if (!reference) {
314 int referenceIndex = indexOfSublayer(reference);
323 void WKCACFLayer::insertSublayerBelowLayer(PassRefPtr<WKCACFLayer> sublayer, const WKCACFLayer* reference)
325 if (!reference) {
330 int referenceIndex = indexOfSublayer(reference);
339 void WKCACFLayer::replaceSublayer(WKCACFLayer* reference, PassRefPtr<WKCACFLayer> newLayer)
341 ASSERT_ARG(reference, reference);
    [all...]
  /dalvik/vm/mterp/x86-atom/
OP_CONST_STRING.S 19 * Code: Move a string reference to a register. Uses no substitutions.
37 je .L${opcode}_resolve # resolve string reference
57 call dvmResolveString # resolve string reference

Completed in 348 milliseconds

1 2 3 4 5 6 7 8 91011