Searched defs:reference (Results 1 - 25 of 186) sorted by relevance

12345678

/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/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);
H A DObjectArrays.java36 * Returns a new array of the given length with the same type as a reference
39 * @param reference any array of the desired type
42 public static <T> T[] newArray(T[] reference, int length) { argument
43 return Platform.newArray(reference, length);
/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/clang/test/CodeGenCXX/
H A Dcxx0x-initializer-references.cpp3 namespace reference { namespace
H A Dcxx0x-initializer-stdinitializerlist-pr12086.cpp20 typedef const _E& reference; typedef in class:std::initializer_list
H A Dcxx0x-initializer-stdinitializerlist-startend.cpp20 typedef const _E& reference; typedef in class:std::initializer_list
/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/stlport/stlport/stl/
H A D_raw_storage_iter.h51 typedef void reference; typedef in class:raw_storage_iterator
/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/guava/guava/src/com/google/common/collect/
H A DPlatform.java69 * Returns a new array of the given length with the same type as a reference
72 * @param reference any array of the desired type
75 static <T> T[] newArray(T[] reference, int length) { argument
76 Class<?> type = reference.getClass().getComponentType();
79 // result.getClass() == reference.getClass().getComponentType()
H A DObjectArrays.java48 * Returns a new array of the given length with the same type as a reference
51 * @param reference any array of the desired type
54 public static <T> T[] newArray(T[] reference, int length) { argument
55 return Platform.newArray(reference, length);
/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*() {
/external/llvm/include/llvm/Support/
H A DPathV2.h61 typedef value_type &reference; typedef in class:llvm::sys::path::const_iterator
65 reference operator*() const { return Component; }
/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/docs/tools/
H A Ddump_ast_matchers.py21 # We categorize the matchers into these three categories in the reference:
254 reference = open('../LibASTMatchersReference.html').read() variable
255 reference = re.sub(r'<!-- START_DECL_MATCHERS.*END_DECL_MATCHERS -->', variable
256 '%s', reference, flags=re.S) % node_matcher_table
257 reference = re.sub(r'<!-- START_NARROWING_MATCHERS.*END_NARROWING_MATCHERS -->', variable
258 '%s', reference, flags=re.S) % narrowing_matcher_table
259 reference = re.sub(r'<!-- START_TRAVERSAL_MATCHERS.*END_TRAVERSAL_MATCHERS -->', variable
260 '%s', reference, flags=re.S) % traversal_matcher_table
263 output.write(reference)
/external/clang/include/clang/AST/
H A DDeclLookups.h29 typedef lookup_result reference; typedef in class:clang::DeclContext::all_lookups_iterator
39 reference operator*() const { return It->second.getLookupResult(); }
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
H A Dp8.cpp92 typedef Tp& reference; typedef in class:redecl::n1::allocator
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-references.cpp6 namespace reference { namespace
/external/doclava/src/com/google/doclava/
H A DLinkReference.java62 * regex pattern to use when matching explicit "<a href" reference text
68 * regex pattern to use when matching double-quoted reference text
78 * @return a new link reference. It always returns something. If there was an error, it logs it
353 // literal quoted reference (e.g., a book title)
363 if (DBG) System.out.println(" ---- literal quoted reference");
375 if (DBG) System.out.println(" ---- explicit href reference");
382 if (DBG) System.out.println(" ---- packge reference");
384 // class reference
389 if (DBG) System.out.println(" ---- class reference");
391 // member reference
461 setHref(LinkReference reference, ClassInfo info, String member) argument
[all...]
/external/guava/guava/src/com/google/common/base/
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/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/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...]

Completed in 362 milliseconds

12345678