Searched refs:reference (Results 1 - 25 of 318) sorted by relevance

1234567891011>>

/external/doclava/res/assets/templates/components/
H A Dmasthead.cs4 <?cs if:reference && reference.apilevels ?>
/external/llvm/test/MC/AsmParser/
H A Ddot-symbol.s1 # Historically 'as' treats '.' as a reference to the current location in
/external/llvm/test/MC/MachO/
H A Dsymbol-flags.s3 .reference sym_ref_A
4 .reference sym_ref_def_A
7 .reference sym_ref_def_C
8 .reference sym_ref_def_D
11 .reference sym_ref_def_E
55 .reference sym_ref_A
/external/guava/guava/src/com/google/common/base/
H A DOptional.java32 * An immutable object that may contain a non-null reference to another object. Each
33 * instance of this type either contains a non-null reference, or contains nothing (in
34 * which case we say that the reference is "absent"); it is never said to "contain {@code
37 * <p>A non-null {@code Optional<T>} reference can be used as a replacement for a nullable
38 * {@code T} reference. It allows you to represent "a {@code T} that must be present" and
73 * Returns an {@code Optional} instance with no contained reference.
81 * Returns an {@code Optional} instance containing the given non-null reference.
83 public static <T> Optional<T> of(T reference) { argument
84 return new Present<T>(checkNotNull(reference));
89 * reference; otherwis
199 private final T reference; field in class:Optional.Present
201 Present(T reference) argument
[all...]
H A DEquivalence.java53 * <li>It is <i>reflexive</i>: for any reference {@code x}, including null, {@code
90 * <li>It is <i>consistent</i>: for any reference {@code x}, multiple invocations of
145 * Returns a wrapper of {@code reference} that implements
151 public final <S extends T> Wrapper<S> wrap(@Nullable S reference) { argument
152 return new Wrapper<S>(this, reference);
178 @Nullable private final T reference; field in class:Equivalence.Wrapper
180 private Wrapper(Equivalence<? super T> equivalence, @Nullable T reference) { argument
182 this.reference = reference;
185 /** Returns the (possibly null) reference wrappe
[all...]
H A DPreconditions.java178 * Ensures that an object reference passed as a parameter to the calling
181 * @param reference an object reference
182 * @return the non-null reference that was validated
183 * @throws NullPointerException if {@code reference} is null
185 public static <T> T checkNotNull(T reference) { argument
186 if (reference == null) {
189 return reference;
193 * Ensures that an object reference passed as a parameter to the calling
196 * @param reference a
202 checkNotNull(T reference, @Nullable Object errorMessage) argument
226 checkNotNull(T reference, @Nullable String errorMessageTemplate, @Nullable Object... errorMessageArgs) argument
[all...]
/external/liblzf/src/org/liblzf/
H A DCLZF.java167 int reference;
179 reference = htab[hslot];
182 if ((off = iidx - reference - 1) < MAX_OFF
184 && reference > 0
185 && in_data[reference+0] == in_data[iidx+0]
186 && in_data[reference+1] == in_data[iidx+1]
187 && in_data[reference+2] == in_data[iidx+2]
190 /* match found at *reference++ */
200 while (len < maxlen && in_data[reference+len] == in_data[iidx+len]);
300 else /* back reference */
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
H A DPrivilegedActionExceptionTest.java47 public void assertDeserialized(Serializable reference, Serializable otest) { argument
50 THROWABLE_COMPARATOR.assertDeserialized(reference, otest);
53 PrivilegedActionException ref = (PrivilegedActionException)reference;
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DBasicPoolEntry.java49 * 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/llvm/include/llvm/ADT/
H A DInMemoryStruct.h27 typedef value_type &reference; typedef in class:llvm::InMemoryStruct
43 InMemoryStruct(reference Value) : Target(&Contents), Contents(Value) {}
60 reference operator*() {
H A DPackedVector.h81 class reference { class in class:llvm::PackedVector
85 reference(); // Undefined
87 reference(PackedVector &vec, unsigned idx) : Vec(vec), Idx(idx) { } function in class:llvm::PackedVector::reference
89 reference &operator=(T val) {
121 reference operator[](unsigned Idx) {
122 return reference(*this, Idx);
/external/chromium/chrome/browser/prefs/
H A Dpref_value_map_unittest.cc50 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/bluetooth/glib/docs/
H A DMakefile.am4 SUBDIRS = reference
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DGwtPlatform.java41 public static <T> T[] newArray(T[] reference, int length) { argument
42 return Array.createFrom(reference, length);
H A DPlatform.java45 static <T> T[] newArray(T[] reference, int length) { argument
46 return GwtPlatform.newArray(reference, length);
/external/astl/tests/
H A Dtest_iterator.cpp43 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/clang/test/CodeGenCXX/
H A Dcxx0x-initializer-references.cpp3 namespace reference { namespace
/external/apache-http/src/org/apache/http/client/utils/
H A DURIUtils.java164 * 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) { argument
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){ argument
187 if (reference
[all...]
/external/webkit/Source/WebCore/platform/cf/
H A DBinaryPropertyList.cpp467 // 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
749 appendObjectReference(ObjectReference reference) argument
775 ObjectReference reference = m_currentObjectReference++; local
802 addAggregateObjectReference(ObjectReference reference) argument
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DFinalizableReferenceQueueTest.java43 MockReference reference = new MockReference(
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 fo
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractIteratorTester.java64 * any remove() in a stimulus sequence after the reference iterator
272 * We poll the target iterator's next element and pass it to the reference
274 * enables the assertion to pass and the reference iterator to properly
393 MultiExceptionListIterator reference =
403 boolean threwException = stimulus.executeAndCompare(reference, target);
414 List<E> elements = reference.getElements();
442 T reference, T target, IteratorOperation method)
481 (MultiExceptionListIterator) reference;
485 referenceReturnValue = method.execute(reference);
495 "Target threw exception when reference di
441 internalExecuteAndCompare( T reference, T target, IteratorOperation method) argument
584 executeAndCompare(ListIterator<E> reference, T target) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/values/
H A DVariableValue.java25 * A value linked to a variable reference. When this value is evaluated in an expression a Data
40 private Data reference; field in class:VariableValue
58 reference = dataContext.findVariable(name, false);
61 return reference;
/external/webkit/Source/WebCore/bindings/scripts/
H A DInFilesParser.pm65 my $reference = { };
71 bless($reference, $object);
72 return $reference;
/external/guava/guava/src/com/google/common/base/internal/
H A DFinalizer.java38 * 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 { argument
143 reference.clear();
145 if (reference == frqReference) {
147 * The client no longer has a reference to the
154 finalizeReferentMethod.invoke(reference);
156 logger.log(Level.SEVERE, "Error cleaning up after reference
[all...]
/external/liblzf/cs/
H A DCLZF.cs167 long reference;
179 reference = htab[hslot];
182 if ((off = iidx - reference - 1) < MAX_OFF
184 && reference > 0
185 && in_data[reference+0] == in_data[iidx+0]
186 && in_data[reference+1] == in_data[iidx+1]
187 && in_data[reference+2] == in_data[iidx+2]
190 /* match found at *reference++ */
200 while (len < maxlen && in_data[reference+len] == in_data[iidx+len]);
300 else /* back reference */
[all...]

Completed in 527 milliseconds

1234567891011>>