Searched defs:reference (Results 26 - 50 of 186) sorted by relevance

12345678

/external/llvm/include/llvm/ADT/
H A DSetVector.h40 typedef T& reference; typedef in class:llvm::SetVector
H A DBitVector.h38 class reference { class in class:llvm::BitVector
44 reference(); // Undefined
47 reference(BitVector &b, unsigned Idx) { function in class:llvm::BitVector::reference
52 ~reference() {}
54 reference &operator=(reference t) {
59 reference& operator=(bool t) {
263 reference operator[](unsigned Idx) {
265 return reference(*this, Idx);
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);
H A DSparseSet.h136 typedef ValueT &reference; typedef in class:llvm::SparseSet
/external/oprofile/libpp/
H A Dprofile.h155 typedef count_type & reference; typedef in struct:std::iterator_traits
/external/stlport/stlport/stl/
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(); }
H A D_istreambuf_iterator.h59 typedef const _CharT& reference; typedef in class:istreambuf_iterator
H A D_iterator_old.h79 typedef _Reference reference; typedef in class:reverse_bidirectional_iterator
173 typedef _Reference reference; typedef in class:reverse_iterator
H A D_queue.h79 typedef typename _Sequence::reference reference; typedef in class:queue
96 reference front() { return c.front(); }
98 reference back() { return c.back(); }
163 typedef typename _Sequence::reference reference; typedef in class:priority_queue
H A D_stream_iterator.h106 typedef const _Tp& reference; typedef in class:istream_iterator
111 reference operator*() const {
H A D_bitset.h35 // returns a reference to a bit, again without doing any range checking.
359 struct reference;
360 friend struct reference;
362 // bit reference:
363 struct reference { struct in class:bitset
371 reference() {} function in struct:bitset::reference
373 reference( _Bitset& __b, size_t __pos ) { function in struct:bitset::reference
379 ~reference() {}
382 reference& operator=(bool __x) {
392 reference
[all...]
/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
131 reference operator*() const { return Current; }
/external/clang/include/clang/Sema/
H A DIdentifierResolver.h76 typedef NamedDecl * reference; typedef in class:clang::IdentifierResolver::iterator
/external/clang/include/clang/Serialization/
H A DContinuousRangeMap.h38 typedef value_type &reference; typedef in class:clang::ContinuousRangeMap
103 reference back() { return Rep.back(); }
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-scalars.cpp23 typedef const _E& reference; typedef in class:std::initializer_list
/external/clang/tools/diagtool/
H A DDiagnosticNames.h62 typedef const value_type & reference; typedef in class:diagtool::GroupRecord::group_iterator
67 inline reference operator*() const;
117 inline GroupRecord::subgroup_iterator::reference
123 inline GroupRecord::diagnostics_iterator::reference
/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/llvm/include/llvm/Support/
H A DInstIterator.h44 typedef IIty& reference; typedef in class:llvm::InstIterator
74 inline reference operator*() const { return *BI; }
/external/stlport/test/unit/
H A Dmvctor_declaration_test.cpp88 typedef value_type& reference; typedef in class:std::allocator
103 pointer address(reference __x) const { return &__x; }
/external/webkit/Source/WebCore/html/parser/
H A DHTMLEntityParser.cpp225 const UChar* reference = entitySearch.mostRecentMatch()->entity; local
228 ASSERT_UNUSED(reference, cc == *reference++);
/external/webkit/Source/WebCore/wml/
H A DWMLVariables.cpp92 // Find beginning of variable reference
165 String substituteVariableReferences(const String& reference, Document* document, WMLVariableEscapingMode escapeMode) argument
169 if (reference.isEmpty())
170 return reference;
174 return reference;
177 String remainingInput = reference;
190 // Consume all characters until the variable reference beginning
278 return reference;

Completed in 482 milliseconds

12345678