Searched defs:operator (Results 276 - 300 of 4330) sorted by relevance

<<11121314151617181920>>

/external/stlport/stlport/stl/debug/
H A D_iterator.h175 ptrdiff_t operator-(const _DBG_iter_base<_Container>& __x,
235 // redundant with the copy assignment operator below.
236 _Self& operator=(const _Nonconst_mid& __rhs) {
241 _Self& operator=(const _Self& __rhs) {
246 reference operator*() const;
250 _Self& operator++() {
254 _Self operator++(int) {
259 _Self& operator--() {
263 _Self operator--(int) {
269 _Self& operator
[all...]
/external/bison/examples/calc++/
H A Dlocation.hh117 inline const location operator+ (const location& begin, const location& end)
125 inline const location operator+ (const location& begin, unsigned int width)
133 inline location& operator+= (location& res, unsigned int width)
141 operator== (const location& loc1, const location& loc2)
148 operator!= (const location& loc1, const location& loc2)
161 operator<< (std::basic_ostream<YYChar>& ostr, const location& loc)
/external/chromium_org/sync/syncable/
H A Dsyncable_id.h32 SYNC_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& out, const Id& id);
52 inline Id& operator = (const Id& that) {
77 inline bool operator == (const Id& that) const {
80 inline bool operator != (const Id& that) const {
83 inline bool operator < (const Id& that) const {
86 inline bool operator > (const Id& that) const {
96 // by operator<.
112 // computing lower bounds on std::sets that are ordered by operator<.
119 SYNC_EXPORT_PRIVATE friend std::ostream& operator<<(std::ostream& out,
/external/chromium_org/third_party/WebKit/Source/platform/
H A DLayoutUnit.h109 operator int() const { return toInt(); }
110 operator unsigned() const { return toUnsigned(); }
111 operator double() const { return toDouble(); }
112 operator bool() const { return m_value; }
114 LayoutUnit operator++(int)
163 // Compute fraction using the mod operator to preserve the sign of the value as it may affect rounding.
236 inline bool operator<=(const LayoutUnit& a, const LayoutUnit& b)
241 inline bool operator<=(const LayoutUnit& a, float b)
246 inline bool operator<=(const LayoutUnit& a, int b)
251 inline bool operator<
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DRawPtr.h100 RawPtr& operator=(U* ptr)
107 RawPtr& operator=(RawPtr<U> ptr)
113 RawPtr& operator=(std::nullptr_t)
119 operator T*() const { return m_ptr; }
120 T& operator*() const { return *m_ptr; }
121 T* operator->() const { return m_ptr; }
122 bool operator!() const { return !m_ptr; }
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebString.h72 WebString& operator=(const WebString& s)
116 template <int N> WebString& operator=(const char (&data)[N])
124 BLINK_COMMON_EXPORT WebString& operator=(const WTF::String&);
125 BLINK_COMMON_EXPORT operator WTF::String() const;
128 BLINK_COMMON_EXPORT WebString& operator=(const WTF::AtomicString&);
129 BLINK_COMMON_EXPORT operator WTF::AtomicString() const;
136 WebString& operator=(const base::string16& s)
142 operator base::string16() const
155 WebString& operator=(const base::NullableString16& s)
164 operator bas
[all...]
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dlocalpointer.h54 * There is no operator T *() provided because the programmer must decide
97 bool operator==(const T *other) const { return ptr==other; }
105 bool operator!=(const T *other) const { return ptr!=other; }
117 T &operator*() const { return *ptr; }
123 T *operator->() const { return ptr; }
154 bool operator==(const LocalPointerBase &other);
155 bool operator!=(const LocalPointerBase &other);
156 // No ownership transfer: No copy constructor, no assignment operator.
158 void operator=(const LocalPointerBase &other);
160 static void * U_EXPORT2 operator ne
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-string.h230 operator ::std::string() const { return ::std::string(c_str(), length()); }
237 operator ::string() const { return ::string(c_str(), length()); }
250 bool operator==(const char* a_c_str) const { return Compare(a_c_str) == 0; }
254 bool operator<(const String& rhs) const { return Compare(rhs) < 0; }
258 bool operator!=(const char* a_c_str) const { return !(*this == a_c_str); }
278 const String& operator=(const char* a_c_str) {
283 const String& operator=(const String& rhs) {
316 inline ::std::ostream& operator<<(::std::ostream& os, const String& str) {
/external/clang/include/clang/AST/
H A DAttrIterator.h26 void *operator new(size_t Bytes, const clang::ASTContext &C,
30 void *operator new[](size_t Bytes, const clang::ASTContext &C,
36 void operator delete(void *Ptr, const clang::ASTContext &C, size_t);
37 void operator delete[](void *Ptr, const clang::ASTContext &C, size_t);
80 reference operator*() const {
84 pointer operator->() const {
89 specific_attr_iterator& operator++() {
93 specific_attr_iterator operator++(int) {
99 friend bool operator==(specific_attr_iterator Left,
108 friend bool operator!
[all...]
H A DDeclLookups.h42 reference operator*() const { return It->second.getLookupResult(); }
43 pointer operator->() const { return It->second.getLookupResult(); }
45 all_lookups_iterator& operator++() {
57 all_lookups_iterator operator++(int) {
63 friend bool operator==(all_lookups_iterator x, all_lookups_iterator y) {
66 friend bool operator!=(all_lookups_iterator x, all_lookups_iterator y) {
/external/deqp/framework/common/
H A DtcuInterval.cpp65 Interval operator+ (const Interval& x, const Interval& y)
77 Interval operator- (const Interval& x, const Interval& y)
86 Interval operator* (const Interval& x, const Interval& y)
95 Interval operator/ (const Interval& nom, const Interval& den)
118 Interval operator- (const Interval& x)
153 std::ostream& operator<< (std::ostream& os, const Interval& interval)
H A DtcuInterval.hpp52 ScopedRoundingMode& operator= (const ScopedRoundingMode&);
88 Interval operator| (const Interval& other) const
96 Interval& operator|= (const Interval& other)
101 Interval operator& (const Interval& other) const
108 Interval& operator&= (const Interval& other)
125 Interval operator- (void) const
140 bool operator== (const Interval& other) const
155 inline Interval operator+ (const Interval& x) { return x; }
162 Interval operator+ (const Interval& x, const Interval& y);
163 Interval operator
[all...]
/external/eigen/Eigen/src/Core/
H A DArrayBase.h50 typename NumTraits<typename internal::traits<Derived>::Scalar>::Real>::operator*;
77 using Base::operator=;
78 using Base::operator+=;
79 using Base::operator-=;
80 using Base::operator*=;
81 using Base::operator/=;
118 /** Special case of the template operator=, in order to prevent the compiler
119 * from generating a default operator= (issue hit with g++ 4.1)
121 Derived& operator=(const ArrayBase& other)
126 Derived& operator
[all...]
/external/icu/icu4c/source/common/
H A Dsharedptr.h83 * assignment operator.
85 SharedPtr<T> &operator=(const SharedPtr<T> &other) {
151 const T *operator->() const {
155 const T &operator*() const {
159 bool operator==(const T *other) const {
163 bool operator!=(const T *other) const {
216 static void * U_EXPORT2 operator new(size_t size);
217 static void * U_EXPORT2 operator new[](size_t size);
219 static void * U_EXPORT2 operator new(size_t, void *ptr);
/external/icu/icu4c/source/common/unicode/
H A Dlocalpointer.h54 * There is no operator T *() provided because the programmer must decide
97 bool operator==(const T *other) const { return ptr==other; }
105 bool operator!=(const T *other) const { return ptr!=other; }
117 T &operator*() const { return *ptr; }
123 T *operator->() const { return ptr; }
154 bool operator==(const LocalPointerBase &other);
155 bool operator!=(const LocalPointerBase &other);
156 // No ownership transfer: No copy constructor, no assignment operator.
158 void operator=(const LocalPointerBase &other);
160 static void * U_EXPORT2 operator ne
[all...]
/external/lldb/include/lldb/Core/
H A DConstString.h129 bool operator()(const char* lhs, const char* rhs) const
136 /// Convert to bool operator.
151 operator bool() const
157 /// Assignment operator
168 operator = (const ConstString& rhs)
175 /// Equal to operator
190 operator == (const ConstString& rhs) const
198 /// Not equal to operator
213 operator != (const ConstString& rhs) const
219 operator < (cons
[all...]
/external/llvm/include/llvm/IR/
H A DGetElementPtrTypeIterator.h46 bool operator==(const generic_gep_type_iterator& x) const {
49 bool operator!=(const generic_gep_type_iterator& x) const {
50 return !operator==(x);
53 Type *operator*() const {
62 // This is a non-standard operator->. It allows you to call methods on the
64 Type *operator->() const { return operator*(); }
68 generic_gep_type_iterator& operator++() { // Preincrement
78 generic_gep_type_iterator operator++(int) { // Postincrement
/external/llvm/include/llvm/Support/
H A DStringPool.h18 // To use the value of an interned string, use operator bool and operator*:
75 /// PooledStringPtr - A pointer to an interned string. Use operator bool to
76 /// test whether the pointer is valid, and operator * to get the string if so.
95 PooledStringPtr &operator=(const PooledStringPtr &That) {
131 inline const char *operator*() const { return begin(); }
132 inline LLVM_EXPLICIT operator bool() const { return S != nullptr; }
134 inline bool operator==(const PooledStringPtr &That) const { return S == That.S; }
135 inline bool operator!=(const PooledStringPtr &That) const { return S != That.S; }
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-string.h230 operator ::std::string() const { return ::std::string(c_str(), length()); }
237 operator ::string() const { return ::string(c_str(), length()); }
250 bool operator==(const char* a_c_str) const { return Compare(a_c_str) == 0; }
254 bool operator<(const String& rhs) const { return Compare(rhs) < 0; }
258 bool operator!=(const char* a_c_str) const { return !(*this == a_c_str); }
278 const String& operator=(const char* a_c_str) {
283 const String& operator=(const String& rhs) {
316 inline ::std::ostream& operator<<(::std::ostream& os, const String& str) {
/external/lzma/CPP/Common/
H A DBuffer.h24 operator T *() { return _items; };
25 operator const T *() const { return _items; };
44 CBuffer& operator=(const CBuffer &buffer)
57 bool operator==(const CBuffer<T>& b1, const CBuffer<T>& b2)
68 bool operator!=(const CBuffer<T>& b1, const CBuffer<T>& b2)
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-string.h230 operator ::std::string() const { return ::std::string(c_str(), length()); }
237 operator ::string() const { return ::string(c_str(), length()); }
250 bool operator==(const char* a_c_str) const { return Compare(a_c_str) == 0; }
254 bool operator<(const String& rhs) const { return Compare(rhs) < 0; }
258 bool operator!=(const char* a_c_str) const { return !(*this == a_c_str); }
278 const String& operator=(const char* a_c_str) {
283 const String& operator=(const String& rhs) {
316 inline ::std::ostream& operator<<(::std::ostream& os, const String& str) {
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-string.h229 operator ::std::string() const { return ::std::string(c_str(), length()); }
237 operator ::string() const { return ::string(c_str(), length()); }
250 bool operator==(const char* c_str) const { return Compare(c_str) == 0; }
254 bool operator<(const String& rhs) const { return Compare(rhs) < 0; }
258 bool operator!=(const char* c_str) const { return !(*this == c_str); }
278 const String& operator=(const char* c_str) { return *this = String(c_str); }
281 const String& operator=(const String& rhs) {
314 inline ::std::ostream& operator<<(::std::ostream& os, const String& str) {
/external/qemu/android/base/
H A DString.h73 char& operator[](size_t index) { return mStr[index]; }
74 const char& operator[](size_t index) const { return mStr[index]; }
85 String& operator=(const char* str) {
89 String& operator=(const String& other) {
93 String& operator=(const StringView& other) {
97 String& operator=(char ch) {
109 String& operator+=(const char* str) {
113 String& operator+=(const String& other) {
117 String& operator+=(const StringView& other) {
121 String& operator
[all...]
/external/chromium_org/mojo/public/cpp/bindings/
H A Dstring.h43 String& operator=(const std::string& str) {
48 String& operator=(const char* chars) {
70 const char& operator[](size_t offset) const { return value_[offset]; }
73 operator const std::string&() const { return value_; }
89 operator Testable() const { return is_null_ ? 0 : &String::value_; }
96 inline bool operator==(const String& a, const String& b) {
99 inline bool operator==(const char* a, const String& b) {
102 inline bool operator==(const String& a, const char* b) {
105 inline bool operator!=(const String& a, const String& b) { return !(a == b); }
106 inline bool operator!
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatSize.h117 operator CGSize() const;
120 operator NSSize() const;
128 inline FloatSize& operator+=(FloatSize& a, const FloatSize& b)
135 inline FloatSize& operator-=(FloatSize& a, const FloatSize& b)
142 inline FloatSize operator+(const FloatSize& a, const FloatSize& b)
147 inline FloatSize operator-(const FloatSize& a, const FloatSize& b)
152 inline FloatSize operator-(const FloatSize& size)
157 inline FloatSize operator*(const FloatSize& a, const float b)
162 inline FloatSize operator*(const float a, const FloatSize& b)
167 inline bool operator
[all...]

Completed in 1544 milliseconds

<<11121314151617181920>>