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

1 2 3 45 6 7 8 91011>>

  /external/e2fsprogs/tests/f_orphan/
expect.2 4 Pass 4: Checking reference counts
  /external/e2fsprogs/tests/f_orphan_dotdot_ft/
expect.2 4 Pass 4: Checking reference counts
  /external/e2fsprogs/tests/f_overfsblks/
expect.2 4 Pass 4: Checking reference counts
  /external/e2fsprogs/tests/f_recnect_bad/
expect.2 4 Pass 4: Checking reference counts
  /external/e2fsprogs/tests/f_reconnect/
expect.2 4 Pass 4: Checking reference counts
  /external/e2fsprogs/tests/f_salvage_dir/
expect.2 4 Pass 4: Checking reference counts
  /external/e2fsprogs/tests/f_selinux/
expect.1 4 Pass 4: Checking reference counts
expect.2 4 Pass 4: Checking reference counts
  /external/e2fsprogs/tests/f_special_ea/
expect.1 6 Pass 4: Checking reference counts
  /external/e2fsprogs/tests/f_summary_counts/
expect.2 4 Pass 4: Checking reference counts
  /external/e2fsprogs/tests/f_valid_ea_in_inode/
expect.1 4 Pass 4: Checking reference counts
  /external/e2fsprogs/tests/f_zero_group/
expect.2 4 Pass 4: Checking reference counts
  /external/e2fsprogs/tests/f_zero_inode_size/
expect.2 4 Pass 4: Checking reference counts
  /external/e2fsprogs/tests/f_zero_super/
expect.2 4 Pass 4: Checking reference counts
  /dalvik/docs/opcodes/
opcode-1f-check-cast.html 17 Throw if the reference in the given register cannot be cast to the indicated
18 type. The type must be a reference type (not a primitive type).
35 <td><code>A:</code> reference-bearing register (8 bits)<br/>
48 Register vA must contain a reference value.
54 Type pool entry B must contain a valid type descriptor for a reference type.
62 An attempt is made to get a reference to the class C the name of which is
71 The run-time type of the object reference vA is compared against C.
opcode-20-instance-of.html 17 Store in the given destination register 1 if the indicated reference is an
18 instance of the given type, or 0 if not. The type must be a reference type (not
37 <code>B:</code> reference-bearing register (4 bits)<br/>
50 Register vB must contain a reference value.
57 reference type.
65 An attempt is made to get a reference to the class K the name of which is
74 The run-time type of the object reference vB is compared against K. The
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
XMLStringFactory.java 33 * @param string Java String reference, which must be non-null.
35 * @return An XMLString object that wraps the String reference.
43 * @param string FastStringBuffer reference, which must be non-null.
47 * @return An XMLString object that wraps the FastStringBuffer reference.
56 * @param string FastStringBuffer reference, which must be non-null.
60 * @return An XMLString object that wraps the FastStringBuffer reference.
68 * @return An non-null reference to an XMLString that represents "".
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
ReferenceAttributeDescriptor.java 30 * Describes an XML attribute displayed containing a value or a reference to a resource.
35 /** The {@link ResourceType} that this reference attribute can accept. It can be null,
36 * in which case any reference type can be used. */
40 * Creates a reference attributes that can contain any type of resources.
53 * Creates a reference attributes that can contain a reference to a specific
55 * @param resourceType The specific {@link ResourceType} that this reference attribute supports.
71 /** Returns the {@link ResourceType} that this reference attribute can accept.
72 * It can be null, in which case any reference type can be used. */
78 * @return A new {@link UiResourceAttributeNode} linked to this reference descriptor
    [all...]
  /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...]
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/ref/
SoftReference.java 36 * Implements a soft reference, which is the least-weak of the three types of
60 * ref} will be enqueued with their corresponding reference queues, if any.
73 * decision is made to clear and enqueue the reference:
89 public class SoftReference<T> extends Reference<T> {
92 * Constructs a new soft reference to the given referent. The newly created
93 * reference is not registered with any reference queue.
105 * Constructs a new soft reference to the given referent. The newly created
106 * reference is registered with the given reference queue
    [all...]
  /dalvik/libcore/xml/src/main/java/org/w3c/dom/
EntityReference.java 17 * reference in the tree. Note that character references and references to
20 * rather than by an entity reference. Moreover, the XML processor may
24 * <code>EntityReference</code> node that represents a reference to a known
29 * resolution depends on where the entity reference is, the descendants of
31 * URIs. When an <code>EntityReference</code> node represents a reference to
38 * 1.0 and XML Schema, the normalization is performed after entity reference
  /frameworks/base/include/media/stagefright/
MediaBuffer.h 51 // Decrements the reference count and returns the buffer to its
52 // associated MediaBufferGroup if the reference count drops to 0.
55 // Increments the reference count.
73 // Returns a clone of this MediaBuffer increasing its reference count.
87 // For use by OMXDecoder, reference count must be 1, drop reference
  /external/opencore/oscl/oscl/osclbase/src/
oscl_refcounter_memfrag.h 34 * @brief This file provides the definition of reference counted
54 * reference counter.
62 * A valid memory fragment and reference counter are
66 * @param m reference to memory fragment
67 * @param r pointer to the reference counter associated with the
133 * Removes this object's reference from the reference counter.
134 * The reference counter will not be deleted. The reference
135 * counter is designed to self-delete when it's reference
    [all...]
  /dalvik/libcore/luni/src/main/java/java/lang/
ThreadLocal.java 26 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/emma/
ANDROID-CHANGES.txt 5 2) Remove reference to sun.misc.* in core/java14/com/vladium/util/IJREVersion.java
6 3) Remove reference to sun.misc.* and SunJREExitHookManager class from core/java13/com/vladium/util/exit/ExitHookManager.java

Completed in 197 milliseconds

1 2 3 45 6 7 8 91011>>