HomeSort by relevance Sort by last modified time
    Searched defs:operator (Results 201 - 225 of 3465) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebKit/chromium/src/
WebGeolocationPosition.cpp 50 WebGeolocationPosition& WebGeolocationPosition::operator=(PassRefPtr<GeolocationPosition> position)
56 WebGeolocationPosition::operator PassRefPtr<GeolocationPosition>() const
WebLabelElement.cpp 53 WebLabelElement& WebLabelElement::operator=(const PassRefPtr<HTMLLabelElement>& elem)
59 WebLabelElement::operator PassRefPtr<HTMLLabelElement>() const
WebMediaElement.cpp 54 WebMediaElement& WebMediaElement::operator=(const PassRefPtr<HTMLMediaElement>& elem)
60 WebMediaElement::operator PassRefPtr<HTMLMediaElement>() const
WebURL.cpp 45 WebURL& WebURL::operator=(const WebCore::KURL& url)
53 WebURL::operator WebCore::KURL() const
  /frameworks/base/libs/hwui/
Vector.h 43 void operator+=(const Vector2& v) {
48 void operator-=(const Vector2& v) {
53 void operator+=(const float v) {
58 void operator-=(const float v) {
63 void operator/=(float s) {
68 void operator*=(float s) {
73 Vector2 operator+(const Vector2& v) const {
77 Vector2 operator-(const Vector2& v) const {
81 Vector2 operator/(float s) const {
85 Vector2 operator*(float s) const
    [all...]
  /frameworks/native/libs/utils/
CallStack.cpp 43 CallStack& CallStack::operator = (const CallStack& rhs) {
51 bool CallStack::operator == (const CallStack& rhs) const {
57 bool CallStack::operator != (const CallStack& rhs) const {
58 return !operator == (rhs);
61 bool CallStack::operator < (const CallStack& rhs) const {
67 bool CallStack::operator >= (const CallStack& rhs) const {
68 return !operator < (rhs);
71 bool CallStack::operator > (const CallStack& rhs) const {
77 bool CallStack::operator <= (const CallStack& rhs) const {
78 return !operator > (rhs)
    [all...]
  /ndk/sources/cxx-stl/gabi++/src/
type_info.cc 47 type_info::operator==(const type_info& rhs) const
59 type_info::operator!=(const type_info& rhs) const
61 return !this->operator==(rhs);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/debug/
safe_iterator.h 154 operator=(const _Safe_iterator& __x)
170 operator*() const
183 * @todo Use addressof() instead of & operator
186 operator->() const
200 operator++()
214 operator++(int)
230 operator--()
244 operator--(int)
256 operator[](const difference_type& __n) const
267 operator+=(const difference_type& __n
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/debug/
safe_iterator.h 170 operator=(const _Safe_iterator& __x)
189 operator*() const
201 * @todo Use addressof() instead of & operator
204 operator->() const
218 operator++()
232 operator++(int)
248 operator--()
262 operator--(int)
274 operator[](const difference_type& __n) const
285 operator+=(const difference_type& __n
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/debug/
safe_iterator.h 170 operator=(const _Safe_iterator& __x)
189 operator*() const
201 * @todo Use addressof() instead of & operator
204 operator->() const
218 operator++()
232 operator++(int)
248 operator--()
262 operator--(int)
274 operator[](const difference_type& __n) const
285 operator+=(const difference_type& __n
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/debug/
safe_iterator.h 154 operator=(const _Safe_iterator& __x)
170 operator*() const
183 * @todo Use addressof() instead of & operator
186 operator->() const
200 operator++()
214 operator++(int)
230 operator--()
244 operator--(int)
256 operator[](const difference_type& __n) const
267 operator+=(const difference_type& __n
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/debug/
safe_iterator.h 154 operator=(const _Safe_iterator& __x)
170 operator*() const
183 * @todo Use addressof() instead of & operator
186 operator->() const
200 operator++()
214 operator++(int)
230 operator--()
244 operator--(int)
256 operator[](const difference_type& __n) const
267 operator+=(const difference_type& __n
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/debug/
safe_iterator.h 154 operator=(const _Safe_iterator& __x)
170 operator*() const
183 * @todo Use addressof() instead of & operator
186 operator->() const
200 operator++()
214 operator++(int)
230 operator--()
244 operator--(int)
256 operator[](const difference_type& __n) const
267 operator+=(const difference_type& __n
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/include/debug/
safe_iterator.h 154 operator=(const _Safe_iterator& __x)
170 operator*() const
183 * @todo Use addressof() instead of & operator
186 operator->() const
200 operator++()
214 operator++(int)
230 operator--()
244 operator--(int)
256 operator[](const difference_type& __n) const
267 operator+=(const difference_type& __n
    [all...]
  /abi/cpp/src/
new.cc 34 operator new(std::size_t size) throw (/*std::bad_alloc*/)
  /external/astl/include/
ios_pos_types.h 54 operator streamoff() const { return mOffs; }
60 fpos& operator+=(streamoff offs);
61 fpos& operator-=(streamoff offs) {
62 return operator+=(-offs);
65 fpos operator+(streamoff offs) const;
66 fpos operator-(streamoff offs) const;
73 operator==(const fpos& lhs, const fpos& rhs)
77 operator!=(const fpos& lhs, const fpos& rhs)
  /external/chromium/base/memory/
scoped_nsobject.h 52 bool operator==(NST* that) const { return object_ == that; }
53 bool operator!=(NST* that) const { return object_ != that; }
55 operator NST*() const {
91 bool operator==(C* p1, const scoped_nsobject<C>& p2) {
96 bool operator!=(C* p1, const scoped_nsobject<C>& p2) {
125 bool operator==(id that) const { return object_ == that; }
126 bool operator!=(id that) const { return object_ != that; }
128 operator id() const {
  /external/chromium/chrome/browser/autocomplete/
history_provider_util.cc 26 bool HistoryMatch::operator==(const GURL& url) const {
  /external/chromium/chrome/browser/cocoa/
scoped_authorizationref.h 38 bool operator==(AuthorizationRef that) const {
42 bool operator!=(AuthorizationRef that) const {
46 operator AuthorizationRef() const {
50 AuthorizationRef* operator&() {
  /external/chromium/chrome/browser/notifications/
notification.cc 29 Notification& Notification::operator=(const Notification& notification) {
  /external/chromium/chrome/browser/sync/syncable/
syncable-inl.h 14 inline bool operator() (const syncable::EntryKernel* a,
  /external/chromium/chrome/common/
native_window_notification_source.h 24 gfx::NativeWindow operator->() const { return ptr(); }
  /external/chromium/chrome/common/net/gaia/
gaia_auth_consumer.cc 24 bool GaiaAuthConsumer::ClientLoginResult::operator==(
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-string.h 191 bool operator==(const char* c_str) const {
197 bool operator!=(const char* c_str) const {
231 const String& operator=(const char* c_str);
234 const String& operator=(const String &rhs) {
244 inline ::std::ostream& operator <<(::std::ostream& os, const String& str) {
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p6.cpp 7 explicit operator int(); // expected-warning {{explicit conversion functions are a C++11 extension}}
11 operator bool();
15 explicit A::operator bool() { return false; } // expected-warning {{explicit conversion functions are a C++11 extension}}\

Completed in 777 milliseconds

1 2 3 4 5 6 7 891011>>