HomeSort by relevance Sort by last modified time
    Searched full:operator (Results 301 - 325 of 6015) sorted by null

<<11121314151617181920>>

  /external/collada/include/1.4/dom/
domCg_sampler2D.h 32 * Overloaded assignment operator
34 virtual domCg_sampler2D_complexType &operator=( const domCg_sampler2D_complexType &cpy ) { (void)cpy; return *this; }
56 * Overloaded assignment operator
58 virtual domCg_sampler2D &operator=( const domCg_sampler2D &cpy ) { (void)cpy; return *this; }
domCg_sampler3D.h 32 * Overloaded assignment operator
34 virtual domCg_sampler3D_complexType &operator=( const domCg_sampler3D_complexType &cpy ) { (void)cpy; return *this; }
56 * Overloaded assignment operator
58 virtual domCg_sampler3D &operator=( const domCg_sampler3D &cpy ) { (void)cpy; return *this; }
domCg_samplerCUBE.h 32 * Overloaded assignment operator
34 virtual domCg_samplerCUBE_complexType &operator=( const domCg_samplerCUBE_complexType &cpy ) { (void)cpy; return *this; }
56 * Overloaded assignment operator
58 virtual domCg_samplerCUBE &operator=( const domCg_samplerCUBE &cpy ) { (void)cpy; return *this; }
domCg_samplerDEPTH.h 32 * Overloaded assignment operator
34 virtual domCg_samplerDEPTH_complexType &operator=( const domCg_samplerDEPTH_complexType &cpy ) { (void)cpy; return *this; }
56 * Overloaded assignment operator
58 virtual domCg_samplerDEPTH &operator=( const domCg_samplerDEPTH &cpy ) { (void)cpy; return *this; }
domCg_samplerRECT.h 32 * Overloaded assignment operator
34 virtual domCg_samplerRECT_complexType &operator=( const domCg_samplerRECT_complexType &cpy ) { (void)cpy; return *this; }
56 * Overloaded assignment operator
58 virtual domCg_samplerRECT &operator=( const domCg_samplerRECT &cpy ) { (void)cpy; return *this; }
  /external/easymock/src/org/easymock/internal/matchers/
Compare.java 32 private LogicalOperator operator; field in class:Compare
37 this.operator = result;
41 buffer.append(comparator + "(" + expected + ") " + operator.getSymbol()
50 return operator.matchResult(comparator.compare((T) actual, expected));
  /external/icu4c/i18n/
tmutamt.cpp 40 TimeUnitAmount::operator=(const TimeUnitAmount& other) {
41 Measure::operator=(other);
47 TimeUnitAmount::operator==(const UObject& other) const {
48 return Measure::operator==(other);
  /external/oprofile/libutil++/tests/
utility_tests.cpp 24 void* operator new(size_t size) throw(bad_alloc)
30 void* operator new[](size_t size) throw(bad_alloc)
36 void operator delete(void * p) throw()
43 void operator delete[](void * p) throw()
  /external/qemu/elff/
elf_alloc.h 107 * protection from mistakenly using "traditional" operator 'new' for object
120 /* Main operator new.
129 void* operator new(size_t size, const ElfFile* elf);
131 /* Overwitten operator delete.
133 * anything in this operator. We, however, are obliged to implement this
134 * operator in order to compliment overwritten operator 'new'.
136 void operator delete(void* ptr) {
139 /* Overwitten operator delete.
141 * anything in this operator. We, however, are obliged to implement this
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptstring.h 36 QScriptString& operator=(const QScriptString& other);
40 bool operator==(const QScriptString& other) const;
41 bool operator!=(const QScriptString& other) const;
46 operator QString() const;
  /external/webkit/Source/JavaScriptCore/wtf/
OwnArrayPtr.h 58 T& operator*() const { ASSERT(m_ptr); return *m_ptr; }
59 PtrType operator->() const { ASSERT(m_ptr); return m_ptr; }
61 T& operator[](std::ptrdiff_t i) const { ASSERT(m_ptr); ASSERT(i >= 0); return m_ptr[i]; }
63 bool operator!() const { return !m_ptr; }
65 // This conversion operator allows implicit conversion to bool but not to other integer types.
67 operator bool() const { return m_ptr; }
70 operator UnspecifiedBoolType() const { return m_ptr ? &OwnArrayPtr::m_ptr : 0; }
73 OwnArrayPtr& operator=(const PassOwnArrayPtr<T>&);
74 OwnArrayPtr& operator=(std::nullptr_t) { clear(); return *this; }
75 template<typename U> OwnArrayPtr& operator=(const PassOwnArrayPtr<U>&)
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/gobject/
GRefPtr.h 95 T& operator*() const { return *m_ptr; }
96 ALWAYS_INLINE T* operator->() const { return m_ptr; }
98 bool operator!() const { return !m_ptr; }
100 // This conversion operator allows implicit conversion to bool but not to other integer types.
102 operator UnspecifiedBoolType() const { return m_ptr ? &GRefPtr::m_ptr : 0; }
104 GRefPtr& operator=(const GRefPtr&);
105 GRefPtr& operator=(T*);
106 template <typename U> GRefPtr& operator=(const GRefPtr<U>&);
119 template <typename T> inline GRefPtr<T>& GRefPtr<T>::operator=(const GRefPtr<T>& o)
131 template <typename T> inline GRefPtr<T>& GRefPtr<T>::operator=(T* optr
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyleDefs.h 102 bool operator==(const StyleFillData&) const;
103 bool operator!=(const StyleFillData& other) const
121 bool operator==(const StyleStrokeData&) const;
122 bool operator!=(const StyleStrokeData& other) const
146 bool operator==(const StyleStopData&) const;
147 bool operator!=(const StyleStopData& other) const
165 bool operator==(const StyleTextData& other) const;
166 bool operator!=(const StyleTextData& other) const
184 bool operator==(const StyleMiscData&) const;
185 bool operator!=(const StyleMiscData& other) cons
    [all...]
  /ndk/sources/host-tools/ndk-stack/elff/
elf_alloc.h 107 * protection from mistakenly using "traditional" operator 'new' for object
120 /* Main operator new.
129 void* operator new(size_t size, const ElfFile* elf);
131 /* Overwitten operator delete.
133 * anything in this operator. We, however, are obliged to implement this
134 * operator in order to compliment overwritten operator 'new'.
136 void operator delete(void* ptr) {
139 /* Overwitten operator delete.
141 * anything in this operator. We, however, are obliged to implement thi
    [all...]
  /external/chromium/crypto/
scoped_capi_types.h 22 void operator()(CAPIHandle handle) const {
36 void operator()(CAPIHandle handle) const {
64 operator CAPIHandle() const { return handle_; }
72 bool operator==(CAPIHandle handle) const {
76 bool operator!=(CAPIHandle handle) const {
103 bool operator==(CH h, const ScopedCAPIHandle<CH, FP>& b) {
108 bool operator!=(CH h, const ScopedCAPIHandle<CH, FP>& b) {
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p1.cpp 73 operator int();
74 operator bool();
79 using A::operator int; // expected-note {{'declared protected here'}}
81 using A::operator bool;
86 return B(); // expected-error {{'operator int' is a protected member of 'test2::B'}}
99 operator A*();
104 using B::operator A*;
  /external/oprofile/libutil++/
sparse_array.h 23 * operator[], this const member function simply returns 0 for
28 T operator[](size_type index) const {
41 T & operator[](size_type index) {
47 * vectorized += operator
49 sparse_array & operator+=(sparse_array const & rhs) {
60 * vectorized -= operator, overflow shouldn't occur during substraction
63 sparse_array & operator-=(sparse_array const & rhs) {
  /external/webkit/Source/WebKit/qt/Api/
qwebhistory.h 42 QWebHistoryItem &operator=(const QWebHistoryItem &other);
65 //friend QDataStream & operator<<(QDataStream& out,const QWebHistoryItem& hist);
66 //friend QDataStream & operator>>(QDataStream& in,QWebHistoryItem& hist);
105 friend QWEBKIT_EXPORT QDataStream& operator>>(QDataStream&, QWebHistory&);
106 friend QWEBKIT_EXPORT QDataStream& operator<<(QDataStream&, const QWebHistory&);
113 QWEBKIT_EXPORT QDataStream& operator<<(QDataStream& stream, const QWebHistory& history);
114 QWEBKIT_EXPORT QDataStream& operator>>(QDataStream& stream, QWebHistory& history);
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/include/
m4vh263_decoder_pv_types.h 55 int32 operator=(int32 aStatus);
56 int32 operator==(int32 aStatus) const;
57 int32 operator!=(int32 aStatus) const;
58 int32 operator>=(int32 aStatus) const;
59 int32 operator<=(int32 aStatus) const;
60 int32 operator>(int32 aStatus) const;
61 int32 operator<(int32 aStatus) const;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pat_trie_/
const_child_iterator.hpp 62 operator==(const const_iterator& other) const
66 operator!=(const const_iterator& other) const
70 operator++()
79 operator++(int)
82 operator++();
87 operator->() const
94 operator*() const
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/lib/
libstdc++.so 
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/lib/
libstdc++.so 
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/lib/
libstdc++.so 
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/lib/
libstdc++.so 
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/lib/
libstdc++.so 

Completed in 354 milliseconds

<<11121314151617181920>>