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

12345

/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/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/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
H A D_ostreambuf_iterator.h54 typedef void reference; typedef in class:ostreambuf_iterator
H A D_stack.h68 typedef typename _Sequence::reference reference; typedef in class:stack
84 reference top() { return c.back(); }
/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/clang/include/clang/Index/
H A DSTLExtras.h29 typedef value_type& reference; typedef in class:clang::idx::pair_value_iterator
37 reference operator*() const { return I->second; }
/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 DSetVector.h40 typedef T& reference; typedef in class:llvm::SetVector
H A DBitVector.h37 class reference { class in class:llvm::BitVector
43 reference(); // Undefined
46 reference(BitVector &b, unsigned Idx) { function in class:llvm::BitVector::reference
51 ~reference() {}
53 reference &operator=(reference t) {
58 reference& operator=(bool t) {
263 reference operator[](unsigned Idx) {
265 return reference(*this, Idx);
/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/include/clang/Serialization/
H A DContinuousRangeMap.h38 typedef value_type &reference; typedef in class:clang::ContinuousRangeMap
93 reference back() { return Rep.back(); }
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
H A Dp8.cpp92 typedef Tp& reference; typedef in class:redecl::n1::allocator
/external/guava/src/com/google/common/base/
H A DPreconditions.java173 * 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) { argument
181 if (reference == null) {
184 return reference;
188 * Ensures that an object reference passed as a parameter to the calling
191 * @param reference a
197 checkNotNull(T reference, Object errorMessage) argument
221 checkNotNull(T reference, String errorMessageTemplate, Object... errorMessageArgs) argument
[all...]
/external/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/src/com/google/common/collect/
H A DObjectArrays.java49 * Returns a new array of the given length with the same type as a reference
52 * @param reference any array of the desired type
55 public static <T> T[] newArray(T[] reference, int length) { argument
56 return Platform.newArray(reference, length);
H A DPlatform.java93 * 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) { argument
100 Class<?> type = reference.getClass().getComponentType();
103 // result.getClass() == reference.getClass().getComponentType()
/external/oprofile/libpp/
H A Dprofile.h155 typedef count_type & reference; typedef in struct:std::iterator_traits
/external/webkit/Source/WebCore/editing/
H A DMarkupAccumulator.h52 // However, we cannot do this in a XML document because it does not have the entity reference defined (See the bug 19215).
62 const String& reference; member in struct:WebCore::EntityDescription
/external/clang/include/clang/AST/
H A DRedeclarable.h122 typedef decl_type* reference; typedef in class:clang::Redeclarable::redecl_iterator
130 reference operator*() const { return Current; }
/external/clang/include/clang/Sema/
H A DIdentifierResolver.h73 typedef NamedDecl * reference; typedef in class:clang::IdentifierResolver::iterator
/external/doclava/src/com/google/doclava/
H A DAttrTagInfo.java92 public FieldInfo reference() { method in class:AttrTagInfo

Completed in 7520 milliseconds

12345