OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:operator
(Results
51 - 75
of
6015
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/SemaCXX/
conversion-function.cpp
4
operator
bool();
5
operator
int() const;
8
return
operator
bool();
12
return
operator
float(); // expected-error{{use of undeclared '
operator
float'}}
16
operator
int(); // expected-error{{conversion function must be a non-static member function}}
18
operator
int; // expected-error{{'
operator
int' cannot be the name of a variable or data member}}
25
void
operator
bool(int, ...) const; // expected-error{{conversion function cannot have a return type}} \
28
operator
float(...) const; // expected-error{{conversion function cannot be variadic}
[
all
...]
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
6
operator
A*();
20
operator
const D *();
24
operator
volatile int D::*();
unused.cpp
9
APSInt &
operator
=(const APSInt &RHS);
12
APSInt& APSInt::
operator
=(const APSInt &RHS) {
13
APInt::
operator
=(RHS);
/external/valgrind/main/massif/tests/
overloaded-new.cpp
0
//
operator
new(unsigned)
2
//
operator
new[](unsigned)
3
//
operator
new(unsigned, std::nothrow_t const&)
4
//
operator
new[](unsigned, std::nothrow_t const&)
17
__attribute__((noinline)) void*
operator
new (std::size_t n) throw (std::bad_alloc)
22
__attribute__((noinline)) void*
operator
new (std::size_t n, std::nothrow_t const &) throw ()
27
__attribute__((noinline)) void*
operator
new[] (std::size_t n) throw (std::bad_alloc)
32
__attribute__((noinline)) void*
operator
new[] (std::size_t n, std::nothrow_t const &) throw ()
37
__attribute__((noinline)) void
operator
delete (void* p)
42
__attribute__((noinline)) void
operator
delete[] (void* p
[
all
...]
new-cpp.cpp
0
//
operator
new(unsigned)
2
//
operator
new[](unsigned)
3
//
operator
new(unsigned, std::nothrow_t const&)
4
//
operator
new[](unsigned, std::nothrow_t const&)
/external/valgrind/main/tests/
filter_libc
28
# Merge the different C++
operator
variations.
29
s/(at.*)__builtin_new/$1...
operator
new.../;
30
s/(at.*)
operator
new\(unsigned(| int| long)\)/$1...
operator
new.../;
32
s/(at.*)__builtin_vec_new/$1...
operator
new.../;
33
s/(at.*)
operator
new\[\]\(unsigned(| int| long)\)/$1...
operator
new[].../;
35
s/(at.*)__builtin_delete/$1...
operator
delete.../;
36
s/(at.*)
operator
delete\(void\*\)/$1...
operator
delete.../
[
all
...]
/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/SemaObjCXX/
pointer-to-objc-pointer-conv.mm
28
operator
id() const { return (id)_value; }
29
operator
Class() const { return (Class)_value; }
30
operator
I1*() const { return (I1*)_value; }
36
Wrapper &
operator
*();
37
Wrapper &
operator
[](int);
38
Wrapper&
operator
->*(int);
/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}}
instantiate-default-assignment-operator.cpp
4
RefPtr&
operator
=(const RefPtr&) { int a[sizeof(T) ? -1 : -1];} // expected-error 2 {{array with a negative size}}
5
RefPtr&
operator
=(const PassRefPtr<T>&);
8
struct A { RefPtr<int> a; }; // expected-note {{instantiation of member function 'RefPtr<int>::
operator
=' requested here}}
9
struct B : RefPtr<float> { }; // expected-note {{in instantiation of member function 'RefPtr<float>::
operator
=' requested here}}
/frameworks/base/tools/localize/
Configuration.h
22
inline bool
operator
<(const Configuration& that) const { return Compare(that) < 0; }
23
inline bool
operator
<=(const Configuration& that) const { return Compare(that) <= 0; }
24
inline bool
operator
==(const Configuration& that) const { return Compare(that) == 0; }
25
inline bool
operator
!=(const Configuration& that) const { return Compare(that) != 0; }
26
inline bool
operator
>=(const Configuration& that) const { return Compare(that) >= 0; }
27
inline bool
operator
>(const Configuration& that) const { return Compare(that) > 0; }
/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
int *
operator
"" p31(long double); // expected-warning{{user-defined literal with suffix 'p31' is preempted by C99 hexfloat extension}}
4
long double
operator
"" _p31(long double);
5
long double
operator
"" pi(long double); // expected-warning{{user-defined literals not starting with '_' are reserved by the implementation}}
/external/clang/test/CodeGenCXX/
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);
/external/webkit/Source/WebCore/platform/text/
TextStream.h
37
TextStream&
operator
<<(bool);
38
TextStream&
operator
<<(int);
39
TextStream&
operator
<<(unsigned);
40
TextStream&
operator
<<(long);
41
TextStream&
operator
<<(unsigned long);
42
TextStream&
operator
<<(float);
43
TextStream&
operator
<<(double);
44
TextStream&
operator
<<(const char*);
45
TextStream&
operator
<<(const void*);
46
TextStream&
operator
<<(const String&)
[
all
...]
/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);
/prebuilt/ndk/android-ndk-r5/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);
/prebuilt/ndk/android-ndk-r6/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/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
p2.cpp
7
// //
operator
T(()[]) const;
12
//
operator
array() const;
24
//
operator
T(A1, A2) const () { };
30
operator
T* const() const;
/external/stlport/stlport/stl/
_ptrs_specialize.h
7
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { return &(
operator
*()); }
13
// the following is a workaround for arrow
operator
problems
18
// Compiler can handle generic ->
operator
.
20
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { return &(*(*this)); }
22
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { reference x =
operator
*(); return &x; }
24
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { return &(
operator
*()); }
/ndk/sources/cxx-stl/stlport/stlport/stl/
_ptrs_specialize.h
7
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { return &(
operator
*()); }
13
// the following is a workaround for arrow
operator
problems
18
// Compiler can handle generic ->
operator
.
20
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { return &(*(*this)); }
22
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { reference x =
operator
*(); return &x; }
24
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { return &(
operator
*()); }
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_ptrs_specialize.h
7
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { return &(
operator
*()); }
13
// the following is a workaround for arrow
operator
problems
18
// Compiler can handle generic ->
operator
.
20
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { return &(*(*this)); }
22
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { reference x =
operator
*(); return &x; }
24
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { return &(
operator
*()); }
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_ptrs_specialize.h
7
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { return &(
operator
*()); }
13
// the following is a workaround for arrow
operator
problems
18
// Compiler can handle generic ->
operator
.
20
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { return &(*(*this)); }
22
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { reference x =
operator
*(); return &x; }
24
# define _STLP_DEFINE_ARROW_OPERATOR pointer
operator
->() const { return &(
operator
*()); }
Completed in 420 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>