Searched defs:reference (Results 101 - 125 of 419) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/indexed_db/
H A Dlist_set.h70 typedef T& reference; typedef in class:list_set::iterator
109 typedef T& reference; typedef in class:list_set::const_iterator
/external/chromium_org/storage/common/blob/
H A Dshareable_file_reference.cc65 ShareableFileReference* reference = local
67 return scoped_refptr<ShareableFileReference>(reference);
98 // Wasn't in the map, create a new reference and store the pointer.
99 scoped_refptr<ShareableFileReference> reference(
101 result.first->second = reference.get();
102 return reference;
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DBackgroundHTMLParser.cpp79 void BackgroundHTMLParser::start(PassRefPtr<WeakReference<BackgroundHTMLParser> > reference, PassOwnPtr<Configuration> config) argument
81 new BackgroundHTMLParser(reference, config);
85 BackgroundHTMLParser::BackgroundHTMLParser(PassRefPtr<WeakReference<BackgroundHTMLParser> > reference, PassOwnPtr<Configuration> config) argument
86 : m_weakFactory(reference, this)
H A DHTMLEntityParser.cpp135 const LChar* reference = HTMLEntityTable::entityString(*mostRecent); local
138 ASSERT_UNUSED(reference, cc == static_cast<UChar>(*reference++));
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFStringTest.cpp62 static void testNumberToStringECMAScript(double number, const char* reference) argument
65 ASSERT_STREQ(reference, numberString.data());
/external/chromium_org/third_party/skia/dm/
H A DDMQuiltTask.cpp21 QuiltTask::QuiltTask(const Task& parent, skiagm::GM* gm, SkBitmap reference, argument
28 , fReference(reference)
/external/chromium_org/v8/src/
H A Dzone-allocator.h20 typedef T& reference; typedef in class:v8::internal::zone_allocator
36 pointer address(reference x) const {return &x;}
/external/clang/include/clang/Sema/
H A DIdentifierResolver.h71 typedef NamedDecl * reference; typedef in class:clang::IdentifierResolver::iterator
/external/clang/include/clang/Serialization/
H A DContinuousRangeMap.h39 typedef value_type &reference; typedef in class:clang::ContinuousRangeMap
104 reference back() { return Rep.back(); }
/external/clang/test/Index/
H A Dannotate-tokens-cxx0x.cpp44 typedef const _E& reference; typedef in class:std::initializer_list
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-references.cpp6 namespace reference { namespace
104 B b1 { 0 }; // expected-error {{reference to type 'inner_init::A' could not bind to an rvalue of type 'int'}}
H A Dcxx0x-initializer-scalars.cpp23 typedef const _E& reference; typedef in class:std::initializer_list
/external/deqp/modules/gles2/functional/
H A Des2fFboStateQueryTests.cpp58 void checkAttachmentParam(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum target, GLenum attachment, GLenum pname, GLenum reference) argument
64 checkIntEquals(testCtx, state, reference);
67 void checkColorAttachmentParam(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum target, GLenum pname, GLenum reference) argument
69 checkAttachmentParam(testCtx, gl, target, GL_COLOR_ATTACHMENT0, pname, reference);
/external/deqp/modules/glshared/
H A DglsInteractionTestUtil.hpp60 int reference; member in struct:deqp::gls::InteractionTestUtil::StencilState
71 , reference (0)
/external/doclava/src/com/google/doclava/
H A DAttrTagInfo.java92 public FieldInfo reference() { method in class:AttrTagInfo
/external/guava/guava/src/com/google/common/base/
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 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...]
/external/libcxx/test/support/
H A Dmin_allocator.h76 typedef T& reference; typedef in class:min_pointer
81 reference operator*() const {return *ptr_;}
117 reference operator[](difference_type n) const {return ptr_[n];}
147 typedef const T& reference; typedef in class:min_pointer
152 reference operator*() const {return *ptr_;}
188 reference operator[](difference_type n) const {return ptr_[n];}
H A Dtest_iterators.h26 typedef typename std::iterator_traits<It>::reference reference; typedef in class:output_iterator
35 reference operator*() const {return *it_;}
53 typedef typename std::iterator_traits<It>::reference reference; typedef in class:input_iterator
62 reference operator*() const {return *it_;}
102 typedef typename std::iterator_traits<It>::reference reference; typedef in class:forward_iterator
111 reference operator*() const {return *it_;}
151 typedef typename std::iterator_traits<It>::reference referenc typedef in class:bidirectional_iterator
199 typedef typename std::iterator_traits<It>::reference reference; typedef in class:random_access_iterator
[all...]
/external/libcxx/test/thread/futures/
H A Dtest_allocator.h44 typedef typename std::add_lvalue_reference<value_type>::type reference; typedef in class:test_allocator
56 pointer address(reference x) const {return &x;}
/external/llvm/include/llvm/ADT/
H A DPackedVector.h82 class reference { class in class:llvm::PackedVector
86 reference(); // Undefined
88 reference(PackedVector &vec, unsigned idx) : Vec(vec), Idx(idx) { } function in class:llvm::PackedVector::reference
90 reference &operator=(T val) {
122 reference operator[](unsigned Idx) {
123 return reference(*this, Idx);
H A DSparseSet.h141 typedef ValueT &reference; typedef in class:llvm::SparseSet
/external/llvm/include/llvm/IR/
H A DInstIterator.h44 typedef IIty& reference; typedef in class:llvm::InstIterator
74 inline reference operator*() const { return *BI; }
/external/skia/dm/
H A DDMUtil.cpp38 void AllocatePixels(const SkBitmap& reference, SkBitmap* bitmap) { argument
39 AllocatePixels(reference.colorType(), reference.width(), reference.height(), bitmap);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DPreconditions.java38 import org.jf.dexlib2.iface.reference.*;
191 public static <T extends Reference> T checkReference(int referenceType, T reference) { argument
194 if (!(reference instanceof StringReference)) {
195 throw new IllegalArgumentException("Invalid reference type, expecting a string reference");
199 if (!(reference instanceof TypeReference)) {
200 throw new IllegalArgumentException("Invalid reference type, expecting a type reference");
204 if (!(reference instanceof FieldReference)) {
205 throw new IllegalArgumentException("Invalid reference typ
[all...]

Completed in 475 milliseconds

1234567891011>>