Searched defs:reference (Results 176 - 200 of 419) sorted by relevance

1234567891011>>

/external/harfbuzz_ng/src/
H A Dhb-object-private.hh127 inline void reference (void) { function in struct:hb_object_header_t
200 obj->header.reference ();
/external/libcxx/test/support/
H A Dnasty_containers.hpp22 typedef typename nested_container::reference reference; typedef in class:nasty_vector
73 reference operator[](size_type n) { return v_[n]; }
75 reference at(size_type n) { return v_.at(n); }
78 reference front() { return v_.front(); }
80 reference back() { return v_.back(); }
143 typedef typename nested_container::reference reference; typedef in class:nasty_list
193 reference front() { return l_.front(); }
195 reference bac
[all...]
H A Dtest_allocator.h49 typedef typename std::add_lvalue_reference<value_type>::type reference; typedef in class:test_allocator
61 pointer address(reference x) const {return &x;}
/external/llvm/include/llvm/ADT/
H A DDenseSet.h70 typedef value_type &reference; typedef in class:llvm::DenseSet::Iterator
90 typedef value_type &reference; typedef in class:llvm::DenseSet::ConstIterator
H A DEquivalenceClasses.h248 typedef typename super::reference reference; typedef in class:llvm::EquivalenceClasses::member_iterator
253 reference operator*() const {
257 reference operator->() const { return operator*(); }
H A DSCCIterator.h47 typedef typename scc_iterator::reference reference; typedef in class:llvm::scc_iterator
121 reference operator*() const {
H A DSmallPtrSet.h183 typedef PtrTy reference; typedef in class:llvm::SmallPtrSetIterator
/external/llvm/include/llvm/Option/
H A DArgList.h50 typedef Arg * const & reference; typedef in class:llvm::opt::arg_iterator
63 reference operator*() const { return *Current; }
/external/llvm/include/llvm/Support/
H A DErrorOr.h40 /// \brief Stores a reference that can be changed.
75 /// When T is a reference type the behaivor is slightly different. The reference
78 /// reference.
80 /// T cannot be a rvalue reference.
91 typedef typename std::remove_reference<T>::type &reference; typedef in class:llvm::ErrorOr
163 reference get() { return *getStorage(); }
174 reference operator *() {
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_buffer.h100 struct pipe_reference reference; member in struct:pb_buffer
149 * Note that this will increase the reference count of the base buffer.
168 assert(pipe_is_referenced(&buf->reference));
179 assert(pipe_is_referenced(&buf->reference));
195 assert(pipe_is_referenced(&buf->reference));
231 assert(!pipe_is_referenced(&buf->reference));
241 if (pipe_reference(&(*dst)->reference, &src->reference))
/external/mesa3d/src/glx/apple/
H A Dapple_glx_drawable.h116 * This mutex protects the reference count and any other drawable data.
123 void (*reference) (struct apple_glx_drawable * agd); member in struct:apple_glx_drawable
148 /* Returns true on error and locks the agd result with a reference. */
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/
H A Dpshglob.c91 FT_Pos reference = width;
107 reference = w;
111 if ( width >= reference )
114 if ( width < reference )
115 width = reference;
120 if ( width > reference )
121 width = reference;
155 FT_Int reference, delta; local
165 reference = read[1];
166 delta = read[0] - reference;
[all...]
/external/regex-re2/re2/
H A Dstringpiece.h118 typedef const char& reference; typedef in class:re2::StringPiece
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableInstructionFactory.java36 import org.jf.dexlib2.iface.reference.Reference;
77 @Nonnull Reference reference) {
78 return new ImmutableInstruction20bc(opcode, verificationError, reference);
88 @Nonnull Reference reference) {
89 return new ImmutableInstruction21c(opcode, registerA, reference);
126 @Nonnull Reference reference) {
127 return new ImmutableInstruction22c(opcode, registerA, registerB, reference);
164 @Nonnull Reference reference) {
165 return new ImmutableInstruction31c(opcode, registerA, reference);
193 @Nonnull Reference reference) {
75 makeInstruction20bc(@onnull Opcode opcode, int verificationError, @Nonnull Reference reference) argument
86 makeInstruction21c(@onnull Opcode opcode, int registerA, @Nonnull Reference reference) argument
123 makeInstruction22c(@onnull Opcode opcode, int registerA, int registerB, @Nonnull Reference reference) argument
162 makeInstruction31c(@onnull Opcode opcode, int registerA, @Nonnull Reference reference) argument
186 makeInstruction35c(@onnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, int registerF, int registerG, @Nonnull Reference reference) argument
198 makeInstruction3rc(@onnull Opcode opcode, int startRegister, int registerCount, @Nonnull Reference reference) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DInstructionFactory.java38 import org.jf.dexlib2.iface.reference.Reference;
50 Instruction makeInstruction20bc(@Nonnull Opcode opcode, int verificationError, @Nonnull Ref reference); argument
52 Instruction makeInstruction21c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference); argument
58 Instruction makeInstruction22c(@Nonnull Opcode opcode, int registerA, int registerB, @Nonnull Ref reference); argument
64 Instruction makeInstruction31c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference); argument
69 int registerF, int registerG, @Nonnull Ref reference);
71 @Nonnull Ref reference);
68 makeInstruction35c(@onnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, int registerF, int registerG, @Nonnull Ref reference) argument
70 makeInstruction3rc(@onnull Opcode opcode, int startRegister, int registerCount, @Nonnull Ref reference) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DDexBuilder.java42 import org.jf.dexlib2.iface.reference.*;
173 @Nonnull public BuilderReference internReference(@Nonnull Reference reference) { argument
174 if (reference instanceof StringReference) {
175 return internStringReference(((StringReference)reference).getString());
177 if (reference instanceof TypeReference) {
178 return internTypeReference(((TypeReference)reference).getType());
180 if (reference instanceof MethodReference) {
181 return internMethodReference((MethodReference)reference);
183 if (reference instanceof FieldReference) {
184 return internFieldReference((FieldReference)reference);
[all...]
/external/stlport/stlport/stl/
H A D_iterator.h52 typename iterator_traits<_Iterator>::reference> {
60 typedef typename iterator_traits<_Iterator>::reference reference; typedef in class:reverse_iterator
75 reference operator*() const {
109 reference operator[](difference_type __n) const { return *(*this + __n); }
H A D_iterator_base.h64 typedef _Reference reference; typedef in struct:iterator
73 typedef void reference; typedef in struct:iterator
82 //associated reference type so we consider that it is not a real reference.
94 # define _STLP_IS_REF_TYPE_REAL_REF(_It, _Tp) _STLP_STD::_IsRefType< _STLP_TYPENAME _STLP_STD::iterator_traits< _Tp >::reference >::_Ret()
153 typedef typename _Iterator::reference reference; typedef in struct:iterator_traits::iterator_traits
171 typedef const _Tp& reference; typedef in struct:iterator_traits::iterator_traits
180 typedef _Tp& reference; typedef in struct:iterator_traits::iterator_traits
190 typedef const _Tp& reference; typedef in struct:iterator_traits::iterator_traits
386 typedef const _Tp& reference; typedef in struct:iterator_traits::_Const_traits
395 typedef _Tp& reference; typedef in struct:iterator_traits::_Nonconst_traits
411 typedef const _Tp& reference; typedef in struct:iterator_traits::_Const_Const_traits
420 typedef const _Tp& reference; typedef in struct:iterator_traits::_Nonconst_Const_traits
[all...]
H A D_map.h83 typedef typename _Rep_type::reference reference; typedef in class:map
276 typedef typename _Rep_type::reference reference; typedef in class:multimap
H A D_pthread_alloc.h104 typedef _Tp& reference; typedef in class:pthread_allocator
124 pointer address(reference __x) const { return &__x; }
285 typedef _Tp& reference; typedef in class:per_thread_allocator
307 pointer address(reference __x) const { return &__x; }
H A D_set.h71 typedef typename _Rep_type::reference reference; typedef in class:set
242 typedef typename _Rep_type::reference reference; typedef in class:multiset
/external/stlport/stlport/stl/debug/
H A D_vector.h61 typedef _Tp& reference; typedef in struct:_Vector_nonconst_traits
71 typedef const _Tp& reference; typedef in struct:_Vector_const_traits
80 typedef _Bit_iterator::reference reference; typedef in struct:_Vector_nonconst_traits
89 typedef _Bit_const_iterator::reference reference; typedef in struct:_Vector_const_traits
161 reference operator[](size_type __n) {
171 reference at(size_type __n) { return _M_non_dbg_impl.at(__n); }
248 reference front() {
256 reference bac
[all...]
/external/stlport/stlport/stl/pointers/
H A D_vector.h66 typedef value_type& reference; typedef in class:vector
95 reference operator[](size_type __n) { return cast_traits::to_value_type_ref(_M_impl[__n]); }
98 reference front() { return cast_traits::to_value_type_ref(_M_impl.front()); }
100 reference back() { return cast_traits::to_value_type_ref(_M_impl.back()); }
103 reference at(size_type __n) { return cast_traits::to_value_type_ref(_M_impl.at(__n)); }
/external/stlport/test/eh/
H A DPrefix.h127 typedef _Tp& reference; typedef in class:EH_allocator
142 pointer address(reference __x) { return &__x; }
/external/stlport/test/unit/
H A Dstack_allocator.h24 //a reference StackAllocator instance:
59 typedef _Tp& reference; typedef in struct:StackAllocator
135 pointer address(reference __x) const {return &__x;}

Completed in 6577 milliseconds

1234567891011>>