HomeSort by relevance Sort by last modified time
    Searched full:operator (Results 326 - 350 of 13411) sorted by null

<<11121314151617181920>>

  /external/chromium_org/net/http/
http_version.h 33 bool operator==(const HttpVersion& v) const {
36 bool operator!=(const HttpVersion& v) const {
39 bool operator>(const HttpVersion& v) const {
42 bool operator>=(const HttpVersion& v) const {
45 bool operator<(const HttpVersion& v) const {
48 bool operator<=(const HttpVersion& v) const {
  /external/chromium_org/ppapi/cpp/dev/
var_resource_dev.cc 38 Var::operator=(Var(Null()));
46 VarResource_Dev& VarResource_Dev::operator=(const VarResource_Dev& other) {
47 Var::operator=(other);
51 Var& VarResource_Dev::operator=(const Var& other) {
53 Var::operator=(other);
56 Var::operator=(Var(Null()));
  /external/clang/test/CodeGenCXX/
microsoft-new.cpp 6 void *operator new(size_t size, arbitrary_t);
9 void *operator new[](size_t size, arbitrary2_t);
13 // MSVC will fall back on the non-array operator new.
20 void *operator new[](size_t size, arbitrary_t);
31 void *operator new(size_t size, arbitrary2_t);
35 // This should still call the global operator new[].
  /external/clang/test/SemaCXX/
convert-to-bool.cpp 3 operator bool() const;
7 operator int();
11 explicit operator bool(); // expected-warning{{explicit conversion functions are a C++11 extension}}
42 explicit operator int&(); // expected-warning{{explicit conversion functions are a C++11 extension}}
59 explicit operator A&(); // expected-warning{{explicit conversion functions are a C++11 extension}}
60 operator B&(); // expected-note{{candidate}}
new-delete.cpp 15 void* operator new(size_t, S*); // expected-note {{candidate}}
22 void* operator new(const size_t); // expected-note 2 {{candidate}}
23 void* operator new(size_t, int*); // expected-note 3 {{candidate}}
24 void* operator new(size_t, float*); // expected-note 3 {{candidate}}
25 void* operator new(size_t, S); // expected-note 2 {{candidate}}
83 (void)new (0, 0) int; // expected-error {{no matching function for call to 'operator new'}}
84 (void)new (0L) int; // expected-error {{call to 'operator new' is ambiguous}}
86 (void)::new ((S*)0) U; // expected-error {{no matching function for call to 'operator new'}}
88 (void)new U; // expected-error {{no matching function for call to 'operator new'}}
114 operator int*()
    [all...]
  /external/clang/test/SemaTemplate/
operator-template.cpp 5 template<class X>bool operator==(A<X>,typename A<X>::Y); // expected-note{{candidate template ignored: could not match 'A<type-parameter-0-0>' against 'B<int> *'}}
7 int a(A<int> x) { return operator==(x,1); }
13 template<class X>bool operator==(B<X>*,typename B<X>::Y); // \
14 // expected-error{{overloaded 'operator==' must have at least one parameter of class or enumeration type}} \
17 int a(B<int> x) { return operator==(&x,1); } // expected-error{{no matching function for call to 'operator=='}}
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
operator_bool.hpp 11 operator bool () const
24 operator unspecified_bool_type() const // never throws
36 operator unspecified_bool_type() const // never throws
45 operator unspecified_bool_type() const // never throws
52 // operator! is redundant, but some compilers need it
53 bool operator! () const // never throws
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
iterator.h 64 // Pre-increment operator.
66 operator++()
73 // Post-increment operator.
75 operator++(int)
78 // Pre-decrement operator.
80 operator--()
87 // Post-decrement operator.
89 operator--(int)
93 operator Iterator2() const
97 operator=(const type& other
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
atomic 65 atomic_bool& operator=(const atomic_bool&) = delete;
66 atomic_bool& operator=(const atomic_bool&) volatile = delete;
71 operator=(bool __i)
72 { return _M_base.operator=(__i); }
74 operator bool() const
77 operator bool() const volatile
164 atomic& operator=(const atomic&) = delete;
165 atomic& operator=(const atomic&) volatile = delete;
169 operator _Tp() const;
171 operator _Tp() const volatile
    [all...]
new 93 void* operator new(std::size_t) throw (std::bad_alloc);
94 void* operator new[](std::size_t) throw (std::bad_alloc);
95 void operator delete(void*) throw();
96 void operator delete(void*, std::size_t) throw();
97 void operator delete[](void*) throw();
98 void* operator new(std::size_t, const std::nothrow_t&) throw();
99 void* operator new[](std::size_t, const std::nothrow_t&) throw();
100 void operator delete(void*, const std::nothrow_t&) throw();
101 void operator delete[](void*, const std::nothrow_t&) throw();
103 // Default placement versions of operator new
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
atomic 65 atomic_bool& operator=(const atomic_bool&) = delete;
66 atomic_bool& operator=(const atomic_bool&) volatile = delete;
71 operator=(bool __i)
72 { return _M_base.operator=(__i); }
74 operator bool() const
77 operator bool() const volatile
164 atomic& operator=(const atomic&) = delete;
165 atomic& operator=(const atomic&) volatile = delete;
169 operator _Tp() const;
171 operator _Tp() const volatile
    [all...]
new 93 void* operator new(std::size_t) throw (std::bad_alloc);
94 void* operator new[](std::size_t) throw (std::bad_alloc);
95 void operator delete(void*) throw();
96 void operator delete(void*, std::size_t) throw();
97 void operator delete[](void*) throw();
98 void* operator new(std::size_t, const std::nothrow_t&) throw();
99 void* operator new[](std::size_t, const std::nothrow_t&) throw();
100 void operator delete(void*, const std::nothrow_t&) throw();
101 void operator delete[](void*, const std::nothrow_t&) throw();
103 // Default placement versions of operator new
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
atomic 65 atomic_bool& operator=(const atomic_bool&) = delete;
66 atomic_bool& operator=(const atomic_bool&) volatile = delete;
71 operator=(bool __i)
72 { return _M_base.operator=(__i); }
74 operator bool() const
77 operator bool() const volatile
164 atomic& operator=(const atomic&) = delete;
165 atomic& operator=(const atomic&) volatile = delete;
169 operator _Tp() const;
171 operator _Tp() const volatile
    [all...]
new 93 void* operator new(std::size_t) throw (std::bad_alloc);
94 void* operator new[](std::size_t) throw (std::bad_alloc);
95 void operator delete(void*) throw();
96 void operator delete(void*, std::size_t) throw();
97 void operator delete[](void*) throw();
98 void* operator new(std::size_t, const std::nothrow_t&) throw();
99 void* operator new[](std::size_t, const std::nothrow_t&) throw();
100 void operator delete(void*, const std::nothrow_t&) throw();
101 void operator delete[](void*, const std::nothrow_t&) throw();
103 // Default placement versions of operator new
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
atomic 63 atomic_bool& operator=(const atomic_bool&) = delete;
64 atomic_bool& operator=(const atomic_bool&) volatile = delete;
69 operator=(bool __i) noexcept
70 { return _M_base.operator=(__i); }
72 operator bool() const noexcept
75 operator bool() const volatile noexcept
163 atomic& operator=(const atomic&) = delete;
164 atomic& operator=(const atomic&) volatile = delete;
168 operator _Tp() const noexcept
171 operator _Tp() const volatile noexcep
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/
atomic 65 atomic_bool& operator=(const atomic_bool&) = delete;
66 atomic_bool& operator=(const atomic_bool&) volatile = delete;
71 operator=(bool __i)
72 { return _M_base.operator=(__i); }
74 operator bool() const
77 operator bool() const volatile
164 atomic& operator=(const atomic&) = delete;
165 atomic& operator=(const atomic&) volatile = delete;
169 operator _Tp() const;
171 operator _Tp() const volatile
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/
atomic 63 atomic_bool& operator=(const atomic_bool&) = delete;
64 atomic_bool& operator=(const atomic_bool&) volatile = delete;
69 operator=(bool __i) noexcept
70 { return _M_base.operator=(__i); }
72 operator bool() const noexcept
75 operator bool() const volatile noexcept
163 atomic& operator=(const atomic&) = delete;
164 atomic& operator=(const atomic&) volatile = delete;
168 operator _Tp() const noexcept
171 operator _Tp() const volatile noexcep
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
iterator.h 64 // Pre-increment operator.
66 operator++()
73 // Post-increment operator.
75 operator++(int)
78 // Pre-decrement operator.
80 operator--()
87 // Post-decrement operator.
89 operator--(int)
93 operator _Iterator2() const
97 operator=(const _IteratorPair& __other
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.op/
compare.pass.cpp 16 // operator==(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
20 // operator!=(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
24 // operator<(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
28 // operator<=(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
32 // operator>=(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
36 // operator>(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
40 // operator==(const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& lhs,
45 // operator!=(const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& lhs,
50 // operator<(const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& lhs,
55 // operator>(const basic_string<typename iterator_traits<BiIter>::value_type, ST, SA>& lhs
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SMILTime.h 43 SMILTime& operator=(const SMILTime& o) { m_time = o.m_time; return *this; }
83 inline bool operator==(const SMILTime& a, const SMILTime& b) { return a.isFinite() && a.value() == b.value(); }
84 inline bool operator!(const SMILTime& a) { return !a.isFinite() || !a.value(); }
85 inline bool operator!=(const SMILTime& a, const SMILTime& b) { return !operator==(a, b); }
86 inline bool operator>(const SMILTime& a, const SMILTime& b) { return a.value() > b.value(); }
87 inline bool operator<(const SMILTime& a, const SMILTime& b) { return a.value() < b.value(); }
88 inline bool operator>=(const SMILTime& a, const SMILTime& b) { return a.value() > b.value() || operator==(a, b); }
89 inline bool operator<=(const SMILTime& a, const SMILTime& b) { return a.value() < b.value() || operator==(a, b);
    [all...]
  /external/stlport/stlport/stl/
_hash_fun.h 57 size_t operator()(const char* __s) const {
65 size_t operator()(const char* __s) const {
72 size_t operator()(char __x) const { return __x; }
75 size_t operator()(unsigned char __x) const { return __x; }
79 size_t operator()(unsigned char __x) const { return __x; }
83 size_t operator()(short __x) const { return __x; }
86 size_t operator()(unsigned short __x) const { return __x; }
89 size_t operator()(int __x) const { return __x; }
94 size_t operator()(unsigned int __x) const { return __x; }
104 size_t operator()(size_t __x) const { return __x;
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_hash_fun.h 57 size_t operator()(const char* __s) const {
65 size_t operator()(const char* __s) const {
72 size_t operator()(char __x) const { return __x; }
75 size_t operator()(unsigned char __x) const { return __x; }
79 size_t operator()(unsigned char __x) const { return __x; }
83 size_t operator()(short __x) const { return __x; }
86 size_t operator()(unsigned short __x) const { return __x; }
89 size_t operator()(int __x) const { return __x; }
94 size_t operator()(unsigned int __x) const { return __x; }
104 size_t operator()(size_t __x) const { return __x;
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_hash_fun.h 57 size_t operator()(const char* __s) const {
65 size_t operator()(const char* __s) const {
72 size_t operator()(char __x) const { return __x; }
75 size_t operator()(unsigned char __x) const { return __x; }
79 size_t operator()(unsigned char __x) const { return __x; }
83 size_t operator()(short __x) const { return __x; }
86 size_t operator()(unsigned short __x) const { return __x; }
89 size_t operator()(int __x) const { return __x; }
94 size_t operator()(unsigned int __x) const { return __x; }
104 size_t operator()(size_t __x) const { return __x;
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_hash_fun.h 57 size_t operator()(const char* __s) const {
65 size_t operator()(const char* __s) const {
72 size_t operator()(char __x) const { return __x; }
75 size_t operator()(unsigned char __x) const { return __x; }
79 size_t operator()(unsigned char __x) const { return __x; }
83 size_t operator()(short __x) const { return __x; }
86 size_t operator()(unsigned short __x) const { return __x; }
89 size_t operator()(int __x) const { return __x; }
94 size_t operator()(unsigned int __x) const { return __x; }
104 size_t operator()(size_t __x) const { return __x;
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_hash_fun.h 57 size_t operator()(const char* __s) const {
65 size_t operator()(const char* __s) const {
72 size_t operator()(char __x) const { return __x; }
75 size_t operator()(unsigned char __x) const { return __x; }
79 size_t operator()(unsigned char __x) const { return __x; }
83 size_t operator()(short __x) const { return __x; }
86 size_t operator()(unsigned short __x) const { return __x; }
89 size_t operator()(int __x) const { return __x; }
94 size_t operator()(unsigned int __x) const { return __x; }
104 size_t operator()(size_t __x) const { return __x;
    [all...]

Completed in 1125 milliseconds

<<11121314151617181920>>