OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:operator
(Results
101 - 125
of
13411
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/CXX/special/class.copy/
p20.cpp
5
ConstCopy &
operator
=(const ConstCopy&);
10
NonConstCopy &
operator
=(NonConstCopy&);
15
VirtualInheritsNonConstCopy &
operator
=(const VirtualInheritsNonConstCopy&);
18
struct ImplicitNonConstCopy1 : NonConstCopy { // expected-note{{the implicit copy assignment
operator
}}
22
struct ImplicitNonConstCopy2 { // expected-note{{the implicit copy assignment
operator
}}
27
struct ImplicitNonConstCopy3 { // expected-note{{the implicit copy assignment
operator
}}
/external/clang/test/SemaCXX/
deleted-operator.cpp
4
bool
operator
~() = delete; // expected-note {{explicitly deleted}}
5
bool
operator
==(const PR10757&) = delete; // expected-note {{explicitly deleted}}
6
operator
float();
11
if(~a1) {} // expected-error {{overload resolution selected deleted
operator
}} expected-note 8 {{built-in candidate}}
12
if(a1==a1) {} // expected-error {{overload resolution selected deleted
operator
}} expected-note 121 {{built-in candidate}}
17
void
operator
delete(void*) = delete; // expected-note {{deleted here}}
virtual-member-functions-key-function.cpp
6
struct B : A { // expected-error {{no suitable member '
operator
delete' in 'B'}}
8
void
operator
delete(void *, int); // expected-note {{'
operator
delete' declared here}}
11
struct C : A { // expected-error {{no suitable member '
operator
delete' in 'C'}}
12
void
operator
delete(void *, int); // expected-note {{'
operator
delete' declared here}}
builtin-ptrtomember-overload.cpp
7
operator
A*();
21
operator
const D *();
25
operator
volatile int D::*();
cxx11-ast-print.cpp
3
// CHECK: auto
operator
"" _foo(const char *p, decltype(sizeof(int))) -> decltype(nullptr);
4
auto
operator
"" _foo(const char *p, decltype(sizeof(int))) -> decltype(nullptr);
6
// CHECK: decltype(""_foo)
operator
"" _bar(unsigned long long);
7
decltype(""_foo)
operator
"" _bar(unsigned long long);
9
// CHECK: decltype(42_bar)
operator
"" _baz(long double);
10
decltype(42_bar)
operator
"" _baz(long double);
12
// CHECK: decltype(4.5_baz)
operator
"" _baz(char);
13
decltype(4.5_baz)
operator
"" _baz(char);
15
// CHECK: const char *
operator
"" _quux(const char *);
16
const char *
operator
"" _quux(const char *)
[
all
...]
/external/clang/test/SemaObjCXX/
pointer-to-objc-pointer-conv.mm
31
operator
id() const { return (id)_value; }
32
operator
Class() const { return (Class)_value; }
33
operator
I1*() const { return (I1*)_value; }
39
Wrapper &
operator
*();
40
Wrapper &
operator
[](int);
41
Wrapper&
operator
->*(int);
static-cast.mm
15
AutoreleaseObject&
operator
=(NSResponder* inValue);
16
AutoreleaseObject&
operator
=(const AutoreleaseObject& inValue);
20
operator
NSResponder*() const;
/external/clang/test/SemaTemplate/
inject-templated-friend.cpp
15
friend std_ostream&
operator
<< (std_ostream& o, const Streamer& f) // expected-error{{redefinition of '
operator
<<'}}
25
void
operator
() (std_ostream&) const;
30
std_ostream&
operator
<< (std_ostream&, const Streamer<Foo>&);
32
std_ostream&
operator
<< (std_ostream& o, const Streamer<Foo>&) // expected-note{{is here}}
40
void Streamer<Foo>::
operator
() (std_ostream& o) const // expected-note{{requested here}}
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/
input_iterator.h
20
reference
operator
*() const {return *it_;}
21
pointer
operator
->() const {return it_;}
23
input_iterator&
operator
++() {++it_; return *this;}
24
input_iterator
operator
++(int) {input_iterator tmp(*this); ++(*this); return tmp;}
26
friend bool
operator
==(const input_iterator& x, const input_iterator& y)
28
friend bool
operator
!=(const input_iterator& x, const input_iterator& y)
/bionic/libstdc++/include/
typeinfo
20
bool
operator
==(type_info const & right) const;
21
bool
operator
!=(type_info const & right) const;
26
type_info &
operator
=(type_info const & right);
/external/clang/test/CXX/expr/expr.unary/expr.new/
p20-0x.cpp
6
static void*
operator
new(size_t, size_t);
8
static void
operator
delete(void*, size_t); // expected-note{{declared here}}
12
S* p = new (0) S; // expected-error{{'new' expression with placement arguments refers to non-placement '
operator
delete'}}
/external/clang/test/CXX/lex/lex.literal/lex.ext/
p1.cpp
3
void
operator
"" p31(long double); // expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
4
void
operator
"" _p31(long double);
5
long double
operator
"" pi(long double); // expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
/external/clang/test/CodeGenCXX/
cxx11-unrestricted-union.cpp
4
A(); A(const A&); A(A&&); A &
operator
=(const A&); A &
operator
=(A&&); ~A();
7
B(); B(const B&); B(B&&); B &
operator
=(const B&); B &
operator
=(B&&); ~B();
14
U &
operator
=(const U&);
15
U &
operator
=(U&&);
26
U &U::
operator
=(const U&) { return *this; }
27
U &U::
operator
=(U &&) { return *this; }
34
S &
operator
=(const S&);
35
S &
operator
=(S&&)
[
all
...]
new-with-default-arg.cpp
5
void*
operator
new(__typeof(sizeof(int)));
14
void*
operator
new(__typeof(sizeof(int)), int = 1, int = 4);
24
void*
operator
new(__typeof(sizeof(int)), int, int = 4);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/
test_hash.h
16
operator
()(typename std::add_lvalue_reference<const typename C::argument_type>::type x) const
17
{return C::
operator
()(x);}
19
bool
operator
==(const test_hash& c) const
/ndk/sources/cxx-stl/system/include/
typeinfo
20
bool
operator
==(type_info const & right) const;
21
bool
operator
!=(type_info const & right) const;
26
type_info &
operator
=(type_info const & right);
/prebuilts/ndk/5/sources/cxx-stl/system/include/
typeinfo
20
bool
operator
==(type_info const & right) const;
21
bool
operator
!=(type_info const & right) const;
26
type_info &
operator
=(type_info const & right);
/prebuilts/ndk/6/sources/cxx-stl/system/include/
typeinfo
20
bool
operator
==(type_info const & right) const;
21
bool
operator
!=(type_info const & right) const;
26
type_info &
operator
=(type_info const & right);
/prebuilts/ndk/7/sources/cxx-stl/system/include/
typeinfo
20
bool
operator
==(type_info const & right) const;
21
bool
operator
!=(type_info const & right) const;
26
type_info &
operator
=(type_info const & right);
/prebuilts/ndk/8/sources/cxx-stl/system/include/
typeinfo
20
bool
operator
==(type_info const & right) const;
21
bool
operator
!=(type_info const & right) const;
26
type_info &
operator
=(type_info const & right);
/prebuilts/ndk/9/sources/cxx-stl/system/include/
typeinfo
20
bool
operator
==(type_info const & right) const;
21
bool
operator
!=(type_info const & right) const;
26
type_info &
operator
=(type_info const & right);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DigestCalculatorProvider.java
1
package org.bouncycastle.
operator
;
OperatorCreationException.java
1
package org.bouncycastle.
operator
;
/external/chromium_org/third_party/WebKit/Source/web/tests/data/viewport/
viewport-85.html
2
<title>Space can occur before and after assignment
operator
</title>
viewport-88.html
2
<title>Colon is not an assignment
operator
</title>
Completed in 560 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>