Searched defs:operator (Results 126 - 150 of 309) sorted by relevance

1234567891011>>

/frameworks/base/libs/hwui/utils/
H A DStringUtils.h45 friend std::ostream& operator<<(std::ostream& stream, const SizePrinter& d) {
/frameworks/base/tools/aapt/
H A DSymbol.h33 inline bool operator<(const Symbol& rhs) const;
48 inline bool operator<(const SymbolDefinition& rhs) const;
77 bool Symbol::operator<(const Symbol& rhs) const {
90 bool SymbolDefinition::operator<(const SymbolDefinition& rhs) const {
/frameworks/compile/mclinker/include/mcld/ADT/
H A DBinTree.h120 pointer operator*() const {
124 reference operator->() const {
155 Self& operator++() {
160 Self operator++(int) {
206 pointer operator*() const { return static_cast<node_type*>(m_pNode)->data; }
208 reference operator->() const {
218 Self& operator++() {
223 Self operator++(int) {
229 Self& operator--() {
234 Self operator
[all...]
/frameworks/native/include/binder/
H A DIpPrefix.h61 friend bool operator==(const IpPrefix& lhs, const IpPrefix& rhs);
63 friend bool operator!=(const IpPrefix& lhs, const IpPrefix& rhs) {
/frameworks/native/libs/binder/include/binder/
H A DIpPrefix.h61 friend bool operator==(const IpPrefix& lhs, const IpPrefix& rhs);
63 friend bool operator!=(const IpPrefix& lhs, const IpPrefix& rhs) {
/frameworks/native/libs/math/include/math/
H A Dmat2.h112 inline constexpr col_type const& operator[](size_t column) const {
120 inline col_type& operator[](size_t column) {
129 TMat22& operator = (const TMat22&) = default;
322 CONSTEXPR typename TMat22<U>::col_type PURE operator *(const TMat22<T>& lhs, const TVec2<U>& rhs) {
333 CONSTEXPR typename TMat22<U>::row_type PURE operator *(const TVec2<U>& lhs, const TMat22<T>& rhs) {
344 operator*(TMat22<T> lhs, U rhs) {
351 operator*(U lhs, const TMat22<T>& rhs) {
H A Dmat3.h119 inline constexpr col_type const& operator[](size_t column) const {
127 inline col_type& operator[](size_t column) {
136 TMat33& operator = (const TMat33&) = default;
375 CONSTEXPR typename TMat33<U>::col_type PURE operator *(const TMat33<T>& lhs, const TVec3<U>& rhs) {
386 CONSTEXPR typename TMat33<U>::row_type PURE operator *(const TVec3<U>& lhs, const TMat33<T>& rhs) {
397 operator*(TMat33<T> lhs, U rhs) {
404 operator*(U lhs, const TMat33<T>& rhs) {
H A Dmat4.h125 inline constexpr col_type const& operator[](size_t column) const {
133 inline col_type& operator[](size_t column) {
142 TMat44& operator = (const TMat44&) = default;
524 CONSTEXPR typename TMat44<T>::col_type PURE operator *(const TMat44<T>& lhs, const TVec4<U>& rhs) {
535 CONSTEXPR typename TMat44<T>::col_type PURE operator *(const TMat44<T>& lhs, const TVec3<U>& rhs) {
542 CONSTEXPR typename TMat44<U>::row_type PURE operator *(const TVec4<U>& lhs, const TMat44<T>& rhs) {
553 operator *(TMat44<T> lhs, U rhs) {
560 operator *(U lhs, const TMat44<T>& rhs) {
H A Dvec2.h59 inline constexpr T const& operator[](size_t i) const {
67 inline T& operator[](size_t i) {
76 TVec2& operator = (const TVec2&) = default;
H A DTMatHelpers.h363 * BASE only needs to implement operator[] and size().
372 BASE<T>& operator *= (T v) {
382 const BASE<T>& operator *= (const BASE<U>& rhs) {
389 BASE<T>& operator /= (T v) {
399 friend CONSTEXPR BASE<T> PURE operator *(const BASE<T>& lhs, const BASE<U>& rhs) {
408 * - operator[]
455 inline constexpr T const& operator()(size_t row, size_t col) const {
459 inline T& operator()(size_t row, size_t col) {
602 friend std::ostream& operator<<(std::ostream& stream, const BASE<T>& m) {
/frameworks/native/libs/vr/libdvr/include/dvr/
H A Ddvr_deleter.h48 void operator()(DvrBuffer* p) { dvrBufferDestroy(p); }
49 void operator()(DvrReadBuffer* p) { dvrReadBufferDestroy(p); }
50 void operator()(DvrWriteBuffer* p) { dvrWriteBufferDestroy(p); }
51 void operator()(DvrReadBufferQueue* p) { dvrReadBufferQueueDestroy(p); }
52 void operator()(DvrWriteBufferQueue* p) { dvrWriteBufferQueueDestroy(p); }
53 void operator()(DvrDisplayManager* p) { dvrDisplayManagerDestroy(p); }
54 void operator()(DvrSurfaceState* p) { dvrSurfaceStateDestroy(p); }
55 void operator()(DvrSurface* p) { dvrSurfaceDestroy(p); }
56 void operator()(DvrHwcClient* p) { dvrHwcClientDestroy(p); }
57 void operator()(DvrHwcFram
[all...]
/frameworks/native/libs/vr/libvrflinger/
H A Dacquired_buffer.cpp40 AcquiredBuffer& AcquiredBuffer::operator=(AcquiredBuffer&& other) {
/frameworks/av/media/libstagefright/codec2/vndk/include/util/
H A DC2ParamUtils.h45 inline operator T() { return _mValue; }
47 inline operator C2Value::Primitive() { return (T)_mValue; }
49 inline T &operator =(T value __unused) { return _mValue; }
/frameworks/base/libs/hwui/
H A DRect.h52 // we don't provide copy-ctor and operator= on purpose
90 friend int operator==(const Rect& a, const Rect& b) {
94 friend int operator!=(const Rect& a, const Rect& b) {
294 friend std::ostream& operator<<(std::ostream& os, const Rect& rect) {
/frameworks/base/tools/aapt2/util/
H A DUtil.h179 explicit operator bool() const;
198 inline StringBuilder::operator bool() const { return error_.empty(); }
225 iterator& operator=(const iterator&) = default;
227 iterator& operator++();
229 android::StringPiece operator*() { return token_; }
230 bool operator==(const iterator& rhs) const;
231 bool operator!=(const iterator& rhs) const;
280 * Stream operator for functions. Calls the function with the stream as an
284 inline ::std::ostream& operator<<(
H A DUtil.cpp490 typename Tokenizer::iterator& Tokenizer::iterator::operator++() {
512 bool Tokenizer::iterator::operator==(const iterator& rhs) const {
519 bool Tokenizer::iterator::operator!=(const iterator& rhs) const {
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dserialization.h149 explicit operator bool() const { return error_code_ != ErrorCode::NO_ERROR; }
151 operator ErrorCode() const { return error_code_; }
162 operator std::string() const {
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dutility.h27 ByteBuffer& operator=(const ByteBuffer& other) {
34 ByteBuffer& operator=(ByteBuffer&& other) {
52 inline bool operator==(const ByteBuffer& other) const {
57 inline bool operator!=(const ByteBuffer& other) const {
58 return !operator==(other);
218 Payload& operator=(const Payload& other) {
223 Payload& operator=(const std::initializer_list<uint8_t>& initializer) {
231 bool operator==(const Payload& other) const {
234 bool operator!=(const Payload& other) const {
241 operator
[all...]
/frameworks/av/services/camera/libcameraservice/utils/
H A DClientManager.h42 bool operator==(const ClientPriority& rhs) const {
46 bool operator< (const ClientPriority& rhs) const {
54 bool operator> (const ClientPriority& rhs) const {
58 bool operator<=(const ClientPriority& rhs) const {
62 bool operator>=(const ClientPriority& rhs) const {
133 friend bool operator < (const ClientDescriptor<K, V>& a, const ClientDescriptor<K, V>& b);
145 bool operator < (const ClientDescriptor<K, V>& a, const ClientDescriptor<K, V>& b) {
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp324 bool operator < (const Attribute& other) const {
341 void operator = (EGLint value) {
346 operator EGLint () const { return v.mList[attribute]; }
357 Adder operator [] (EGLint attribute) {
360 EGLint operator [] (EGLint attribute) const {
363 // cast-operator to (EGLint const*)
364 operator EGLint const* () const { return &mList.keyAt(0).v; }
/frameworks/av/media/libnbaio/
H A DNBLog.cpp149 const NBLog::FormatEntry::entry& NBLog::FormatEntry::iterator::operator*() const {
153 const NBLog::FormatEntry::entry* NBLog::FormatEntry::iterator::operator->() const {
157 NBLog::FormatEntry::iterator& NBLog::FormatEntry::iterator::operator++() {
162 NBLog::FormatEntry::iterator& NBLog::FormatEntry::iterator::operator--() {
177 int NBLog::FormatEntry::iterator::operator-(const NBLog::FormatEntry::iterator &other) const {
181 bool NBLog::FormatEntry::iterator::operator!=(const iterator &other) const {
982 bool operator>(const struct timespec &t1, const struct timespec &t2) {
986 bool operator>(const struct MergeItem &i1, const struct MergeItem &i2) {
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerCCDecoder.cpp566 bool NuPlayer::CCDecoder::CCTrack::operator<(const NuPlayer::CCDecoder::CCTrack& rhs) const {
570 bool NuPlayer::CCDecoder::CCTrack::operator==(const NuPlayer::CCDecoder::CCTrack& rhs) const {
574 bool NuPlayer::CCDecoder::CCTrack::operator!=(const NuPlayer::CCDecoder::CCTrack& rhs) const {
/frameworks/base/tools/aapt2/
H A DResourceValues.h86 friend std::ostream& operator<<(std::ostream& out, const Value& value);
142 bool operator<(const Reference&, const Reference&);
143 bool operator==(const Reference&, const Reference&);
177 inline bool operator==(const UntranslatableSection& a, const UntranslatableSection& b) {
181 inline bool operator!=(const UntranslatableSection& a, const UntranslatableSection& b) {
252 friend std::ostream& operator<<(std::ostream& out, const Symbol& symbol);
275 friend std::ostream& operator<<(std::ostream& out, const Entry& entry);
322 typename std::enable_if<std::is_base_of<Value, T>::value, std::ostream&>::type operator<<(
/frameworks/av/drm/common/
H A DDrmInfo.cpp84 DrmInfo::KeyIterator& DrmInfo::KeyIterator::operator=(const DrmInfo::KeyIterator& keyIterator) {
96 DrmInfo::Iterator& DrmInfo::Iterator::operator=(const DrmInfo::Iterator& iterator) {
/frameworks/av/drm/libdrmframework/plugins/common/util/include/
H A DSessionMap.h122 SessionMap<TValue> & operator=(const SessionMap<TValue> & objectCopy) {

Completed in 476 milliseconds

1234567891011>>