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

<<11121314151617181920>>

  /prebuilts/misc/common/swig/include/2.0.11/
swigwarnings.swg 59 * Operator related warning messages
62 %define SWIGWARN_IGNORE_OPERATOR_NEW_MSG "350:operator new ignored" %enddef
63 %define SWIGWARN_IGNORE_OPERATOR_DELETE_MSG "351:operator delete ignored" %enddef
64 %define SWIGWARN_IGNORE_OPERATOR_PLUS_MSG "352:operator+ ignored" %enddef
65 %define SWIGWARN_IGNORE_OPERATOR_MINUS_MSG "353:operator- ignored" %enddef
66 %define SWIGWARN_IGNORE_OPERATOR_MUL_MSG "354:operator* ignored" %enddef
67 %define SWIGWARN_IGNORE_OPERATOR_DIV_MSG "355:operator/ ignored" %enddef
68 %define SWIGWARN_IGNORE_OPERATOR_MOD_MSG "356:operator% ignored" %enddef
69 %define SWIGWARN_IGNORE_OPERATOR_XOR_MSG "357:operator^ ignored" %enddef
70 %define SWIGWARN_IGNORE_OPERATOR_AND_MSG "358:operator& ignored" %endde
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/
cmp_nullptr.pass.cpp 15 // bool operator==(const shared_ptr<T>& x, nullptr_t) noexcept;
17 // bool operator==(nullptr_t, const shared_ptr<T>& y) noexcept;
19 // bool operator!=(const shared_ptr<T>& x, nullptr_t) noexcept;
21 // bool operator!=(nullptr_t, const shared_ptr<T>& y) noexcept;
23 // bool operator<(const shared_ptr<T>& x, nullptr_t) noexcept;
25 // bool operator<(nullptr_t, const shared_ptr<T>& y) noexcept;
27 // bool operator<=(const shared_ptr<T>& x, nullptr_t) noexcept;
29 // bool operator<=(nullptr_t, const shared_ptr<T>& y) noexcept;
31 // bool operator>(const shared_ptr<T>& x, nullptr_t) noexcept;
33 // bool operator>(nullptr_t, const shared_ptr<T>& y) noexcept
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
err-ser-1.s 5 % Make sure we correctly diagnose the serial-number operator.
9 Main TETRA &a<<8 { dg-error "serial number operator is not supported" "" }
10 TETRA 3+&a<<8 { dg-error "serial number operator is not supported" "" }
  /external/clang/test/CXX/special/class.copy/
p25-0x.cpp 23 // A copy/move assignment operator for class X is trivial if it is not user-provided,
25 UserProvided &operator=(const UserProvided &);
32 NonConstCopy &operator=(NonConstCopy &) = default;
46 // and the assignment operator selected to copy/move each [direct subobject] is trivial
48 template<typename T> TemplateCtor operator=(T &);
63 TNT &operator=(const TNT &) = default; // trivial
64 TNT &operator=(TNT &); // non-trivial
66 TNT &operator=(TNT &&) = default; // trivial
67 TNT &operator=(const TNT &&); // non-trivial
118 MultipleTrivial &operator=(const MultipleTrivial &) & = default
    [all...]
  /external/clang/test/SemaCXX/
cxx1y-contextual-conversion-tweaks.cpp 13 operator T &() { return val; } //@13
14 operator T() const { return val; } //@14
50 operator int(); // matching and viable
54 operator int() &&; // matching and not viable
58 operator float(); // not matching
62 template<typename T> operator T(); // not matching (ambiguous anyway)
66 template<typename T> operator int(); // not matching (ambiguous anyway)
70 operator int() &&; // @70
71 operator int(); // @71 -- duplicate declaration with different qualifier is not allowed
75 operator int() &&; // matching but not viabl
    [all...]
new-delete.cpp 15 void* operator new(size_t, S*); // expected-note {{candidate}}
21 inline void operator delete(void *); // expected-warning {{replacement function 'operator delete' cannot be declared 'inline'}}
24 inline void *operator new(size_t) { // no warning, due to __attribute__((used))
29 void* operator new(const size_t); // expected-note 2 {{candidate}}
30 void* operator new(size_t, int*); // expected-note 3 {{candidate}}
31 void* operator new(size_t, float*); // expected-note 3 {{candidate}}
32 void* operator new(size_t, S); // expected-note 2 {{candidate}}
90 (void)new (0, 0) int; // expected-error {{no matching function for call to 'operator new'}}
91 (void)new (0L) int; // expected-error {{call to 'operator new' is ambiguous}
    [all...]
  /external/pdfium/third_party/bigint/
BigInteger.hh 43 // Assignment operator
44 void operator=(const BigInteger &x);
103 bool operator ==(const BigInteger &x) const {
106 bool operator !=(const BigInteger &x) const { return !operator ==(x); };
107 bool operator < (const BigInteger &x) const { return compareTo(x) == less ; }
108 bool operator <=(const BigInteger &x) const { return compareTo(x) != greater; }
109 bool operator >=(const BigInteger &x) const { return compareTo(x) != less ; }
110 bool operator > (const BigInteger &x) const { return compareTo(x) == greater; }
125 BigInteger operator +(const BigInteger &x) const
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comutil.h 66 _bstr_t &operator=(const _bstr_t &s) throw();
67 _bstr_t &operator=(const char *s);
68 _bstr_t &operator=(const wchar_t *s);
69 _bstr_t &operator=(const _variant_t &var);
70 _bstr_t &operator+=(const _bstr_t &s);
71 _bstr_t operator+(const _bstr_t &s) const;
72 friend _bstr_t operator+(const char *s1,const _bstr_t &s2);
73 friend _bstr_t operator+(const wchar_t *s1,const _bstr_t &s2);
74 operator const wchar_t *() const throw();
75 operator wchar_t *() const throw()
    [all...]
  /external/clang/test/CodeGenCXX/
conversion-function.cpp 8 operator int();
11 S::operator int() {
20 public: operator int() { printf("operator int()\n"); return iX; }
21 public: operator float() { printf("operator float()\n"); return fX; }
30 operator X() { printf("perator X()\n"); x.iX += iZ; x.fX += fZ; return x; }
39 public: operator Z(){printf("perator Z()\n"); return z; }
47 operator int(){ return ++iO; }
60 int c = X(Z(y)); // OK: y.operator Z().operator X().operator int(
    [all...]
  /external/skia/src/core/
SkFixed15.h 22 explicit operator float() const { return fVal * (1/32768.0f); }
41 SkFixed15 operator +(SkFixed15 o) const { return fVal + o.fVal; }
42 SkFixed15 operator -(SkFixed15 o) const { return fVal - o.fVal; }
43 SkFixed15 operator *(SkFixed15 o) const { return (fVal * o.fVal + (1<<14)) >> 15; }
44 SkFixed15 operator<<(int bits) const { return fVal << bits; }
45 SkFixed15 operator>>(int bits) const { return fVal >> bits; }
47 SkFixed15& operator +=(SkFixed15 o) { return (*this = *this + o); }
48 SkFixed15& operator -=(SkFixed15 o) { return (*this = *this - o); }
49 SkFixed15& operator *=(SkFixed15 o) { return (*this = *this * o); }
50 SkFixed15& operator<<=(int bits) { return (*this = *this << bits);
    [all...]
  /external/skqp/src/core/
SkFixed15.h 22 explicit operator float() const { return fVal * (1/32768.0f); }
41 SkFixed15 operator +(SkFixed15 o) const { return fVal + o.fVal; }
42 SkFixed15 operator -(SkFixed15 o) const { return fVal - o.fVal; }
43 SkFixed15 operator *(SkFixed15 o) const { return (fVal * o.fVal + (1<<14)) >> 15; }
44 SkFixed15 operator<<(int bits) const { return fVal << bits; }
45 SkFixed15 operator>>(int bits) const { return fVal >> bits; }
47 SkFixed15& operator +=(SkFixed15 o) { return (*this = *this + o); }
48 SkFixed15& operator -=(SkFixed15 o) { return (*this = *this - o); }
49 SkFixed15& operator *=(SkFixed15 o) { return (*this = *this * o); }
50 SkFixed15& operator<<=(int bits) { return (*this = *this << bits);
    [all...]
  /system/bt/packet/base/
iterator.cc 35 Iterator Iterator::operator+(size_t offset) {
41 Iterator& Iterator::operator+=(size_t offset) {
48 Iterator Iterator::operator++(int) {
57 Iterator& Iterator::operator++() {
65 Iterator Iterator::operator-(size_t offset) {
71 int Iterator::operator-(const Iterator& itr) { return index_ - itr.index_; }
73 Iterator& Iterator::operator-=(size_t offset) {
81 Iterator Iterator::operator--(int) {
88 Iterator& Iterator::operator--() {
94 Iterator& Iterator::operator=(const Iterator& itr)
    [all...]
  /external/lzma/CPP/Common/
MyString.h 210 friend AString operator+(const AString &s, char c) { return AString(s, c); } ;
211 // friend AString operator+(char c, const AString &s); // is not supported
213 friend AString operator+(const AString &s1, const AString &s2);
214 friend AString operator+(const AString &s1, const char *s2);
215 friend AString operator+(const char *s1, const AString &s2);
218 AString &operator+=(wchar_t c);
219 AString &operator=(wchar_t c);
239 operator const char *() const { return _chars; }
275 AString &operator=(char c);
276 AString &operator=(const char *s);
    [all...]
  /external/vulkan-validation-layers/libs/glm/detail/
type_vec1.inl 42 GLM_FUNC_QUALIFIER T & tvec1<T, P>::operator[](length_t i)
49 GLM_FUNC_QUALIFIER T const & tvec1<T, P>::operator[](length_t i) const
129 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator=
140 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator=
151 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator+=
162 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator+=
173 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator-=
184 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator-=
195 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator*=
206 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator*
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/detail/
type_vec1.inl 42 GLM_FUNC_QUALIFIER T & tvec1<T, P>::operator[](length_t i)
49 GLM_FUNC_QUALIFIER T const & tvec1<T, P>::operator[](length_t i) const
129 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator=
140 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator=
151 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator+=
162 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator+=
173 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator-=
184 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator-=
195 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator*=
206 GLM_FUNC_QUALIFIER tvec1<T, P> & tvec1<T, P>::operator*
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/util/
functional.hpp 32 operator()(T &&x) const {
40 operator()(T x, S y) const {
48 operator()(T x, S y) const {
56 operator()(T x) const {
64 operator()(T x, S y) const {
72 operator()(T x, S y) const {
80 operator()(T x, S y) const {
88 operator()(T x) const {
94 operator()(T x, Ts... xs) const {
103 operator()(T x) const
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
UnaryExpr.java 41 * An expression where an operator is applied to a single expression.
42 * It supports the operators that are found the the UnaryExpr.Operator enum.
52 public enum Operator implements Printable {
67 Operator(String codeRepresentation, boolean isPostfix) {
87 private Operator operator; field in class:UnaryExpr
90 this(null, new IntegerLiteralExpr(), Operator.POSTFIX_INCREMENT);
94 public UnaryExpr(final Expression expression, final Operator operator) {
95 this(null, expression, operator);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/bin_search_tree_/
point_iterators.hpp 128 operator=(const PB_DS_TREE_CONST_IT_C_DEC& other)
136 operator=(const PB_DS_TREE_CONST_ODIR_IT_C_DEC& other)
143 operator->() const
150 operator*() const
157 operator==(const PB_DS_TREE_CONST_IT_C_DEC & other) const
161 operator==(const PB_DS_TREE_CONST_ODIR_IT_C_DEC & other) const
165 operator!=(const PB_DS_TREE_CONST_IT_C_DEC& other) const
169 operator!=(const PB_DS_TREE_CONST_ODIR_IT_C_DEC& other) const
173 operator++()
181 operator++(int
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/bin_search_tree_/
point_iterators.hpp 128 operator=(const PB_DS_TREE_CONST_IT_C_DEC& other)
136 operator=(const PB_DS_TREE_CONST_ODIR_IT_C_DEC& other)
143 operator->() const
150 operator*() const
157 operator==(const PB_DS_TREE_CONST_IT_C_DEC & other) const
161 operator==(const PB_DS_TREE_CONST_ODIR_IT_C_DEC & other) const
165 operator!=(const PB_DS_TREE_CONST_IT_C_DEC& other) const
169 operator!=(const PB_DS_TREE_CONST_ODIR_IT_C_DEC& other) const
173 operator++()
181 operator++(int
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
pointer.h 62 * 4) An operator<() to support pointer comparison.
63 * 5) An operator==() to support pointer comparison.
84 operator<(const _Std_pointer_impl& __rarg) const
88 operator==(const _Std_pointer_impl& __rarg) const
136 operator<(const _Relative_pointer_impl& __rarg) const
141 operator==(const _Relative_pointer_impl& __rarg) const
188 operator<(const _Relative_pointer_impl& __rarg) const
193 operator==(const _Relative_pointer_impl& __rarg) const
319 // Assignment operator
321 operator=(const _Pointer_adapter& __arg)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
pointer.h 62 * 4) An operator<() to support pointer comparison.
63 * 5) An operator==() to support pointer comparison.
84 operator<(const _Std_pointer_impl& __rarg) const
88 operator==(const _Std_pointer_impl& __rarg) const
136 operator<(const _Relative_pointer_impl& __rarg) const
141 operator==(const _Relative_pointer_impl& __rarg) const
188 operator<(const _Relative_pointer_impl& __rarg) const
193 operator==(const _Relative_pointer_impl& __rarg) const
319 // Assignment operator
321 operator=(const _Pointer_adapter& __arg)
    [all...]
  /prebuilts/sdk/renderscript/lib/arm/
libRSSupportIO.so 
  /external/clang/test/Parser/
cxx-ambig-init-templ.cpp 3 template<int> struct c { c(int) = delete; typedef void val; operator int() const; };
12 int k5 = T1 < b, &S::operator=(int); // expected-error {{extra qualification}}
13 int k6 = T2 < b, &S::operator= >::val;
14 int k7 = T1 < b, &S::operator>(int); // expected-error {{extra qualification}}
15 int k8 = T2 < b, &S::operator> >::val;
37 template<typename, int=0> struct T3 { T3(int); operator int(); };
64 template<int, int=0> struct a { static const int val = 0; operator int(); }; // expected-note {{here}}
66 template<int, typename> struct e { operator int(); };
106 template<typename, typename> struct X { operator int(); };
115 template <int A, typename B> struct T { static int i; operator int(); }
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
gslice_array.h 51 * operator[](gslice) on a valarray. The returned gslice_array then
53 * the original valarray. For example, operator+=(valarray) will add
71 /// Assignment operator. Assigns slice elements to corresponding
73 gslice_array& operator=(const gslice_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
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
gslice_array.h 51 * operator[](gslice) on a valarray. The returned gslice_array then
53 * the original valarray. For example, operator+=(valarray) will add
71 /// Assignment operator. Assigns slice elements to corresponding
73 gslice_array& operator=(const gslice_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
    [all...]

Completed in 1745 milliseconds

<<11121314151617181920>>