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

<<21222324252627282930>>

  /external/llvm/include/llvm/ADT/
OwningPtr.h 29 OwningPtr &operator=(OwningPtr const &); // DO NOT IMPLEMENT
56 T &operator*() const {
61 T *operator->() const { return Ptr; }
63 operator bool() const { return Ptr != 0; }
64 bool operator!() const { return Ptr == 0; }
83 OwningArrayPtr &operator=(OwningArrayPtr const &); // DO NOT IMPLEMENT
110 T &operator[](std::ptrdiff_t i) const {
116 operator bool() const { return Ptr != 0; }
117 bool operator!() const { return Ptr == 0; }
  /external/llvm/include/llvm/Support/
StringPool.h 18 // To use the value of an interned string, use operator bool and operator*:
74 /// PooledStringPtr - A pointer to an interned string. Use operator bool to
75 /// test whether the pointer is valid, and operator * to get the string if so.
94 PooledStringPtr &operator=(const PooledStringPtr &That) {
130 inline const char *operator*() const { return begin(); }
131 inline operator bool() const { return S != 0; }
133 inline bool operator==(const PooledStringPtr &That) { return S == That.S; }
134 inline bool operator!=(const PooledStringPtr &That) { return S != That.S; }
  /external/llvm/test/TableGen/
SetTheory.td 20 // The 'add' operator evaluates and concatenates its arguments.
48 // The 'sub' operator returns the first argument with the following arguments
62 // The 'and' operator intersects two sets. The result has the same order as the
70 // The 'shl' operator removes the first N elements.
83 // The 'trunc' operator truncates after the first N elements.
96 // The 'rotl' operator rotates left, but also accepts a negative shift.
115 // The 'rotr' operator rotates right, but also accepts a negative shift.
134 // The 'decimate' operator picks every N'th element.
158 // The 'sequence' operator finds a sequence of records from their name.
  /external/opencv/cvaux/src/
_cvaux.h 54 CV_INLINE bool operator == (CvSize size1, CvSize size2 );
55 CV_INLINE bool operator == (CvSize size1, CvSize size2 )
60 CV_INLINE bool operator != (CvSize size1, CvSize size2 );
61 CV_INLINE bool operator != (CvSize size1, CvSize size2 )
  /external/skia/include/core/
SkString.h 79 char operator[](size_t n) const { return this->c_str()[n]; }
92 friend int operator==(const SkString& a, const SkString& b) {
95 friend int operator!=(const SkString& a, const SkString& b) {
101 SkString& operator=(const SkString&);
102 SkString& operator=(const char text[]);
105 char& operator[](size_t n) { return this->writable_str()[n]; }
148 SkString& operator+=(const SkString& s) { this->append(s); return *this; }
149 SkString& operator+=(const char text[]) { this->append(text); return *this; }
150 SkString& operator+=(const char c) { this->append(&c, 1); return *this; }
  /external/skia/src/animator/
SkScriptRuntime.h 40 SkScriptRuntime& operator=(const SkScriptRuntime&);
  /external/sonivox/arm-fm-22k/lib_src/
eas_fmengine.h 63 /* operator structure for FM engine */
73 S_FM_ENG_OPER oper[4]; /* operator data */
87 EAS_U16 gain[4]; /* initial operator gain value */
88 EAS_U16 outputGain[4]; /* initial operator output gain value */
99 EAS_U16 gain[4]; /* new operator gain value */
105 #define FLAG_FM_ENG_VOICE_OP1_NOISE 0x10 /* operator 1 source is PRNG */
106 #define FLAG_FM_ENG_VOICE_OP2_NOISE 0x20 /* operator 2 source is PRNG */
107 #define FLAG_FM_ENG_VOICE_OP3_NOISE 0x40 /* operator 3 source is PRNG */
108 #define FLAG_FM_ENG_VOICE_OP4_NOISE 0x80 /* operator 4 source is PRNG */
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_fmengine.h 63 /* operator structure for FM engine */
73 S_FM_ENG_OPER oper[4]; /* operator data */
87 EAS_U16 gain[4]; /* initial operator gain value */
88 EAS_U16 outputGain[4]; /* initial operator output gain value */
99 EAS_U16 gain[4]; /* new operator gain value */
105 #define FLAG_FM_ENG_VOICE_OP1_NOISE 0x10 /* operator 1 source is PRNG */
106 #define FLAG_FM_ENG_VOICE_OP2_NOISE 0x20 /* operator 2 source is PRNG */
107 #define FLAG_FM_ENG_VOICE_OP3_NOISE 0x40 /* operator 3 source is PRNG */
108 #define FLAG_FM_ENG_VOICE_OP4_NOISE 0x80 /* operator 4 source is PRNG */
  /external/stlport/stlport/stl/
_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...]
_ostreambuf_iterator.h 61 ostreambuf_iterator<_CharT, _Traits>& operator=(char_type __c) {
67 ostreambuf_iterator<_CharT, _Traits>& operator*() { return *this; }
68 ostreambuf_iterator<_CharT, _Traits>& operator++() { return *this; }
69 ostreambuf_iterator<_CharT, _Traits>& operator++(int) { return *this; }
_stream_iterator.h 111 reference operator*() const {
120 _Self& operator++() {
124 _Self operator++(int) {
180 _Self& operator=(const _TpP& __val) {
185 _Self& operator*() { return *this; }
186 _Self& operator++() { return *this; }
187 _Self& operator++(int) { return *this; }
212 operator==(const istream_iterator< __ISI_TMPL_ARGUMENTS >& __x,
219 operator!=(const istream_iterator< __ISI_TMPL_ARGUMENTS >& __x,
  /external/stlport/test/eh/
TestClass.cpp 20 std::ostream& operator << (std::ostream& s, const TestClass& t) {
  /external/valgrind/main/drd/tests/
annotate_smart_pointer.cpp 51 LONG operator++() { return InterlockedIncrement(&m_value); }
52 LONG operator--() { return InterlockedDecrement(&m_value); }
113 int operator++() { return __sync_add_and_fetch(&m_value, 1); }
114 int operator--() { return __sync_sub_and_fetch(&m_value, 1); }
200 smart_ptr& operator=(const smart_ptr<T>& sp)
206 smart_ptr& operator=(T* const p)
213 smart_ptr& operator=(Q* const q)
219 T* operator->() const
225 T& operator*() const
  /external/webkit/Source/JavaScriptCore/wtf/
SegmentedVector.h 36 // An iterator for SegmentedVector. It supports only the pre ++ operator
46 T& operator*() const { return m_vector.m_segments.at(m_segment)->at(m_index); }
47 T* operator->() const { return &m_vector.m_segments.at(m_segment)->at(m_index); }
49 // Only prefix ++ operator supported
50 Iterator& operator++()
68 bool operator==(const Iterator& other) const
73 bool operator!=(const Iterator& other) const
78 SegmentedVectorIterator& operator=(const SegmentedVectorIterator<T, SegmentSize>& other)
128 T& operator[](size_t index)
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
UnfoldSelect.h 6 // UnfoldSelect is an AST traverser to output the select operator ?: as if-else statements
  /external/webkit/Source/WebCore/bindings/v8/
OptionsObject.h 43 OptionsObject& operator=(const OptionsObject&);
56 static void* operator new(size_t);
57 static void* operator new[](size_t);
58 static void operator delete(void *);
  /external/webkit/Source/WebCore/css/
CSSImportRule.h 71 void* operator new(size_t size);
72 void* operator new[](size_t size);
73 void operator delete(void* p, size_t size);
74 void operator delete[](void* p, size_t size);
StyleBase.h 77 void* operator new(size_t size);
78 void* operator new[](size_t size);
81 void operator delete(void* p, size_t size);
82 void operator delete[](void* p, size_t size);
  /external/webkit/Source/WebCore/dom/
ProcessingInstruction.h 61 void* operator new(size_t size);
62 void* operator new[](size_t size);
63 void operator delete(void* p, size_t size);
64 void operator delete[](void* p, size_t size);
  /external/webkit/Source/WebCore/html/
HTMLDocument.h 87 void* operator new(size_t size);
88 void* operator new[](size_t size);
89 void operator delete(void* p, size_t size);
90 void operator delete[](void* p, size_t size);
  /external/webkit/Source/WebCore/platform/
KURL.h 199 operator const String&() const { return string(); }
208 operator NSURL*() const;
211 operator NSString*() const { return string(); }
216 operator QUrl() const;
265 bool operator==(const KURL&, const KURL&);
266 bool operator==(const KURL&, const String&);
267 bool operator==(const String&, const KURL&);
268 bool operator!=(const KURL&, const KURL&);
269 bool operator!=(const KURL&, const String&);
270 bool operator!=(const String&, const KURL&)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
FloatPoint3D.h 132 inline FloatPoint3D& operator +=(FloatPoint3D& a, const FloatPoint3D& b)
138 inline FloatPoint3D& operator -=(FloatPoint3D& a, const FloatPoint3D& b)
144 inline FloatPoint3D operator+(const FloatPoint3D& a, const FloatPoint3D& b)
149 inline FloatPoint3D operator-(const FloatPoint3D& a, const FloatPoint3D& b)
154 inline bool operator==(const FloatPoint3D& a, const FloatPoint3D& b)
159 inline bool operator!=(const FloatPoint3D& a, const FloatPoint3D& b)
164 inline float operator*(const FloatPoint3D& a, const FloatPoint3D& b)
170 inline FloatPoint3D operator*(float k, const FloatPoint3D& v)
175 inline FloatPoint3D operator*(const FloatPoint3D& v, float k)
FloatSize.h 94 operator CGSize() const;
100 operator NSSize() const;
107 inline FloatSize& operator+=(FloatSize& a, const FloatSize& b)
114 inline FloatSize& operator-=(FloatSize& a, const FloatSize& b)
121 inline FloatSize operator+(const FloatSize& a, const FloatSize& b)
126 inline FloatSize operator-(const FloatSize& a, const FloatSize& b)
131 inline FloatSize operator-(const FloatSize& size)
136 inline bool operator==(const FloatSize& a, const FloatSize& b)
141 inline bool operator!=(const FloatSize& a, const FloatSize& b)
  /external/webkit/Source/WebKit/chromium/public/
WebFloatPoint.h 65 WebFloatPoint& operator=(const WebCore::FloatPoint& p)
72 operator WebCore::FloatPoint() const
79 inline bool operator==(const WebFloatPoint& a, const WebFloatPoint& b)
84 inline bool operator!=(const WebFloatPoint& a, const WebFloatPoint& b)
WebFloatRect.h 75 WebFloatRect& operator=(const WebCore::FloatRect& r)
84 operator WebCore::FloatRect() const
91 inline bool operator==(const WebFloatRect& a, const WebFloatRect& b)
96 inline bool operator!=(const WebFloatRect& a, const WebFloatRect& b)

Completed in 451 milliseconds

<<21222324252627282930>>