OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:operator
(Results
151 - 175
of
13411
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/SemaCXX/
overloaded-operator.cpp
4
X
operator
+(X, X);
21
Y
operator
+(Y, Y);
22
bool
operator
-(Y, Y); // expected-note{{candidate function}}
23
bool
operator
-(Z, Z); // expected-note{{candidate function}}
27
bool b = y - z; // expected-error{{use of overloaded
operator
'-' is ambiguous}}
31
bool
operator
==(Z&); // expected-note 2{{candidate function}}
36
bool
operator
==(A&, Z&); // expected-note 3{{candidate function}}
40
a == z; // expected-error{{use of overloaded
operator
'==' is ambiguous}}
45
bool
operator
==(const B&) const;
71
float&
operator
==(E1, E2); // expected-note{{candidate function}
[
all
...]
copy-assignment.cpp
6
operator
A();
10
operator
const A();
14
B&
operator
=(B&); // expected-note 4 {{candidate function}}
18
operator
B();
22
operator
B&();
26
operator
const B();
30
operator
const B&();
34
int
operator
=(int); // expected-note{{candidate function}}
35
long
operator
=(long); // expected-note{{candidate function}}
36
int
operator
+=(int); // expected-note{{candidate function}
[
all
...]
new-delete-predefined-decl-2.cpp
8
operator
delete(ptr);
13
::
operator
delete[](ptr);
unary-real-imag.cpp
4
int i = __real__ A(); // expected-error {{invalid type 'A' to __real
operator
}}
5
int j = __imag__ A(); // expected-error {{invalid type 'A' to __imag
operator
}}
user-defined-conversions.cpp
3
operator
bool();
14
operator
short();
15
operator
float();
30
operator
B&();
51
operator
Base();
55
operator
Derived();
59
operator
FunkyDerived();
76
operator
X1();
/ndk/tests/device/test-stlport_shared-exception/jni/
has_nothrow_assign.cpp
20
D&
operator
=(const D&) throw() { return *this; }
25
E&
operator
=(const E&) throw(int) { return *this; }
30
E1&
operator
=(const E1&) throw(int) { throw int(); return *this; }
45
H&
operator
=(H&) throw(int) { return *this; }
50
H1&
operator
=(H1&) throw(int) { throw int(); return *this; }
55
I&
operator
=(I&) throw(int) { return *this; }
56
I&
operator
=(const I&) throw() { return *this; }
61
I1&
operator
=(I1&) throw(int) { throw int(); return *this; }
62
I1&
operator
=(const I1&) throw() { return *this; }
67
J&
operator
=(J&) throw() { return *this;
[
all
...]
has_nothrow_assign_odr.cpp
5
struct S { const S&
operator
= (const S&); };
14
const S& S::
operator
= (const S&) { }
p755.cpp
2
// It checks to see if you can define your own global new
operator
.
10
void*
operator
new(size_t sz) throw (std::bad_alloc) {
p755a.cpp
2
// It checks to see if you can define your own global delete
operator
.
7
void
operator
delete(void *p) throw() {
/ndk/tests/device/test-stlport_static-exception/jni/
has_nothrow_assign.cpp
20
D&
operator
=(const D&) throw() { return *this; }
25
E&
operator
=(const E&) throw(int) { return *this; }
30
E1&
operator
=(const E1&) throw(int) { throw int(); return *this; }
45
H&
operator
=(H&) throw(int) { return *this; }
50
H1&
operator
=(H1&) throw(int) { throw int(); return *this; }
55
I&
operator
=(I&) throw(int) { return *this; }
56
I&
operator
=(const I&) throw() { return *this; }
61
I1&
operator
=(I1&) throw(int) { throw int(); return *this; }
62
I1&
operator
=(const I1&) throw() { return *this; }
67
J&
operator
=(J&) throw() { return *this;
[
all
...]
has_nothrow_assign_odr.cpp
5
struct S { const S&
operator
= (const S&); };
14
const S& S::
operator
= (const S&) { }
p755.cpp
2
// It checks to see if you can define your own global new
operator
.
10
void*
operator
new(size_t sz) throw (std::bad_alloc) {
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
BcDigestProvider.java
1
package org.bouncycastle.
operator
.bc;
5
import org.bouncycastle.
operator
.OperatorCreationException;
/external/clang/test/Analysis/
operator-calls.cpp
5
bool
operator
==(const X0&, const X0&);
17
return
operator
==(a, b);
25
bool
operator
==(int x) const {
39
operator
int() const {
42
operator
bool() const {
57
int
operator
+() const {
64
int
operator
+() const {
82
// Force a cache-out when we try to conjure a temporary region for the
operator
call.
/external/clang/test/CXX/over/over.built/
p25.cpp
7
operator
Color();
11
operator
Color();
/external/clang/test/CXX/special/class.free/
p1.cpp
5
void *
operator
new(size_t) {
8
void *
operator
new[](size_t) {
p6.cpp
5
void
operator
delete(void*) {
8
void
operator
delete[](void*) {
/external/clang/test/Preprocessor/
cxx_oper_keyword.cpp
2
// RUN: %clang_cc1 %s -E -fno-
operator
-names
4
// Not valid in C++ unless -fno-
operator
-names is passed.
/external/clang/test/SemaTemplate/
instantiate-overload-candidates.cpp
34
void
operator
++() {}
35
void
operator
+(int) {}
36
void
operator
+(A) {}
37
void
operator
[](int) {}
38
void
operator
[](A) {}
41
using A::
operator
++;
42
using A::
operator
+;
43
using A::
operator
[];
/external/lzma/CPP/Common/
StdOutStream.cpp
55
CStdOutStream & CStdOutStream::
operator
<<(CStdOutStream & (*aFunction)(CStdOutStream &))
66
CStdOutStream & CStdOutStream::
operator
<<(const char *s)
72
CStdOutStream & CStdOutStream::
operator
<<(const wchar_t *s)
86
CStdOutStream & CStdOutStream::
operator
<<(char c)
92
CStdOutStream & CStdOutStream::
operator
<<(int number)
96
return
operator
<<(textString);
99
CStdOutStream & CStdOutStream::
operator
<<(UInt64 number)
103
return
operator
<<(textString);
/external/stlport/src/
aligned_buffer.h
11
T*
operator
&() {
15
T const*
operator
&() const {
/external/stlport/test/unit/
fib.h
7
inline int
operator
()();
14
Fibonacci::
operator
()()
/ndk/sources/cxx-stl/stlport/src/
aligned_buffer.h
11
T*
operator
&() {
15
T const*
operator
&() const {
/ndk/tests/device/test-gnustl-full/unit/
fib.h
7
inline int
operator
()();
14
Fibonacci::
operator
()()
/ndk/tests/device/test-stlport/unit/
fib.h
7
inline int
operator
()();
14
Fibonacci::
operator
()()
Completed in 465 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>