HomeSort by relevance Sort by last modified time
    Searched defs:operator (Results 1501 - 1525 of 6351) sorted by null

<<61626364656667686970>>

  /external/chromium_org/third_party/WebKit/Source/platform/network/
SocketStreamError.h 71 inline bool operator==(const SocketStreamError& a, const SocketStreamError& b) { return SocketStreamError::compare(a, b); }
72 inline bool operator!=(const SocketStreamError& a, const SocketStreamError& b) { return !(a == b); }
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextRunIterator.h 63 bool operator==(const TextRunIterator& other)
68 bool operator!=(const TextRunIterator& other) { return !operator==(other); }
  /external/chromium_org/third_party/WebKit/Source/web/
WebArrayBufferView.cpp 77 WebArrayBufferView& WebArrayBufferView::operator=(const PassRefPtr<ArrayBufferView>& value)
83 WebArrayBufferView::operator PassRefPtr<ArrayBufferView>() const
WebDOMError.cpp 84 WebDOMError& WebDOMError::operator=(const WTF::PassRefPtr<WebCore::DOMError>& error)
90 WebDOMError::operator WTF::PassRefPtr<WebCore::DOMError>() const
WebDOMFileSystem.cpp 98 WebDOMFileSystem& WebDOMFileSystem::operator=(const WTF::PassRefPtr<WebCore::DOMFileSystem>& domFileSystem)
104 WebDOMFileSystem::operator WTF::PassRefPtr<WebCore::DOMFileSystem>() const
WebFormControlElement.cpp 92 WebFormControlElement& WebFormControlElement::operator=(const PassRefPtr<HTMLFormControlElement>& elem)
98 WebFormControlElement::operator PassRefPtr<HTMLFormControlElement>() const
WebHitTestResult.cpp 79 WebHitTestResult& WebHitTestResult::operator=(const HitTestResult& result)
85 WebHitTestResult::operator HitTestResult() const
WebIDBKeyPath.cpp 99 WebIDBKeyPath& WebIDBKeyPath::operator=(const WebCore::IDBKeyPath& value)
106 WebIDBKeyPath::operator const WebCore::IDBKeyPath&() const
WebIDBKeyRange.cpp 84 WebIDBKeyRange& WebIDBKeyRange::operator=(const PassRefPtr<IDBKeyRange>& value)
90 WebIDBKeyRange::operator PassRefPtr<IDBKeyRange>() const
WebOptionElement.cpp 80 WebOptionElement& WebOptionElement::operator=(const PassRefPtr<HTMLOptionElement>& elem)
86 WebOptionElement::operator PassRefPtr<HTMLOptionElement>() const
WebSerializedScriptValue.cpp 85 WebSerializedScriptValue& WebSerializedScriptValue::operator=(const PassRefPtr<SerializedScriptValue>& value)
91 WebSerializedScriptValue::operator PassRefPtr<SerializedScriptValue>() const
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
CString.h 46 void* operator new(size_t, void* ptr) { return ptr; };
47 void operator delete(void*);
88 WTF_EXPORT bool operator==(const CString& a, const CString& b);
89 inline bool operator!=(const CString& a, const CString& b) { return !(a == b); }
90 WTF_EXPORT bool operator==(const CString& a, const char* b);
91 inline bool operator!=(const CString& a, const char* b) { return !(a == b); }
TextEncoding.h 71 inline bool operator==(const TextEncoding& a, const TextEncoding& b) { return a.name() == b.name(); }
72 inline bool operator!=(const TextEncoding& a, const TextEncoding& b) { return a.name() != b.name(); }
  /external/chromium_org/third_party/WebKit/public/platform/
WebPrivatePtr.h 54 // WebFoo& operator=(const WebFoo& other)
94 WebPrivatePtr<T>& operator=(const WebPrivatePtr<T>& other)
103 WebPrivatePtr<T>& operator=(const PassRefPtr<T>& prp)
114 T* operator->() const
131 // Disable the assignment operator; we define it above for when
135 WebPrivatePtr<T>& operator=(const WebPrivatePtr<T>& other);
WebVector.h 93 WebVector& operator=(const WebVector& other)
101 WebVector<T>& operator=(const C& other)
124 T& operator[](size_t i)
129 const T& operator[](size_t i) const
160 m_ptr = static_cast<T*>(::operator new(sizeof(T) * m_size));
173 m_ptr = static_cast<T*>(::operator new(sizeof(T) * m_size));
183 ::operator delete(m_ptr);
  /external/chromium_org/third_party/WebKit/public/web/
WebTextInputInfo.h 70 inline bool operator==(const WebTextInputInfo& a, const WebTextInputInfo& b)
75 inline bool operator!=(const WebTextInputInfo& a, const WebTextInputInfo& b)
  /external/chromium_org/third_party/angle/src/common/
RefCountObject.h 50 bool operator ! () const { return (get() == NULL); }
62 ObjectType *operator -> () const { return get(); }
  /external/chromium_org/third_party/icu/source/common/unicode/
errorcode.h 88 /** Conversion operator, returns a reference. @stable ICU 4.2 */
89 operator UErrorCode & () { return errorCode; }
90 /** Conversion operator, returns a pointer. @stable ICU 4.2 */
91 operator UErrorCode * () { return &errorCode; }
  /external/chromium_org/third_party/libjingle/source/talk/base/
scoped_ptr.h 131 inline void operator()(T* ptr) const {
140 inline void operator()(T* ptr) const {
146 // Disable this operator for any U != T because it is undefined to execute
153 template <typename U> void operator()(U* array) const;
168 inline void operator()(void* ptr) const {
341 // operator=. Allows assignment from a scoped_ptr rvalue for a convertible
344 // IMPLEMENTATION NOTE: C++11 unique_ptr<> keeps this operator= distinct from
345 // the normal move assignment operator. By C++11 20.7.1.2.3.4, this templated
348 // separate move assignment operator allowing us to avoid one use of SFINAE.
352 scoped_ptr& operator=(scoped_ptr<U, V> rhs)
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
composite_bitmap_glyph.cc 70 bool CompositeBitmapGlyph::Component::operator==(
75 CompositeBitmapGlyph::Component& CompositeBitmapGlyph::Component::operator=(
  /external/chromium_org/third_party/skia/include/effects/
SkColorMatrix.h 43 bool operator==(const SkColorMatrix& other) const {
47 bool operator!=(const SkColorMatrix& other) const { return !((*this) == other); }
  /external/chromium_org/third_party/skia/include/ports/
SkFontConfigInterface.h 49 bool operator==(const FontIdentity& other) const {
54 bool operator!=(const FontIdentity& other) const {
  /external/chromium_org/third_party/skia/src/gpu/
GrBinHashKey.h 57 bool operator==(const GrBinHashKey<KEY_SIZE>& key) const {
70 bool operator<(const GrBinHashKey<KEY_SIZE>& key) const {
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLIRect.h 72 bool operator ==(const GrGLIRect& glRect) const {
76 bool operator !=(const GrGLIRect& glRect) const {return !(*this == glRect);}
  /external/chromium_org/v8/src/
allocation.cc 41 v8::internal::FatalProcessOutOfMemory("Malloced operator new");
61 void* Embedded::operator new(size_t size) {
67 void Embedded::operator delete(void* p) {
72 void* AllStatic::operator new(size_t size) {
78 void AllStatic::operator delete(void* p) {

Completed in 1293 milliseconds

<<61626364656667686970>>