Searched defs:reference (Results 76 - 100 of 186) sorted by relevance

12345678

/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)); }
H A D_deque.h114 typedef value_type& reference; typedef in class:deque
139 reference operator[](size_type __n)
144 reference at(size_type __n)
149 reference front() { return cast_traits::to_value_type_ref(_M_impl.front()); }
150 reference back() { return cast_traits::to_value_type_ref(_M_impl.back()); }
H A D_list.h76 typedef value_type& reference; typedef in class:list
168 reference front() { return *begin(); }
170 reference back() { return *(--end()); }
H A D_set.h102 typedef typename _Priv_Rep_type::reference reference; typedef in class:set
349 typedef typename _Priv_Rep_type::reference reference; typedef in class:multiset
H A D_slist.h71 typedef value_type& reference; typedef in class:slist
205 reference front() { return *begin(); }
/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;}
/external/webkit/Source/WebKit/qt/tests/qgraphicswebview/
H A Dtst_qgraphicswebview.cpp537 QImage reference(canvasSize, QImage::Format_ARGB32);
538 reference.fill(0xFF00FF00);
540 QPainter painter(&reference);
550 compareCanvasToImage(QUrl(QLatin1String("qrc:///resources/pointing_up.html")), reference);
556 QImage reference(canvasSize, QImage::Format_ARGB32);
557 reference.fill(0xFF00FF00);
559 QPainter painter(&reference);
569 compareCanvasToImage(QUrl(QLatin1String("qrc:///resources/pointing_right.html")), reference);
572 void tst_QGraphicsWebView::compareCanvasToImage(const QUrl& url, const QImage& reference) argument
588 const QSize imageSize = reference
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.event_1.2.0.v20100503.jar ... framework.ServiceReference) org.osgi.framework.ServiceReference reference org.eclipse.equinox.internal.event. ...
/external/clang/include/clang/AST/
H A DASTVector.h83 typedef T& reference; typedef in class:clang::ASTVector
103 reference operator[](unsigned idx) {
112 reference front() {
119 reference back() {
/external/clang/include/clang/Driver/
H A DArgList.h53 typedef Arg * const & reference; typedef in class:clang::driver::arg_iterator
66 reference operator*() const { return *Current; }
/external/clang/test/Parser/
H A Dcxx0x-attributes.cpp21 typedef const _E& reference; typedef in class:std::initializer_list
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-constructor.cpp23 typedef const _E& reference; typedef in class:std::initializer_list
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractIteratorTester.java64 * any remove() in a stimulus sequence after the reference iterator
272 * We poll the target iterator's next element and pass it to the reference
274 * enables the assertion to pass and the reference iterator to properly
393 MultiExceptionListIterator reference =
403 boolean threwException = stimulus.executeAndCompare(reference, target);
414 List<E> elements = reference.getElements();
442 T reference, T target, IteratorOperation method)
481 (MultiExceptionListIterator) reference;
485 referenceReturnValue = method.execute(reference);
495 "Target threw exception when reference di
441 internalExecuteAndCompare( T reference, T target, IteratorOperation method) argument
584 executeAndCompare(ListIterator<E> reference, T target) argument
[all...]
/external/llvm/include/llvm/ADT/
H A DSTLExtras.h88 typedef void reference; // Can't modify value returned by fn typedef in class:llvm::mapped_iterator
117 reference operator[](difference_type n) const { return *(*this + n); }
H A DSmallBitVector.h58 class reference { class in class:llvm::SmallBitVector
63 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {} function in class:llvm::SmallBitVector::reference
65 reference& operator=(reference t) {
70 reference& operator=(bool t) {
341 reference operator[](unsigned Idx) {
343 return reference(*this, Idx);
/external/stlport/stlport/stl/
H A D_hash_map.h72 typedef typename _Ht::reference reference; typedef in class:hash_map
263 typedef typename _Ht::reference reference; typedef in class:hash_multimap
451 typedef void reference; typedef in class:insert_iterator
478 typedef void reference; typedef in class:insert_iterator
H A D_hash_set.h66 typedef typename _Ht::reference reference; typedef in class:hash_set
252 typedef typename _Ht::reference reference; typedef in class:hash_multiset
446 typedef void reference; typedef in class:insert_iterator
473 typedef void reference; typedef in class:insert_iterator
H A D_unordered_map.h64 typedef typename _Ht::reference reference; typedef in class:unordered_map
232 typedef typename _Ht::reference reference; typedef in class:unordered_multimap
393 typedef void reference; typedef in class:insert_iterator
420 typedef void reference; typedef in class:insert_iterator
H A D_unordered_set.h58 typedef typename _Ht::reference reference; typedef in class:unordered_set
208 typedef typename _Ht::reference reference; typedef in class:unordered_multiset
368 typedef void reference; typedef in class:insert_iterator
395 typedef void reference; typedef in class:insert_iterator
/external/stlport/stlport/stl/debug/
H A D_iterator.h122 typedef typename _Container::reference reference; typedef in struct:_DBG_iter_base
203 typedef typename _Traits::reference reference; typedef in struct:_DBG_iter
246 reference operator*() const;
288 reference operator[](difference_type __n) const { return *(*this + __n); }
294 _STLP_TYPENAME_ON_RETURN_TYPE _Traits::reference
296 _STLP_TYPENAME_ON_RETURN_TYPE _DBG_iter<_Container, _Traits>::reference
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DPoolAlloc.h245 typedef T& reference; typedef in class:pool_allocator
253 pointer address(reference x) const { return &x; }
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCALayerWinInternal.cpp273 int PlatformCALayerWinInternal::indexOfSublayer(const PlatformCALayer* reference) argument
275 CACFLayerRef ref = reference->platformLayer();
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DLayerChromium.cpp88 // Our superlayer should be holding a reference to us so there should be no
95 // Remove the superlayer reference from all sublayers.
157 void LayerChromium::replaceSublayer(LayerChromium* reference, PassRefPtr<LayerChromium> newLayer) argument
159 ASSERT_ARG(reference, reference);
160 ASSERT_ARG(reference, reference->superlayer() == this);
162 if (reference == newLayer)
165 int referenceIndex = indexOfSublayer(reference);
171 reference
179 indexOfSublayer(const LayerChromium* reference) argument
[all...]
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h102 typedef const T& reference; typedef in class:testing::internal::ParamIterator

Completed in 6213 milliseconds

12345678