Searched
defs:operator (Results
1251 -
1275 of
6351) sorted by null
<<51525354555657585960>>
/external/oprofile/libpp/ |
profile.h | 169 count_type operator*() const { return it->second; } 170 const_iterator & operator++() { ++it; return *this; } 175 bool operator!=(const_iterator const & rhs) const { 178 bool operator==(const_iterator const & rhs) const {
|
/external/protobuf/src/google/protobuf/ |
repeated_field.h | 954 reference operator*() const { return *reinterpret_cast<Element*>(*it_); } 955 pointer operator->() const { return &(operator*()); } 958 iterator& operator++() { ++it_; return *this; } 959 iterator operator++(int) { return iterator(it_++); } 960 iterator& operator--() { --it_; return *this; } 961 iterator operator--(int) { return iterator(it_--); } 964 bool operator==(const iterator& x) const { return it_ == x.it_; } 965 bool operator!=(const iterator& x) const { return it_ != x.it_; } 968 bool operator<(const iterator& x) const { return it_ < x.it_; [all...] |
/external/skia/src/core/ |
SkPathHeap.h | 35 const SkPath& operator[](int index) const {
|
/external/stlport/src/ |
aligned_buffer.h | 11 T* operator&() { 15 T const* operator&() const {
|
/external/stlport/stlport/stl/ |
_bitset.h | 32 // The C++ standard does not define the precise semantics of operator[]. 33 // In this implementation the const version of operator[] is equivalent 382 reference& operator=(bool __x) { 392 reference& operator=(const reference& __j) { 402 bool operator~() const { return (*(_M_wp) & _Bitset_base::_S_maskbit(_M_bpos)) == 0; } 405 operator bool() const { return (*(_M_wp) & _Bitset_base::_S_maskbit(_M_bpos)) != 0; } 450 bitset<_Nb>& operator&=(const bitset<_Nb>& __rhs) { 455 bitset<_Nb>& operator|=(const bitset<_Nb>& __rhs) { 460 bitset<_Nb>& operator^=(const bitset<_Nb>& __rhs) { 465 bitset<_Nb>& operator<<=(size_t __pos) [all...] |
_carray.h | 48 _Tp& operator [] (size_t __i) {
|
_ctraits_fns.h | 37 bool operator()(const typename _Traits::char_type& __x, 47 bool operator()(const typename _Traits::char_type& __x) const 57 bool operator()(const typename _Traits::char_type& __x) const 67 bool operator()(const typename _Traits::char_type& __x) const 77 bool operator()(const typename _Traits::char_type& __x,
|
_istreambuf_iterator.h | 40 // We do not read any characters until operator* is called. operator* calls sgetc 42 // used. Calls to operator++ use sbumpc. 66 char_type operator*() const { this->_M_getc(); return _M_c; } 67 istreambuf_iterator<_CharT, _Traits>& operator++() { 72 istreambuf_iterator<_CharT, _Traits> operator++(int); 110 inline bool _STLP_CALL operator==(const istreambuf_iterator<_CharT, _Traits>& __x, 118 inline bool _STLP_CALL operator!=(const istreambuf_iterator<_CharT, _Traits>& __x, 144 istreambuf_iterator<_CharT, _Traits>::operator++(int) { 146 // underlined buffer---during call of operator *() [all...] |
_locale.h | 95 void operator=(const facet&); 143 const locale& operator=(const locale&) _STLP_NOTHROW; 166 bool operator==(const locale&) const; 167 bool operator!=(const locale&) const; 170 bool operator()(const string& __x, const string& __y) const; 172 bool operator()(const wstring& __x, const wstring& __y) const; 176 bool operator()(const basic_string<_CharT, _Traits, _Alloc>& __x, 246 const locale& operator=(const locale& __loc) _STLP_NOTHROW { 247 _Locale::operator=(__loc); 261 bool operator==(const locale& __loc) const { return _Locale::operator==(__loc); [all...] |
_string_hash.h | 47 size_t operator()(const basic_string<_CharT,_Traits,_Alloc>& __s) const 55 size_t operator()(const string& __s) const 62 size_t operator()(const wstring& __s) const
|
/external/stlport/test/eh/ |
test_push_front.h | 33 void operator()( C& c ) const
|
/external/stlport/test/unit/ |
fib.h | 7 inline int operator()(); 14 Fibonacci::operator()()
|
rndshf_test.cpp | 20 unsigned long operator()(unsigned long n_)
|
/frameworks/compile/mclinker/include/mcld/MC/ |
InputAction.h | 38 bool operator<(const InputAction& pOther) const 44 InputAction& operator=(const InputAction& ); // DO_NOT_IMPLEMENT
|
/frameworks/compile/mclinker/lib/Support/ |
Directory.cpp | 79 Directory& Directory::operator=(const Directory& pCopy) 184 DirIterator& DirIterator::operator=(const DirIterator& pCopy) 192 DirIterator& DirIterator::operator++() 215 DirIterator DirIterator::operator++(int) 237 bool DirIterator::operator==(const DirIterator& y) const 252 bool DirIterator::operator!=(const DirIterator& y) const 254 return !this->operator==(y);
|
/frameworks/native/include/ui/ |
Rect.h | 33 // we don't provide copy-ctor and operator= on purpose 114 inline bool operator == (const Rect& rhs) const { 119 inline bool operator != (const Rect& rhs) const { 120 return !operator == (rhs); 123 // operator < defines an order which allows to use rectangles in sorted 125 bool operator < (const Rect& rhs) const; 127 const Rect operator + (const Point& rhs) const; 128 const Rect operator - (const Point& rhs) const; 130 Rect& operator += (const Point& rhs) { 133 Rect& operator -= (const Point& rhs) [all...] |
/frameworks/rs/cpu_ref/linkloader/include/ |
ELFSectionBits.h | 48 unsigned char &operator[](size_t index) { 52 unsigned char const &operator[](size_t index) const {
|
ELFSectionSymTab.h | 52 ELFSymbolTy const *operator[](size_t index) const { 56 ELFSymbolTy *operator[](size_t index) {
|
/libnativehelper/include/nativehelper/ |
UniquePtr.h | 28 void operator()(T* p) const { 37 void operator()(T* p) const { 62 T& operator*() const { return *mPtr; } 63 T* operator->() const { return mPtr; } 94 template <typename T2> bool operator==(const UniquePtr<T2>& p) const; 95 template <typename T2> bool operator!=(const UniquePtr<T2>& p) const; 99 void operator=(const UniquePtr&); 103 // operator* and operator-> but adds operator[] [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
random.cpp | 35 random_device::operator()()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.generate/ |
generate.pass.cpp | 25 int operator()() const {return 1;}
|
generate_n.pass.cpp | 25 int operator()() const {return 2;}
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.partitions/ |
partition.pass.cpp | 28 bool operator()(const int& i) const {return i & 1;}
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.random.shuffle/ |
random_shuffle_rand.pass.cpp | 23 int operator()(int n)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.foreach/ |
test.pass.cpp | 26 void operator()(int& i) {++i; ++count;}
|
Completed in 1428 milliseconds
<<51525354555657585960>>