Searched refs:operator (Results 1 - 25 of 2582) sorted by relevance

1234567891011>>

/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
H A Dnew12 void* operator new(std::size_t);
13 void* operator new[](std::size_t);
14 void operator delete(void*);
15 void operator delete[](void*);
16 void* operator new(std::size_t, const std::nothrow_t&);
17 void* operator new[](std::size_t, const std::nothrow_t&);
18 void operator delete(void*, const std::nothrow_t&);
19 void operator delete[](void*, const std::nothrow_t&);
21 inline void* operator new(std::size_t, void* p) { return p; }
22 inline void* operator ne
[all...]
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
H A Dnew12 void* operator new(std::size_t);
13 void* operator new[](std::size_t);
14 void operator delete(void*);
15 void operator delete[](void*);
16 void* operator new(std::size_t, const std::nothrow_t&);
17 void* operator new[](std::size_t, const std::nothrow_t&);
18 void operator delete(void*, const std::nothrow_t&);
19 void operator delete[](void*, const std::nothrow_t&);
21 inline void* operator new(std::size_t, void* p) { return p; }
22 inline void* operator ne
[all...]
/prebuilts/ndk/5/sources/cxx-stl/system/include/
H A Dnew14 void* operator new(std::size_t);
15 void* operator new[](std::size_t);
16 void operator delete(void*);
17 void operator delete[](void*);
18 void* operator new(std::size_t, const std::nothrow_t&);
19 void* operator new[](std::size_t, const std::nothrow_t&);
20 void operator delete(void*, const std::nothrow_t&);
21 void operator delete[](void*, const std::nothrow_t&);
23 inline void* operator new(std::size_t, void* p) { return p; }
24 inline void* operator ne
[all...]
/prebuilts/ndk/6/sources/cxx-stl/system/include/
H A Dnew14 void* operator new(std::size_t);
15 void* operator new[](std::size_t);
16 void operator delete(void*);
17 void operator delete[](void*);
18 void* operator new(std::size_t, const std::nothrow_t&);
19 void* operator new[](std::size_t, const std::nothrow_t&);
20 void operator delete(void*, const std::nothrow_t&);
21 void operator delete[](void*, const std::nothrow_t&);
23 inline void* operator new(std::size_t, void* p) { return p; }
24 inline void* operator ne
[all...]
/prebuilts/ndk/7/sources/cxx-stl/system/include/
H A Dnew14 void* operator new(std::size_t);
15 void* operator new[](std::size_t);
16 void operator delete(void*);
17 void operator delete[](void*);
18 void* operator new(std::size_t, const std::nothrow_t&);
19 void* operator new[](std::size_t, const std::nothrow_t&);
20 void operator delete(void*, const std::nothrow_t&);
21 void operator delete[](void*, const std::nothrow_t&);
23 inline void* operator new(std::size_t, void* p) { return p; }
24 inline void* operator ne
[all...]
/prebuilts/ndk/8/sources/cxx-stl/system/include/
H A Dnew14 void* operator new(std::size_t);
15 void* operator new[](std::size_t);
16 void operator delete(void*);
17 void operator delete[](void*);
18 void* operator new(std::size_t, const std::nothrow_t&);
19 void* operator new[](std::size_t, const std::nothrow_t&);
20 void operator delete(void*, const std::nothrow_t&);
21 void operator delete[](void*, const std::nothrow_t&);
23 inline void* operator new(std::size_t, void* p) { return p; }
24 inline void* operator ne
[all...]
/prebuilts/ndk/9/sources/cxx-stl/system/include/
H A Dnew14 void* operator new(std::size_t);
15 void* operator new[](std::size_t);
16 void operator delete(void*);
17 void operator delete[](void*);
18 void* operator new(std::size_t, const std::nothrow_t&);
19 void* operator new[](std::size_t, const std::nothrow_t&);
20 void operator delete(void*, const std::nothrow_t&);
21 void operator delete[](void*, const std::nothrow_t&);
23 inline void* operator new(std::size_t, void* p) { return p; }
24 inline void* operator ne
[all...]
/prebuilts/ndk/current/sources/cxx-stl/system/include/
H A Dnew14 void* operator new(std::size_t);
15 void* operator new[](std::size_t);
16 void operator delete(void*);
17 void operator delete[](void*);
18 void* operator new(std::size_t, const std::nothrow_t&);
19 void* operator new[](std::size_t, const std::nothrow_t&);
20 void operator delete(void*, const std::nothrow_t&);
21 void operator delete[](void*, const std::nothrow_t&);
23 inline void* operator new(std::size_t, void* p) { return p; }
24 inline void* operator ne
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_operator.py1 import operator namespace
37 self.assertRaises(TypeError, operator.lt)
38 self.assertRaises(TypeError, operator.lt, 1j, 2j)
39 self.assertFalse(operator.lt(1, 0))
40 self.assertFalse(operator.lt(1, 0.0))
41 self.assertFalse(operator.lt(1, 1))
42 self.assertFalse(operator.lt(1, 1.0))
43 self.assertTrue(operator.lt(1, 2))
44 self.assertTrue(operator.lt(1, 2.0))
47 self.assertRaises(TypeError, operator
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_operator.py1 import operator namespace
37 self.assertRaises(TypeError, operator.lt)
38 self.assertRaises(TypeError, operator.lt, 1j, 2j)
39 self.assertFalse(operator.lt(1, 0))
40 self.assertFalse(operator.lt(1, 0.0))
41 self.assertFalse(operator.lt(1, 1))
42 self.assertFalse(operator.lt(1, 1.0))
43 self.assertTrue(operator.lt(1, 2))
44 self.assertTrue(operator.lt(1, 2.0))
47 self.assertRaises(TypeError, operator
[all...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
H A Dmask_array.h50 * mask_array is to call operator[](valarray<bool>) on a valarray. The
72 /// Assignment operator. Assigns elements to corresponding elements
74 mask_array& operator=(const mask_array&);
76 void operator=(const valarray<_Tp>&) const;
78 void operator*=(const valarray<_Tp>&) const;
80 void operator/=(const valarray<_Tp>&) const;
82 void operator%=(const valarray<_Tp>&) const;
84 void operator+=(const valarray<_Tp>&) const;
86 void operator-=(const valarray<_Tp>&) const;
88 void operator
[all...]
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
H A Dmask_array.h50 * mask_array is to call operator[](valarray<bool>) on a valarray. The
72 /// Assignment operator. Assigns elements to corresponding elements
74 mask_array& operator=(const mask_array&);
76 void operator=(const valarray<_Tp>&) const;
78 void operator*=(const valarray<_Tp>&) const;
80 void operator/=(const valarray<_Tp>&) const;
82 void operator%=(const valarray<_Tp>&) const;
84 void operator+=(const valarray<_Tp>&) const;
86 void operator-=(const valarray<_Tp>&) const;
88 void operator
[all...]
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
H A Dmask_array.h50 * mask_array is to call operator[](valarray<bool>) on a valarray. The
72 /// Assignment operator. Assigns elements to corresponding elements
74 mask_array& operator=(const mask_array&);
76 void operator=(const valarray<_Tp>&) const;
78 void operator*=(const valarray<_Tp>&) const;
80 void operator/=(const valarray<_Tp>&) const;
82 void operator%=(const valarray<_Tp>&) const;
84 void operator+=(const valarray<_Tp>&) const;
86 void operator-=(const valarray<_Tp>&) const;
88 void operator
[all...]
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
H A Dmask_array.h50 * mask_array is to call operator[](valarray<bool>) on a valarray. The
72 /// Assignment operator. Assigns elements to corresponding elements
74 mask_array& operator=(const mask_array&);
76 void operator=(const valarray<_Tp>&) const;
78 void operator*=(const valarray<_Tp>&) const;
80 void operator/=(const valarray<_Tp>&) const;
82 void operator%=(const valarray<_Tp>&) const;
84 void operator+=(const valarray<_Tp>&) const;
86 void operator-=(const valarray<_Tp>&) const;
88 void operator
[all...]
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
H A Dmask_array.h50 * mask_array is to call operator[](valarray<bool>) on a valarray. The
72 /// Assignment operator. Assigns elements to corresponding elements
74 mask_array& operator=(const mask_array&);
76 void operator=(const valarray<_Tp>&) const;
78 void operator*=(const valarray<_Tp>&) const;
80 void operator/=(const valarray<_Tp>&) const;
82 void operator%=(const valarray<_Tp>&) const;
84 void operator+=(const valarray<_Tp>&) const;
86 void operator-=(const valarray<_Tp>&) const;
88 void operator
[all...]
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
H A D_hash_fun.h57 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_
[all...]
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
H A D_hash_fun.h57 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_
[all...]
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
H A D_hash_fun.h57 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_
[all...]
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
H A D_hash_fun.h57 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_
[all...]
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
H A D_hash_fun.h57 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_
[all...]
/prebuilts/ndk/9/sources/cxx-stl/stlport/stlport/stl/
H A D_hash_fun.h57 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_
[all...]
/prebuilts/ndk/current/sources/cxx-stl/EH/stlport/stlport/stl/
H A D_hash_fun.h57 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_
[all...]
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
H A D_hash_fun.h57 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_
[all...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/backward/
H A Dhash_fun.h81 operator()(const char* __s) const
89 operator()(const char* __s) const
97 operator()(char __x) const
105 operator()(unsigned char __x) const
113 operator()(unsigned char __x) const
121 operator()(short __x) const
129 operator()(unsigned short __x) const
137 operator()(int __x) const
145 operator()(unsigned int __x) const
153 operator()(lon
[all...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/backward/
H A Dhash_fun.h84 operator()(const char* __s) const
92 operator()(const char* __s) const
100 operator()(char __x) const
108 operator()(unsigned char __x) const
116 operator()(unsigned char __x) const
124 operator()(short __x) const
132 operator()(unsigned short __x) const
140 operator()(int __x) const
148 operator()(unsigned int __x) const
156 operator()(lon
[all...]

Completed in 482 milliseconds

1234567891011>>