Searched defs:operator (Results 201 - 225 of 4330) sorted by relevance

1234567891011>>

/external/chromium_org/base/mac/
H A Dscoped_typeref.h72 ScopedTypeRef& operator=(const ScopedTypeRef<T, Traits>& that) {
95 bool operator==(T that) const {
99 bool operator!=(T that) const {
103 operator T() const {
/external/chromium_org/cc/output/
H A Dbsp_walk_action.cc15 void BspWalkActionToVector::operator()(DrawPolygon* item) {
/external/chromium_org/chrome/common/importer/
H A Dimported_bookmark_entry.cc13 bool ImportedBookmarkEntry::operator==(
/external/chromium_org/content/browser/speech/endpointer/
H A Denergy_endpointer_params.cc33 void EnergyEndpointerParams::operator=(const EnergyEndpointerParams& source) {
/external/chromium_org/remoting/codec/
H A Dscoped_vpx_codec.cc15 void VpxCodecDeleter::operator()(vpx_codec_ctx_t* codec) {
/external/chromium_org/skia/ext/
H A Drefptr.h64 RefPtr& operator=(const RefPtr& other) {
70 RefPtr& operator=(const RefPtr<U>& other) {
82 T& operator*() const { return *ptr_; }
83 T* operator->() const { return ptr_; }
86 operator unspecified_bool_type() const {
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShadowData.cpp29 bool ShadowData::operator==(const ShadowData& o) const
H A DStyleDeprecatedFlexibleBoxData.cpp52 bool StyleDeprecatedFlexibleBoxData::operator==(const StyleDeprecatedFlexibleBoxData& o) const
H A DStyleFilterData.cpp42 bool StyleFilterData::operator==(const StyleFilterData& o) const
H A DStyleFlexibleBoxData.cpp52 bool StyleFlexibleBoxData::operator==(const StyleFlexibleBoxData& o) const
H A DStyleMarqueeData.cpp48 bool StyleMarqueeData::operator==(const StyleMarqueeData& o) const
H A DStyleMultiColData.cpp63 bool StyleMultiColData::operator==(const StyleMultiColData& o) const
H A DStyleSurroundData.cpp42 bool StyleSurroundData::operator==(const StyleSurroundData& o) const
H A DStyleTransformData.cpp46 bool StyleTransformData::operator==(const StyleTransformData& o) const
/external/chromium_org/third_party/WebKit/Source/wtf/testing/
H A DWTFTestHelpers.cpp40 std::ostream& operator<<(std::ostream& out, const String& string)
/external/chromium_org/third_party/WebKit/public/web/
H A DWebNotification.h53 WebNotification& operator=(const WebNotification& other)
96 WebNotification& operator=(Notification*);
103 inline bool operator==(const WebNotification& a, const WebNotification& b)
108 inline bool operator!=(const WebNotification& a, const WebNotification& b)
113 inline bool operator<(const WebNotification& a, const WebNotification& b)
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dbrkiter.h121 virtual UBool operator==(const BreakIterator&) const = 0;
124 * Returns the complement of the result of operator==
126 * @return the complement of the result of operator==
129 UBool operator!=(const BreakIterator& rhs) const { return !operator==(rhs); }
628 * The assignment operator has no real implementation.
631 BreakIterator& operator=(const BreakIterator&);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Drestest.h38 * The assignment operator has no real implementation.
41 ResourceBundleTest& operator=(const ResourceBundleTest&) { return *this; }
H A Drestsnew.h41 * The assignment operator has no real implementation.
44 NewResourceBundleTest& operator=(const NewResourceBundleTest&) { return *this; }
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dformat.hpp45 operator<(const cl_image_format &a, const cl_image_format &b) {
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Ddxbc_dump.cpp32 std::ostream& operator <<(std::ostream& out, const dxbc_container& container)
/external/clang/test/CodeGenCXX/
H A Doverload-binop-implicitconvert.cpp7 T& operator<< (T& t,const char* c)
/external/clang/test/SemaCXX/
H A Doverloaded-operator-decl.cpp7 X operator+(X, X);
8 X operator-(X, X) { X x; return x; }
11 Y operator-() const;
12 void operator()(int x = 17) const;
13 int operator[](int);
15 static int operator+(Y, Y); // expected-error{{overloaded 'operator+' cannot be a static member function}}
20 x = operator+(x, x);
23 X operator+(int, float); // expected-error{{overloaded 'operator
[all...]
/external/clang/test/SemaTemplate/
H A Dunresolved-construct.cpp12 A& operator=(A&&) {return *this;}
/external/compiler-rt/lib/asan/
H A Dasan_new_delete.cc44 // On OS X it's not enough to just provide our own 'operator new' and
45 // 'operator delete' implementations, because they're going to be in the
62 void *operator new(size_t size) { OPERATOR_NEW_BODY(FROM_NEW); }
64 void *operator new[](size_t size) { OPERATOR_NEW_BODY(FROM_NEW_BR); }
66 void *operator new(size_t size, std::nothrow_t const&)
69 void *operator new[](size_t size, std::nothrow_t const&)
93 void operator delete(void *ptr) throw() {
97 void operator delete[](void *ptr) throw() {
101 void operator delete(void *ptr, std::nothrow_t const&) {
105 void operator delet
[all...]

Completed in 2319 milliseconds

1234567891011>>