HomeSort by relevance Sort by last modified time
    Searched full:operator (Results 776 - 800 of 6015) sorted by null

<<31323334353637383940>>

  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 22 struct Operator;
89 Operator *Op; // The Operation used to generate this value.
101 static std::vector<Operator*> TheOperators;
103 /// Operator - This is a vector operation that is available for use.
104 struct Operator {
110 Operator(unsigned short shufflemask, const char *name, unsigned opnum,
115 ~Operator() {
304 Operator *Op = TheOperators[opnum];
469 struct vmrghw : public Operator {
470 vmrghw() : Operator(0x0415, "vmrghw", OP_VMRGHW) {
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
Deque.h 57 Deque& operator=(const Deque<T, inlineCapacity>&);
121 Base& operator=(const Base&);
161 DequeIterator& operator=(const Iterator& other) { Base::assign(other); return *this; }
163 T& operator*() const { return *Base::after(); }
164 T* operator->() const { return Base::after(); }
166 bool operator==(const Iterator& other) const { return Base::isEqual(other); }
167 bool operator!=(const Iterator& other) const { return !Base::isEqual(other); }
169 Iterator& operator++() { Base::increment(); return *this; }
171 Iterator& operator--() { Base::decrement(); return *this; }
187 DequeConstIterator& operator=(const Iterator& other) { Base::assign(other); return *this;
    [all...]
  /external/llvm/include/llvm/MC/
MCContext.h 42 MCContext &operator=(const MCContext&); // DO NOT IMPLEMENT
276 // operator new and delete aren't allowed inside namespaces.
280 /// This placement form of operator new uses the MCContext's allocator for
283 /// this ever changes, this operator will have to be changed, too.)
300 inline void *operator new(size_t Bytes, llvm::MCContext &C,
306 /// This operator is just a companion to the new above. There is no way of
307 /// invoking it directly; see the new operator for more details. This operator
310 inline void operator delete(void *Ptr, llvm::MCContext &C, size_t)
315 /// This placement form of operator new[] uses the MCContext's allocator fo
    [all...]
  /external/chromium/base/
stack_container.h 153 // Support operator-> to get to the container. This allows nicer syntax like:
156 ContainerType* operator->() { return &container_; }
157 const ContainerType* operator->() const { return &container_; }
217 // foo->push_back(22); // we have overloaded operator->
218 // foo[0] = 10; // as well as operator[]
240 StackVector<T, stack_capacity>& operator=(
247 // operator-> (using "->at()" does exception stuff we don't want).
248 T& operator[](size_t i) { return this->container().operator[](i); }
249 const T& operator[](size_t i) const
    [all...]
  /frameworks/base/libs/utils/
CallStack.cpp 227 CallStack& CallStack::operator = (const CallStack& rhs)
236 bool CallStack::operator == (const CallStack& rhs) const {
242 bool CallStack::operator != (const CallStack& rhs) const {
243 return !operator == (rhs);
246 bool CallStack::operator < (const CallStack& rhs) const {
252 bool CallStack::operator >= (const CallStack& rhs) const {
253 return !operator < (rhs);
256 bool CallStack::operator > (const CallStack& rhs) const {
262 bool CallStack::operator <= (const CallStack& rhs) const {
263 return !operator > (rhs)
    [all...]
  /external/stlport/stlport/stl/
_rope.h 124 rope<_CharT,_Alloc> operator() (const rope<_CharT,_Alloc>& __x,
161 virtual void operator()(size_t __start_pos, size_t __len,
234 _Self& operator= (_Self& __x) {
240 _Self& operator= (const _Self& __x) {
279 _Self& operator=(const value_type& __rhs) {
283 _Self& operator*() { return *this; }
284 _Self& operator++() { return *this; }
285 _Self& operator++(int) { return *this; }
296 virtual bool operator()(const _CharT* __buffer, size_t __len) = 0;
304 // template parameters for such an equality operator cannot be inferre
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_rope.h 124 rope<_CharT,_Alloc> operator() (const rope<_CharT,_Alloc>& __x,
161 virtual void operator()(size_t __start_pos, size_t __len,
234 _Self& operator= (_Self& __x) {
240 _Self& operator= (const _Self& __x) {
279 _Self& operator=(const value_type& __rhs) {
283 _Self& operator*() { return *this; }
284 _Self& operator++() { return *this; }
285 _Self& operator++(int) { return *this; }
296 virtual bool operator()(const _CharT* __buffer, size_t __len) = 0;
304 // template parameters for such an equality operator cannot be inferre
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_rope.h 124 rope<_CharT,_Alloc> operator() (const rope<_CharT,_Alloc>& __x,
161 virtual void operator()(size_t __start_pos, size_t __len,
234 _Self& operator= (_Self& __x) {
240 _Self& operator= (const _Self& __x) {
279 _Self& operator=(const value_type& __rhs) {
283 _Self& operator*() { return *this; }
284 _Self& operator++() { return *this; }
285 _Self& operator++(int) { return *this; }
296 virtual bool operator()(const _CharT* __buffer, size_t __len) = 0;
304 // template parameters for such an equality operator cannot be inferre
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_rope.h 124 rope<_CharT,_Alloc> operator() (const rope<_CharT,_Alloc>& __x,
161 virtual void operator()(size_t __start_pos, size_t __len,
234 _Self& operator= (_Self& __x) {
240 _Self& operator= (const _Self& __x) {
279 _Self& operator=(const value_type& __rhs) {
283 _Self& operator*() { return *this; }
284 _Self& operator++() { return *this; }
285 _Self& operator++(int) { return *this; }
296 virtual bool operator()(const _CharT* __buffer, size_t __len) = 0;
304 // template parameters for such an equality operator cannot be inferre
    [all...]
  /external/clang/test/Index/
annotate-tokens.cpp 8 X operator++();
9 X operator++(int);
17 struct S2 { S1 *operator->(); };
37 // CHECK: Punctuation: "=" [3:7 - 3:8] CallExpr=operator=:1:8
52 // CHECK: Keyword: "operator" [8:5 - 8:13] CXXMethod=operator++:8:5
53 // CHECK: Punctuation: "++" [8:13 - 8:15] CXXMethod=operator++:8:5
54 // CHECK: Punctuation: "(" [8:15 - 8:16] CXXMethod=operator++:8:5
55 // CHECK: Punctuation: ")" [8:16 - 8:17] CXXMethod=operator++:8:5
58 // CHECK: Keyword: "operator" [9:5 - 9:13] CXXMethod=operator++:9:
    [all...]
  /external/icu4c/i18n/
tzrule.cpp 45 TimeZoneRule::operator=(const TimeZoneRule& right) {
55 TimeZoneRule::operator==(const TimeZoneRule& that) const {
64 TimeZoneRule::operator!=(const TimeZoneRule& that) const {
65 return !operator==(that);
114 InitialTimeZoneRule::operator=(const InitialTimeZoneRule& right) {
116 TimeZoneRule::operator=(right);
122 InitialTimeZoneRule::operator==(const TimeZoneRule& that) const {
125 TimeZoneRule::operator==(that)));
129 InitialTimeZoneRule::operator!=(const TimeZoneRule& that) const {
130 return !operator==(that)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
shared_ptr.h 89 _Sp_counted_ptr& operator=(const _Sp_counted_ptr&) = delete;
157 void operator()(_Tp* __p) const { if (__p) __p->~_Tp(); }
336 operator=(const __shared_count& __r) // nothrow
380 operator==(const __shared_count& __a, const __shared_count& __b)
439 operator=(const __shared_count<_Lp>& __r) // nothrow
451 operator=(const __weak_count<_Lp>& __r) // nothrow
484 operator==(const __weak_count& __a, const __weak_count& __b)
733 operator=(const __shared_ptr<_Tp1, _Lp>& __r) // never throws
743 operator=(std::auto_ptr<_Tp1>&& __r)
751 operator=(__shared_ptr&& __r
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
shared_ptr.h 89 _Sp_counted_ptr& operator=(const _Sp_counted_ptr&) = delete;
157 void operator()(_Tp* __p) const { if (__p) __p->~_Tp(); }
336 operator=(const __shared_count& __r) // nothrow
380 operator==(const __shared_count& __a, const __shared_count& __b)
439 operator=(const __shared_count<_Lp>& __r) // nothrow
451 operator=(const __weak_count<_Lp>& __r) // nothrow
484 operator==(const __weak_count& __a, const __weak_count& __b)
733 operator=(const __shared_ptr<_Tp1, _Lp>& __r) // never throws
743 operator=(std::auto_ptr<_Tp1>&& __r)
751 operator=(__shared_ptr&& __r
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
shared_ptr.h 89 _Sp_counted_ptr& operator=(const _Sp_counted_ptr&) = delete;
157 void operator()(_Tp* __p) const { if (__p) __p->~_Tp(); }
336 operator=(const __shared_count& __r) // nothrow
380 operator==(const __shared_count& __a, const __shared_count& __b)
439 operator=(const __shared_count<_Lp>& __r) // nothrow
451 operator=(const __weak_count<_Lp>& __r) // nothrow
484 operator==(const __weak_count& __a, const __weak_count& __b)
733 operator=(const __shared_ptr<_Tp1, _Lp>& __r) // never throws
743 operator=(std::auto_ptr<_Tp1>&& __r)
751 operator=(__shared_ptr&& __r
    [all...]
  /build/tools/
fileslist.py 18 import operator, os, sys namespace
40 output.sort(key=operator.itemgetter(0), reverse=True)
  /cts/tests/tests/telephony/src/android/telephony/cts/
TelephonyUtils.java 33 private static boolean isOperator(TelephonyManager telephonyManager, String operator) {
35 return simOperator != null && simOperator.equals(operator);
  /external/chromium/base/i18n/
number_formatting.cc 23 // operator delete, so use the default Delete, which calls operator delete.
  /external/chromium/base/memory/
scoped_nsobject.h 52 bool operator==(NST* that) const { return object_ == that; }
53 bool operator!=(NST* that) const { return object_ != that; }
55 operator NST*() const {
91 bool operator==(C* p1, const scoped_nsobject<C>& p2) {
96 bool operator!=(C* p1, const scoped_nsobject<C>& p2) {
125 bool operator==(id that) const { return object_ == that; }
126 bool operator!=(id that) const { return object_ != that; }
128 operator id() const {
  /external/chromium/base/win/
scoped_gdi_object.h 38 ScopedGDIObject& operator=(T object) {
49 operator T() { return object_; }
  /external/chromium/net/spdy/
spdy_io_buffer.h 39 // Comparison operator to support sorting.
40 bool operator<(const SpdyIOBuffer& other) const {
  /external/chromium/third_party/libjingle/source/talk/base/
scoped_ptr.h 46 scoped_ptr & operator=(scoped_ptr const &);
70 T& operator*() const {
75 T* operator->() const {
128 scoped_array & operator=(scoped_array const &);
152 T& operator[](std::ptrdiff_t i) const {
197 scoped_ptr_malloc & operator=(scoped_ptr_malloc const &);
216 T& operator*() const {
221 T* operator->() const {
  /external/clang/include/clang/AST/
DeclFriend.h 32 /// template <typename U> friend A& operator+=(A&, const U&) { ... }
144 reference operator*() const { return Ptr; }
146 friend_iterator &operator++() {
152 friend_iterator operator++(int) {
158 bool operator==(const friend_iterator &Other) const {
162 bool operator!=(const friend_iterator &Other) const {
166 friend_iterator &operator+=(difference_type N) {
173 friend_iterator operator+(difference_type N) const {
  /external/clang/include/clang/Driver/
OptSpecifier.h 33 bool operator==(OptSpecifier Opt) const { return ID == Opt.getID(); }
34 bool operator!=(OptSpecifier Opt) const { return !(*this == Opt); }
  /external/clang/lib/CodeGen/
CGBlocks.h 67 friend BlockFlags operator|(BlockFlags l, BlockFlags r) {
70 friend BlockFlags &operator|=(BlockFlags &l, BlockFlags r) {
74 friend bool operator&(BlockFlags l, BlockFlags r) {
78 inline BlockFlags operator|(BlockFlag_t l, BlockFlag_t r) {
112 friend BlockFieldFlags operator|(BlockFieldFlags l, BlockFieldFlags r) {
115 friend BlockFieldFlags &operator|=(BlockFieldFlags &l, BlockFieldFlags r) {
119 friend bool operator&(BlockFieldFlags l, BlockFieldFlags r) {
123 inline BlockFieldFlags operator|(BlockFieldFlag_t l, BlockFieldFlag_t r) {
  /external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
p3-0x.cpp 21 A& operator<<(int);
26 A& operator<<(A&&, char);

Completed in 2289 milliseconds

<<31323334353637383940>>