OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:operator
(Results
926 - 950
of
6015
) sorted by null
<<
31
32
33
34
35
36
37
38
39
40
>>
/external/collada/include/1.4/dom/
domGles_sampler_state.h
66
* Overloaded assignment
operator
68
virtual domWrap_s &
operator
=( const domWrap_s &cpy ) { (void)cpy; return *this; }
124
* Overloaded assignment
operator
126
virtual domWrap_t &
operator
=( const domWrap_t &cpy ) { (void)cpy; return *this; }
182
* Overloaded assignment
operator
184
virtual domMinfilter &
operator
=( const domMinfilter &cpy ) { (void)cpy; return *this; }
240
* Overloaded assignment
operator
242
virtual domMagfilter &
operator
=( const domMagfilter &cpy ) { (void)cpy; return *this; }
298
* Overloaded assignment
operator
300
virtual domMipfilter &
operator
=( const domMipfilter &cpy ) { (void)cpy; return *this;
[
all
...]
/external/llvm/include/llvm/ADT/
DenseMap.h
78
operator
delete(Buckets);
216
ValueT &
operator
[](const KeyT &Key) {
220
DenseMap&
operator
=(const DenseMap& other) {
257
operator
delete(Buckets);
267
Buckets = static_cast<BucketT*>(
operator
new(sizeof(BucketT) * NumBuckets));
383
Buckets = static_cast<BucketT*>(
operator
new(sizeof(BucketT)*InitBuckets));
401
Buckets = static_cast<BucketT*>(
operator
new(sizeof(BucketT)*NumBuckets));
432
operator
delete(OldBuckets);
443
Buckets = static_cast<BucketT*>(
operator
new(sizeof(BucketT)*NumBuckets));
465
operator
delete(OldBuckets)
[
all
...]
APInt.h
189
/// out-of-line slow case for
operator
&
192
/// out-of-line slow case for
operator
|
195
/// out-of-line slow case for
operator
^
198
/// out-of-line slow case for
operator
=
201
/// out-of-line slow case for
operator
==
204
/// out-of-line slow case for
operator
==
523
/// @brief Postfix increment
operator
.
524
const APInt
operator
++(int) {
531
/// @brief Prefix increment
operator
.
532
APInt&
operator
++()
[
all
...]
/frameworks/base/include/utils/
Vector.h
56
/*! copy
operator
*/
57
const Vector<TYPE>&
operator
= (const Vector<TYPE>& rhs) const;
58
Vector<TYPE>&
operator
= (const Vector<TYPE>& rhs);
60
const Vector<TYPE>&
operator
= (const SortedVector<TYPE>& rhs) const;
61
Vector<TYPE>&
operator
= (const SortedVector<TYPE>& rhs);
96
inline const TYPE&
operator
[] (size_t index) const;
97
//! alternate name for
operator
[]
101
//! same as
operator
[], but allows to access the vector backward (from the end) with a negative index
235
Vector<TYPE>& Vector<TYPE>::
operator
= (const Vector<TYPE>& rhs) {
236
VectorImpl::
operator
= (rhs)
[
all
...]
/external/chromium/base/
string_piece.h
83
char
operator
[](size_type i) const { return ptr_[i]; }
167
BASE_API bool
operator
==(const StringPiece& x, const StringPiece& y);
169
inline bool
operator
!=(const StringPiece& x, const StringPiece& y) {
173
inline bool
operator
<(const StringPiece& x, const StringPiece& y) {
179
inline bool
operator
>(const StringPiece& x, const StringPiece& y) {
183
inline bool
operator
<=(const StringPiece& x, const StringPiece& y) {
187
inline bool
operator
>=(const StringPiece& x, const StringPiece& y) {
/external/clang/include/clang/AST/
DependentDiagnostic.h
137
reference
operator
*() const { return Ptr; }
139
ddiag_iterator &
operator
++() {
145
ddiag_iterator
operator
++(int) {
151
bool
operator
==(ddiag_iterator Other) const {
155
bool
operator
!=(ddiag_iterator Other) const {
159
ddiag_iterator &
operator
+=(difference_type N) {
166
ddiag_iterator
operator
+(difference_type N) const {
/external/clang/include/clang/Basic/
VersionTuple.h
72
friend bool
operator
==(const VersionTuple& X, const VersionTuple &Y) {
79
friend bool
operator
!=(const VersionTuple &X, const VersionTuple &Y) {
85
friend bool
operator
<(const VersionTuple &X, const VersionTuple &Y) {
97
friend bool
operator
>(const VersionTuple &X, const VersionTuple &Y) {
104
friend bool
operator
<=(const VersionTuple &X, const VersionTuple &Y) {
111
friend bool
operator
>=(const VersionTuple &X, const VersionTuple &Y) {
120
raw_ostream&
operator
<<(raw_ostream &Out, const VersionTuple &V);
/external/clang/test/CXX/class/class.union/
p1.cpp
27
// FIXME: this should eventually trigger on the
operator
's declaration line
28
class CopyAssign { // expected-note 4 {{because type 'CopyAssign' has a user-declared copy assignment
operator
}}
29
CopyAssign&
operator
=(CopyAssign& CA) { abort(); }
42
CopyAssign copyassign; // expected-error {{union member 'copyassign' has a non-trivial copy assignment
operator
}}
65
} m5; // expected-error {{union member 'm5' has a non-trivial copy assignment
operator
}}
85
struct s5 : CopyAssign { // expected-note {{because type 'U3::s5' has a base class with a non-trivial copy assignment
operator
}}
86
} m5; // expected-error {{union member 'm5' has a non-trivial copy assignment
operator
}}
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-0x.cpp
20
operator
T(); // expected-note 2{{candidate function}}
98
operator
int&();
115
operator
B(); // expected-note{{candidate function}}
116
operator
int&(); // expected-note{{candidate function}}
173
int&
operator
[](const string& __k);
175
int&
operator
[](const string&& __k);
187
operator
Value &() const ;
/external/clang/test/SemaTemplate/
example-dynarray.cpp
7
void*
operator
new(size_t, void* ptr) throw() {
10
void
operator
delete(void*, void*) throw() {
33
dynarray &
operator
=(const dynarray &other) {
58
T&
operator
[](unsigned Idx) {
62
const T&
operator
[](unsigned Idx) const {
75
bool
operator
==(const dynarray &other) const {
86
bool
operator
!=(const dynarray &other) const {
instantiate-expr-1.cpp
78
Incrementable &
operator
++();
97
B
operator
++(B &, int);
103
Addable
operator
+(const Addable&) const;
111
int &
operator
()(int);
112
double &
operator
()(double);
117
// PR5266: non-dependent invocations of a function call
operator
.
158
void *
operator
new(__SIZE_TYPE__) {
/external/skia/src/animator/
SkTDArray_Experimental.h
44
SkDS32Array&
operator
=(const SkDS32Array& src);
45
friend int
operator
==(const SkDS32Array& a, const SkDS32Array& b);
118
T&
operator
[](int index) const { SYNC(); SkASSERT((unsigned)index < fCount); return ((T*) fArray)[index]; }
119
SkTDS32Array<T>&
operator
=(const SkTDS32Array<T>& src) {
120
return (SkTDS32Array<T>&) SkDS32Array::
operator
=(src); }
121
friend int
operator
==(const SkTDS32Array<T>& a, const SkTDS32Array<T>& b) {
122
return
operator
==((const SkDS32Array&) a, (const SkDS32Array&) b); }
/external/webkit/Source/JavaScriptCore/runtime/
WriteBarrier.h
73
T*
operator
*() const
82
T*
operator
->() const
93
operator
UnspecifiedBoolType*() const { return m_cell ? reinterpret_cast<UnspecifiedBoolType*>(1) : 0; }
95
bool
operator
!() const { return !m_cell; }
150
operator
UnspecifiedBoolType*() const { return get() ? reinterpret_cast<UnspecifiedBoolType*>(1) : 0; }
151
bool
operator
!() const { return !get(); }
183
template <typename U, typename V> inline bool
operator
==(const WriteBarrierBase<U>& lhs, const WriteBarrierBase<V>& rhs)
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-105972.js
48
* The *
operator
is greedy, but *? is non-greedy: it will stop
64
* the string, so the non-greedy
operator
*? doesn't try to...
75
* Try '$' combined with an 'or'
operator
.
77
* The
operator
*? will consume the string from left to right,
79
* the match will stop because the
operator
*? is non-greedy.
92
* Again, '$' combined with an 'or'
operator
.
94
* The
operator
* will consume the string from left to right,
/external/webkit/Source/WebCore/dom/
QualifiedName.h
70
const QualifiedName&
operator
=(const QualifiedName& other) { other.ref(); deref(); m_impl = other.m_impl; return *this; }
72
bool
operator
==(const QualifiedName& other) const { return m_impl == other.m_impl; }
73
bool
operator
!=(const QualifiedName& other) const { return !(*this == other); }
109
inline bool
operator
==(const AtomicString& a, const QualifiedName& q) { return a == q.localName(); }
110
inline bool
operator
!=(const AtomicString& a, const QualifiedName& q) { return a != q.localName(); }
111
inline bool
operator
==(const QualifiedName& q, const AtomicString& a) { return a == q.localName(); }
112
inline bool
operator
!=(const QualifiedName& q, const AtomicString& a) { return a != q.localName(); }
/external/webkit/Source/WebCore/platform/graphics/gpu/
PODInterval.h
52
// -
operator
<
53
// -
operator
==
54
// -
operator
=
57
// constructor and assignment
operator
.
71
//
operator
in order to be stored in the red-black tree.
121
bool
operator
<(const PODInterval& other) const
128
bool
operator
==(const PODInterval& other) const
/external/webkit/Source/WebKit/chromium/public/
WebVector.h
87
WebVector&
operator
=(const WebVector& other)
95
WebVector<T>&
operator
=(const C& other)
118
T&
operator
[](size_t i)
123
const T&
operator
[](size_t i) const
154
m_ptr = static_cast<T*>(::
operator
new(sizeof(T) * m_size));
167
m_ptr = static_cast<T*>(::
operator
new(sizeof(T) * m_size));
177
::
operator
delete(m_ptr);
/frameworks/compile/linkloader/include/
ELFTypes.h
75
TYPE &
operator
=(TYPE const &with) { value = with.value; return *this; } \
76
TYPE &
operator
=(IMPL val) { value = val; return *this; } \
78
operator
IMPL() const { return value; } \
93
extern llvm::raw_ostream &
operator
<<(llvm::raw_ostream &,
95
extern llvm::raw_ostream &
operator
<<(llvm::raw_ostream &,
97
extern llvm::raw_ostream &
operator
<<(llvm::raw_ostream &,
99
extern llvm::raw_ostream &
operator
<<(llvm::raw_ostream &,
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
etip.h
156
NCursesException&
operator
=(const NCursesException& rhs)
204
NCursesPanelException&
operator
=(const NCursesPanelException& rhs)
207
NCursesException::
operator
=(rhs);
255
NCursesMenuException&
operator
=(const NCursesMenuException& rhs)
258
NCursesException::
operator
=(rhs);
306
NCursesFormException&
operator
=(const NCursesFormException& rhs)
309
NCursesException::
operator
=(rhs);
/external/llvm/include/llvm/
User.h
34
void *
operator
new(size_t); // Do not implement
39
/// For nodes of fixed arity (e.g. a binary
operator
) this array will live
49
void *
operator
new(size_t s, unsigned Us);
56
// Reset NumOperands so User::
operator
delete() does the right thing.
63
///
operator
delete - free memory allocated for User and Use objects
64
void
operator
delete(void *Usr);
66
void
operator
delete(void*, unsigned) {
70
void
operator
delete(void*, unsigned, bool) {
124
// valid on an object that has "dropped all references", except
operator
/external/tinyxml/docs/
tinystr_8h-source.html
38
<a name="l00031"></a>00031 <span class="comment"> * - fixed buggy compares
operator
==(),
operator
<(), and
operator
>()</span>
39
<a name="l00032"></a>00032 <span class="comment"> * - fixed
operator
+=() to take a const ref argument, following spec.</span>
41
<a name="l00034"></a>00034 <span class="comment"> * - added swap(), clear(), size(), capacity(),
operator
+().</span>
101
<a name="l00094"></a>00094 <span class="comment">// =
operator
</span>
102
<a name="l00095"></a>00095 TiXmlString&
operator
= (<span class="keyword">const</span> <span class="keywordtype">char</span> * copy)
107
<a name="l00100"></a>00100 <span class="comment">// =
operator
</span>
108
<a name="l00101"></a>00101 TiXmlString&
operator
= (<span class="keyword">const</span> TiXmlString & copy)
114
<a name="l00107"></a>00107 <span class="comment">// +=
operator
. Maps to append</span
[
all
...]
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/backward/
auto_ptr.h
126
* @brief %auto_ptr assignment
operator
.
134
operator
=(auto_ptr& __a) throw()
141
* @brief %auto_ptr assignment
operator
.
152
operator
=(auto_ptr<_Tp1>& __a) throw()
179
operator
*() const throw()
192
operator
->() const throw()
262
operator
=(auto_ptr_ref<element_type> __ref) throw()
273
operator
auto_ptr_ref<_Tp1>() throw()
277
operator
auto_ptr<_Tp1>() throw()
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/backward/
auto_ptr.h
126
* @brief %auto_ptr assignment
operator
.
134
operator
=(auto_ptr& __a) throw()
141
* @brief %auto_ptr assignment
operator
.
152
operator
=(auto_ptr<_Tp1>& __a) throw()
179
operator
*() const throw()
192
operator
->() const throw()
262
operator
=(auto_ptr_ref<element_type> __ref) throw()
273
operator
auto_ptr_ref<_Tp1>() throw()
277
operator
auto_ptr<_Tp1>() throw()
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/backward/
auto_ptr.h
126
* @brief %auto_ptr assignment
operator
.
134
operator
=(auto_ptr& __a) throw()
141
* @brief %auto_ptr assignment
operator
.
152
operator
=(auto_ptr<_Tp1>& __a) throw()
179
operator
*() const throw()
192
operator
->() const throw()
262
operator
=(auto_ptr_ref<element_type> __ref) throw()
273
operator
auto_ptr_ref<_Tp1>() throw()
277
operator
auto_ptr<_Tp1>() throw()
/abi/cpp/include/
typeinfo
50
operator
==(const type_info &ti) const;
54
operator
!=(const type_info &ti) const;
68
operator
=(const type_info& rhs);
Completed in 856 milliseconds
<<
31
32
33
34
35
36
37
38
39
40
>>