Searched defs:operator (Results 26 - 50 of 222) sorted by relevance

123456789

/frameworks/native/services/sensorservice/
H A DRingBuffer.h51 iterator& operator++();
53 iterator operator++(int);
55 bool operator==(const iterator& rhs);
57 bool operator!=(const iterator& rhs);
59 T& operator*();
61 T* operator->();
77 const_iterator& operator++();
79 const_iterator operator++(int);
81 bool operator==(const const_iterator& rhs);
83 bool operator!
[all...]
H A Dvec.h145 inline VLHS<TYPE, SIZE> PURE operator + (
157 inline VLHS<TYPE, SIZE> PURE operator - (
168 inline VEC<TYPE, SIZE> PURE operator * (
179 inline VEC<TYPE, SIZE> PURE operator * (
245 vec<TYPE, SIZE> PURE operator - (const vec<TYPE, SIZE>& lhs) {
260 inline const TYPE& operator[](size_t i) const { return v[i]; }
261 inline TYPE& operator[](size_t i) { return v[i]; }
269 inline const float& operator[](size_t i) const { return v[i]; }
270 inline float& operator[](size_t i) { return v[i]; }
280 inline const float& operator[](size_
[all...]
H A Dmat.h155 mat& operator=(const mat& rhs) {
156 base::operator=(rhs);
160 mat& operator=(const base& rhs) {
161 base::operator=(rhs);
165 mat& operator=(pTYPE rhs) {
172 friend inline mat PURE operator + (const mat& lhs, const mat& rhs) {
177 friend inline mat PURE operator - (const mat& lhs, const mat& rhs) {
185 friend mat PURE operator * (
192 friend vec<TYPE, R> PURE operator * (
198 friend mat PURE operator * (
[all...]
/frameworks/base/libs/hwui/
H A DLayerCache.h114 bool operator==(const LayerEntry& other) const {
118 bool operator!=(const LayerEntry& other) const {
122 bool operator<(const LayerEntry& other) const {
H A DRenderBufferCache.h92 bool operator==(const RenderBufferEntry& other) const {
96 bool operator!=(const RenderBufferEntry& other) const {
100 bool operator<(const RenderBufferEntry& other) const {
H A DFloatColor.h42 bool operator==(const FloatColor& other) const {
49 bool operator!=(const FloatColor& other) const {
H A DGradientCache.h49 GradientCacheEntry& operator=(const GradientCacheEntry& entry) {
61 bool operator==(const GradientCacheEntry& other) const {
65 bool operator!=(const GradientCacheEntry& other) const {
113 void operator()(GradientCacheEntry& shader, Texture*& texture) override;
/frameworks/av/camera/ndk/impl/
H A DACameraCaptureSession.h29 bool operator == (const ACaptureSessionOutput& other) const {
32 bool operator != (const ACaptureSessionOutput& other) const {
35 bool operator < (const ACaptureSessionOutput& other) const {
38 bool operator > (const ACaptureSessionOutput& other) const {
/frameworks/base/tools/aapt2/util/
H A DMaybe.h53 Maybe& operator=(const Maybe& rhs);
56 Maybe& operator=(const Maybe<U>& rhs);
58 Maybe& operator=(Maybe&& rhs);
61 Maybe& operator=(Maybe<U>&& rhs);
77 explicit operator bool() const;
163 inline Maybe<T>& Maybe<T>::operator=(const Maybe& rhs) {
170 inline Maybe<T>& Maybe<T>::operator=(const Maybe<U>& rhs) {
198 inline Maybe<T>& Maybe<T>::operator=(Maybe&& rhs) {
205 inline Maybe<T>& Maybe<T>::operator=(Maybe<U>&& rhs) {
249 Maybe<T>::operator boo
[all...]
H A DUtil.h183 operator bool() const;
201 inline StringBuilder::operator bool() const {
231 iterator& operator=(const iterator&) = default;
233 iterator& operator++();
234 BasicStringPiece<Char> operator*();
235 bool operator==(const iterator& rhs) const;
236 bool operator!=(const iterator& rhs) const;
264 typename Tokenizer<Char>::iterator& Tokenizer<Char>::iterator::operator++() {
287 inline BasicStringPiece<Char> Tokenizer<Char>::iterator::operator*() {
292 inline bool Tokenizer<Char>::iterator::operator
[all...]
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputAction.h34 bool operator<(const InputAction& pOther) const {
41 InputAction& operator=(const InputAction&); // DO_NOT_IMPLEMENT
/frameworks/av/media/libmedia/
H A DMediaResource.cpp57 bool MediaResource::operator==(const MediaResource &other) const {
61 bool MediaResource::operator!=(const MediaResource &other) const {
/frameworks/base/tools/aapt/
H A DOutputSet.h41 bool operator<(const OutputEntry& o) const { return getPath() < o.mPath; }
42 bool operator==(const OutputEntry& o) const { return getPath() == o.mPath; }
/frameworks/av/drm/common/
H A DDrmSupportInfo.cpp33 bool DrmSupportInfo::operator<(const DrmSupportInfo& drmSupportInfo) const {
35 // Note Vector doesn't overrides "<" operator
39 bool DrmSupportInfo::operator==(const DrmSupportInfo& drmSupportInfo) const {
41 // Note Vector doesn't overrides "==" operator
71 DrmSupportInfo& DrmSupportInfo::operator=(const DrmSupportInfo& drmSupportInfo) {
120 DrmSupportInfo::FileSuffixIterator& DrmSupportInfo::FileSuffixIterator::operator=(
144 DrmSupportInfo::MimeTypeIterator& DrmSupportInfo::MimeTypeIterator::operator=(
/frameworks/compile/mclinker/include/mcld/Support/
H A DPath.h97 bool operator==(const Path& pLHS, const Path& pRHS);
98 bool operator!=(const Path& pLHS, const Path& pRHS);
99 Path operator+(const Path& pLHS, const Path& pRHS);
109 inline std::basic_ostream<Char, Traits>& operator<<(
116 inline std::basic_istream<Char, Traits>& operator>>(
122 inline llvm::raw_ostream& operator<<(llvm::raw_ostream& pOS,
161 bool operator()(const mcld::sys::fs::Path& pX,
/frameworks/native/include/ui/
H A DTMatHelpers.h181 * BASE only needs to implement operator[] and size().
190 BASE<T>& operator *= (T v) {
199 BASE<T>& operator /= (T v) {
209 friend BASE<T> PURE operator *(const BASE<T>& lhs, const BASE<U>& rhs) {
219 * - operator[]
H A DRect.h37 // we don't provide copy-ctor and operator= on purpose
128 inline bool operator == (const Rect& rhs) const {
133 inline bool operator != (const Rect& rhs) const {
134 return !operator == (rhs);
137 // operator < defines an order which allows to use rectangles in sorted
139 bool operator < (const Rect& rhs) const;
141 const Rect operator + (const Point& rhs) const;
142 const Rect operator - (const Point& rhs) const;
144 Rect& operator += (const Point& rhs) {
147 Rect& operator
[all...]
/frameworks/native/libs/ui/
H A DRect.cpp40 bool Rect::operator <(const Rect& rhs) const {
75 const Rect Rect::operator +(const Point& rhs) const {
80 const Rect Rect::operator -(const Point& rhs) const {
/frameworks/base/tools/aapt2/
H A DResource.cpp88 bool operator<(const ResourceKey& a, const ResourceKey& b) {
92 bool operator<(const ResourceKeyRef& a, const ResourceKeyRef& b) {
/frameworks/compile/mclinker/lib/Support/
H A DDirectory.cpp78 Directory& Directory::operator=(const Directory& pCopy) {
168 DirIterator& DirIterator::operator=(const DirIterator& pCopy) {
175 DirIterator& DirIterator::operator++() {
197 DirIterator DirIterator::operator++(int pIn) {
218 bool DirIterator::operator==(const DirIterator& y) const {
232 bool DirIterator::operator!=(const DirIterator& y) const {
233 return !this->operator==(y);
/frameworks/native/vulkan/libvulkan/
H A Dlayers_extensions.h33 LayerRef& operator=(const LayerRef&) = delete;
36 operator const Layer*() const { return layer_; }
/frameworks/minikin/include/minikin/
H A DMinikinRefCounted.h50 T& operator*() const { return *mObj; }
51 T* operator->() const { return mObj; }
/frameworks/rs/
H A DrsList.h69 iterator& operator++() {
82 bool operator==(const iterator& other) const {
86 bool operator!=(const iterator& other) const {
90 const T& operator*() const { return *p; }
92 T* operator->() { return p; }
H A DrsMap.h55 ValueType& operator[](const KeyType& key) {
82 iterator& operator++() {
103 bool operator==(const iterator& other) const {
108 bool operator!=(const iterator& other) const {
113 const MapEntry& operator*() const {
/frameworks/base/include/androidfw/
H A DAssetDir.h70 const AssetDir& operator=(const AssetDir& src);
87 const FileInfo& operator= (const FileInfo& src) {
100 bool operator< (const FileInfo& rhs) const {
105 bool operator== (const FileInfo& rhs) const {

Completed in 568 milliseconds

123456789