Searched
defs:operator (Results
1476 -
1500 of
6351) sorted by null
<<51525354555657585960>>
/external/chromium_org/base/prefs/ |
scoped_user_pref_update.h | 90 T& operator*() { 94 T* operator->() {
|
/external/chromium_org/base/strings/ |
string_piece.h | 100 value_type operator[](size_type i) const { return ptr_[i]; } 351 BASE_EXPORT bool operator==(const StringPiece& x, const StringPiece& y); 353 inline bool operator!=(const StringPiece& x, const StringPiece& y) { 357 inline bool operator<(const StringPiece& x, const StringPiece& y) { 363 inline bool operator>(const StringPiece& x, const StringPiece& y) { 367 inline bool operator<=(const StringPiece& x, const StringPiece& y) { 371 inline bool operator>=(const StringPiece& x, const StringPiece& y) { 375 inline bool operator==(const StringPiece16& x, const StringPiece16& y) { 382 inline bool operator!=(const StringPiece16& x, const StringPiece16& y) { 386 inline bool operator<(const StringPiece16& x, const StringPiece16& y) [all...] |
/external/chromium_org/base/win/ |
scoped_variant.h | 125 const VARIANT* operator&() const { 130 // we support the assignment operator for the type we wrap. 131 ScopedVariant& operator=(const VARIANT& var); 145 operator const VARIANT&() const { 158 bool operator==(const ScopedVariant& var) const; 159 bool operator!=(const ScopedVariant& var) const;
|
/external/chromium_org/cc/resources/ |
prioritized_tile_set.h | 32 Iterator& operator++(); 33 Tile* operator->() { return *(*this); } 34 Tile* operator*(); 35 operator bool() const {
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
file_change.h | 38 bool operator==(const FileChange &file_change) const { 42 bool operator<(const FileChange &file_change) const {
|
/external/chromium_org/chrome/common/extensions/permissions/ |
bluetooth_permission_data.cc | 63 bool BluetoothPermissionData::operator<( 68 bool BluetoothPermissionData::operator==(
|
usb_device_permission_data.cc | 91 bool UsbDevicePermissionData::operator<( 102 bool UsbDevicePermissionData::operator==(
|
/external/chromium_org/components/autofill/content/browser/wallet/ |
gaia_account.cc | 63 bool GaiaAccount::operator==(const GaiaAccount& other) const { 70 bool GaiaAccount::operator!=(const GaiaAccount& other) const {
|
/external/chromium_org/components/autofill/core/browser/webdata/ |
autofill_entry.cc | 41 bool AutofillKey::operator==(const AutofillKey& key) const { 45 bool AutofillKey::operator<(const AutofillKey& key) const { 64 bool AutofillEntry::operator==(const AutofillEntry& entry) const { 81 bool AutofillEntry::operator<(const AutofillEntry& entry) const {
|
/external/chromium_org/content/public/browser/ |
desktop_media_id.h | 55 bool operator<(const DesktopMediaID& other) const { 58 bool operator==(const DesktopMediaID& other) const {
|
/external/chromium_org/gpu/command_buffer/service/ |
shader_translator_cache.h | 74 bool operator== (const ShaderTranslatorInitParams& params) const { 78 bool operator< (const ShaderTranslatorInitParams& params) const {
|
/external/chromium_org/ppapi/cpp/dev/ |
resource_array_dev.cc | 47 ResourceArray_Dev& ResourceArray_Dev::operator=( 49 Resource::operator=(other); 59 PP_Resource ResourceArray_Dev::operator[](uint32_t index) const {
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLDimension.h | 67 bool operator==(const HTMLDimension& other) const 71 bool operator!=(const HTMLDimension& other) const { return !(*this == other); }
|
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/ |
TimingFunctionTestHelper.cpp | 93 friend bool operator==(const ChainedTimingFunction& lhs, const TimingFunction& rhs); 186 bool operator==(const LinearTimingFunction& lhs, const TimingFunction& rhs) 191 bool operator==(const CubicBezierTimingFunction& lhs, const TimingFunction& rhs) 203 bool operator==(const StepsTimingFunction& lhs, const TimingFunction& rhs) 215 bool operator==(const ChainedTimingFunction& lhs, const TimingFunction& rhs) 220 // Like in the PrintTo case, the generic operator== *must* come after the 221 // non-generic operator== otherwise it will end up calling itself. 222 bool operator==(const TimingFunction& lhs, const TimingFunction& rhs) 247 // No need to define specific operator!= as they can all come via this function. 248 bool operator!=(const TimingFunction& lhs, const TimingFunction& rhs [all...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/ |
WebArrayBuffer.cpp | 92 WebArrayBuffer& WebArrayBuffer::operator=(const WTF::PassRefPtr<WTF::ArrayBuffer>& blob) 98 WebArrayBuffer::operator WTF::PassRefPtr<WTF::ArrayBuffer>() const
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
Pagination.h | 44 bool operator==(const Pagination& other) const 49 bool operator!=(const Pagination& other) const
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
BorderImageLengthBox.h | 74 bool operator==(const BorderImageLengthBox& other) const 80 bool operator!=(const BorderImageLengthBox& other) const
|
BorderValue.h | 60 bool operator==(const BorderValue& o) const 65 bool operator!=(const BorderValue& o) const
|
StyleGridItemData.h | 47 bool operator==(const StyleGridItemData& o) const 53 bool operator!=(const StyleGridItemData& o) const
|
StyleReflection.h | 42 bool operator==(const StyleReflection& o) const 46 bool operator!=(const StyleReflection& o) const { return !(*this == o); }
|
StyleVisualData.h | 41 bool operator==(const StyleVisualData& o) const 49 bool operator!=(const StyleVisualData& o) const { return !(*this == o); }
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
LengthBox.h | 85 bool operator==(const LengthBox& o) const 90 bool operator!=(const LengthBox& o) const
|
LengthPoint.h | 49 bool operator==(const LengthPoint& o) const { return m_x == o.m_x && m_y == o.m_y; } 50 bool operator!=(const LengthPoint& o) const { return m_x != o.m_x || m_y != o.m_y; }
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebBlobData.cpp | 111 WebBlobData& WebBlobData::operator=(const PassOwnPtr<BlobData>& data) 117 WebBlobData::operator PassOwnPtr<BlobData>()
|
WebCString.cpp | 92 WebCString& WebCString::operator=(const WTF::CString& s) 98 WebCString::operator WTF::CString() const
|
Completed in 1763 milliseconds
<<51525354555657585960>>