/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/ |
stream_iterator.h | 78 operator*() const 87 operator->() const { return &(operator*()); } 90 operator++() 100 operator++(int) 130 operator==(const istream_iterator<_Tp, _CharT, _Traits, _Dist>& __x, 137 operator!=(const istream_iterator<_Tp, _CharT, _Traits, _Dist>& __x, 146 * operator<<(Tp) defined. 190 /// Writes @a value to underlying ostream using operator<<. If 193 operator=(const _Tp& __value [all...] |
/system/core/include/utils/ |
BitSet.h | 102 inline bool operator== (const BitSet32& other) const { return value == other.value; } 103 inline bool operator!= (const BitSet32& other) const { return value != other.value; } 104 inline BitSet32 operator& (const BitSet32& other) const { 107 inline BitSet32& operator&= (const BitSet32& other) { 111 inline BitSet32 operator| (const BitSet32& other) const { 114 inline BitSet32& operator|= (const BitSet32& other) {
|
/external/clang/include/clang/AST/ |
ExternalASTSource.h | 314 LazyOffsetPtr &operator=(T *Ptr) { 319 LazyOffsetPtr &operator=(uint64_t Offset) { 332 LLVM_EXPLICIT operator bool() const { return Ptr != 0; } 403 reference operator*() const { 409 pointer operator->() const { 416 reference operator[](difference_type D) { 420 iterator &operator++() { 425 iterator operator++(int) { 431 iterator &operator--() { 436 iterator operator--(int) [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
CheckedArithmetic.h | 472 const Checked& operator=(Checked rhs) 481 template <typename U> const Checked& operator=(U value) 486 template <typename U, typename V> const Checked& operator=(const Checked<U, V>& rhs) 492 const Checked& operator++() 500 const Checked& operator--() 509 const Checked operator++(int) 516 const Checked operator--(int) 524 bool operator!() const 532 operator UnspecifiedBoolType*() const 556 template <typename U> const Checked operator+=(U rhs [all...] |
/external/llvm/include/llvm/ADT/ |
STLExtras.h | 34 Ty &operator()(Ty &self) const { 37 const Ty &operator()(const Ty &self) const { 44 bool operator()(const Ty* left, const Ty* right) const { 51 bool operator()(const Ty* left, const Ty* right) const { 56 // deleter - Very very very simple method that is used to invoke operator 73 // be dereferenced whenever operator* is invoked on the iterator. 101 inline value_type operator*() const { // All this work to do this 105 _Self& operator++() { ++current; return *this; } 106 _Self& operator--() { --current; return *this; } 107 _Self operator++(int) { _Self __tmp = *this; ++current; return __tmp; [all...] |
/external/chromium/chrome/browser/webdata/ |
autofill_entry.cc | 28 bool AutofillKey::operator==(const AutofillKey& key) const { 32 bool AutofillKey::operator<(const AutofillKey& key) const { 51 bool AutofillEntry::operator==(const AutofillEntry& entry) const { 68 bool AutofillEntry::operator<(const AutofillEntry& entry) const {
|
/external/chromium/third_party/libjingle/overrides/talk/xmllite/ |
qname.h | 26 bool operator==(const QName & other) const; 27 bool operator!=(const QName & other) const { return !operator==(other); } 28 bool operator<(const QName & other) const { return Compare(other) < 0; }
|
/external/chromium_org/base/strings/ |
nullable_string16.h | 33 inline bool operator==(const NullableString16& a, const NullableString16& b) { 37 inline bool operator!=(const NullableString16& a, const NullableString16& b) { 41 BASE_EXPORT std::ostream& operator<<(std::ostream& out,
|
/external/chromium_org/chrome/browser/browsing_data/ |
browsing_data_quota_helper.cc | 45 bool BrowsingDataQuotaHelper::QuotaInfo::operator <( 56 bool BrowsingDataQuotaHelper::QuotaInfo::operator ==(
|
/external/chromium_org/chrome/browser/extensions/api/mdns/ |
dns_sd_delegate.h | 22 bool operator==(const DnsSdService& other) const { 29 bool operator!=(const DnsSdService& other) const {
|
/external/chromium_org/chrome/browser/ui/ |
browser_iterator.h | 40 Browser* operator->() const { 43 Browser* operator*() const {
|
/external/chromium_org/chrome/browser/ui/tab_contents/ |
tab_contents_iterator.h | 45 content::WebContents* operator->() const { 48 content::WebContents* operator*() const {
|
/external/chromium_org/chrome/common/extensions/permissions/ |
media_galleries_permission_data.cc | 51 bool MediaGalleriesPermissionData::operator<( 56 bool MediaGalleriesPermissionData::operator==(
|
/external/chromium_org/chromeos/ime/ |
input_method_property.cc | 33 bool InputMethodProperty::operator==(const InputMethodProperty& other) const { 40 bool InputMethodProperty::operator!=(const InputMethodProperty& other) const {
|
/external/chromium_org/content/browser/indexed_db/ |
list_set.h | 27 list_set& operator=(const list_set<T>& other) { 76 inline self_type& operator++() { 80 inline self_type operator++(int /*ignored*/) { 85 inline self_type& operator--() { 89 inline self_type operator--(int /*ignored*/) { 94 inline value_type& operator*() { return *it_; } 95 inline value_type* operator->() { return &(*it_); } 96 inline bool operator==(const iterator& rhs) const { return it_ == rhs.it_; } 97 inline bool operator!=(const iterator& rhs) const { return it_ != rhs.it_; } 99 inline operator const_iterator() const { return const_iterator(it_); [all...] |
/external/chromium_org/content/public/browser/ |
browser_child_process_host_iterator.h | 33 bool operator++(); 55 T* operator->() { 58 T* operator*() {
|
/external/chromium_org/mojo/public/bindings/lib/ |
array_internal.cc | 19 ArrayDataTraits<bool>::BitRef::operator=(bool value) { 29 ArrayDataTraits<bool>::BitRef::operator=(const BitRef& value) { 33 ArrayDataTraits<bool>::BitRef::operator bool() const {
|
/external/chromium_org/ppapi/cpp/ |
resource.h | 39 Resource& operator=(const Resource& other); 97 inline bool operator==(const pp::Resource& lhs, const pp::Resource& rhs) { 101 inline bool operator!=(const pp::Resource& lhs, const pp::Resource& rhs) {
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
CursorData.h | 41 bool operator==(const CursorData& o) const 46 bool operator!=(const CursorData& o) const
|
LineClampValue.h | 52 bool operator==(const LineClampValue& o) const 57 bool operator!=(const LineClampValue& o) const
|
OutlineValue.h | 40 bool operator==(const OutlineValue& o) const 45 bool operator!=(const OutlineValue& o) const
|
ShadowList.h | 55 bool operator==(const ShadowList& o) const { return m_shadows == o.m_shadows; } 56 bool operator!=(const ShadowList& o) const { return !(*this == o); }
|
StyleVariableData.h | 51 bool operator==(const StyleVariableData& other) const { return other.m_data == m_data; } 52 bool operator!=(const StyleVariableData& other) const { return !(*this == other); }
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebData.cpp | 74 WebData& WebData::operator=(const PassRefPtr<SharedBuffer>& buffer) 80 WebData::operator PassRefPtr<SharedBuffer>() const
|
WebSocketStreamError.cpp | 61 WebSocketStreamError& WebSocketStreamError::operator=(PassRefPtr<SocketStreamError> error) 67 WebSocketStreamError::operator PassRefPtr<SocketStreamError>() const
|