Home
last modified time | relevance | path

Searched refs:operator (Results 76 – 100 of 195) sorted by relevance

12345678

/art/dexlayout/
Ddex_ir.h123 Iterator& operator=(const Iterator&) = default; variable
124 Iterator& operator=(Iterator&&) = default; variable
136 bool operator==(const Iterator& rhs) const { return position_ == rhs.position_; }
137 bool operator!=(const Iterator& rhs) const { return !(*this == rhs); }
138 bool operator<(const Iterator& rhs) const { return position_ < rhs.position_; }
139 bool operator>(const Iterator& rhs) const { return rhs < *this; }
140 bool operator<=(const Iterator& rhs) const { return !(rhs < *this); }
141 bool operator>=(const Iterator& rhs) const { return !(*this < rhs); }
143 Iterator& operator++() { // Value after modification.
148 Iterator operator++(int) {
[all …]
/art/runtime/gc/
Dallocator_type.h40 std::ostream& operator<<(std::ostream& os, AllocatorType rhs);
Dgc_cause.h70 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause);
Dcollector_type.h63 std::ostream& operator<<(std::ostream& os, CollectorType collector_type);
/art/test/ti-agent/
Dscoped_primitive_array.h77 const PRIMITIVE_TYPE& operator[](size_t n) const { return mRawArray[n]; } \
128 const PRIMITIVE_TYPE& operator[](size_t n) const { return mRawArray[n]; } \
130 REFERENCE_TYPE(PRIMITIVE_TYPE) operator[](size_t n) { return mRawArray[n]; } \
/art/runtime/
Dimage.h49 ImageSection& operator=(const ImageSection& section) = default; variable
582 std::ostream& operator<<(std::ostream& os, ImageHeader::ImageMethod method);
583 std::ostream& operator<<(std::ostream& os, ImageHeader::ImageRoot root);
584 std::ostream& operator<<(std::ostream& os, ImageHeader::ImageSections section);
585 std::ostream& operator<<(std::ostream& os, ImageHeader::StorageMode mode);
587 std::ostream& operator<<(std::ostream& os, const ImageSection& section);
Dclass_status.h102 std::ostream& operator<<(std::ostream& os, ClassStatus rhs);
Djdwp_provider.h54 std::ostream& operator<<(std::ostream& os, JdwpProvider rhs);
Dthread_state.h60 std::ostream& operator<<(std::ostream& os, ThreadState rhs);
Dreflective_value_visitor.h60 T* operator()(T* t, const ReflectionSourceInfo& info) REQUIRES_SHARED(Locks::mutator_lock_) { in operator() function
101 std::ostream& operator<<(std::ostream& os, ReflectionSourceType type);
121 inline std::ostream& operator<<(std::ostream& os, const ReflectionSourceInfo& info) {
Ddeoptimization_kind.h51 std::ostream& operator<<(std::ostream& os, const DeoptimizationKind& kind);
/art/runtime/base/
Dmutex.h171 std::ostream& operator<<(std::ostream& os, const Mutex& mu);
225 const Mutex& operator!() const { return *this; }
298 std::ostream& operator<<(std::ostream& os, const ReaderWriterMutex& mu);
380 const ReaderWriterMutex& operator!() const { return *this; }
418 std::ostream& operator<<(std::ostream& os, const MutatorMutex& mu);
428 const MutatorMutex& operator!() const { return *this; }
Dcallee_save_type.h35 std::ostream& operator<<(std::ostream& os, CalleeSaveType rhs);
Dmutator_locked_dumpable.h47 inline std::ostream& operator<<(std::ostream& os, const MutatorLockedDumpable<T>& rhs)
/art/libartbase/base/
Ddumpable.h48 std::ostream& operator<<(std::ostream& os, const Dumpable<T>& rhs) {
Dhex_dump.h48 inline std::ostream& operator<<(std::ostream& os, const HexDump& rhs) {
Dscoped_flock.h78 void operator()(LockedFile* ptr) { in operator() function
/art/libprofile/profile/
Dprofile_compilation_info.h95 bool operator==(const DexReference& other) const {
141 bool operator==(const ClassReference& other) const {
144 bool operator<(const ClassReference& other) const {
176 bool operator==(const DexPcData& other) const {
289 bool operator==(const OfflineProfileMethodInfo& other) const;
292 bool operator==(const std::vector<ProfileMethodInfo::ProfileInlineCache>& other) const;
310 bool operator==(const ProfileSampleAnnotation& other) const;
312 bool operator<(const ProfileSampleAnnotation& other) const {
637 bool operator==(const DexFileData& other) const {
1051 std::ostream& operator<<(std::ostream& stream,
/art/openjdkjvmti/
Dart_jvmti.h145 JvmtiDeleter& operator=(const JvmtiDeleter&) = default; variable
147 void operator()(T* ptr) const { in operator() function
165 JvmtiDeleter& operator=(const JvmtiDeleter&) = default; variable
168 void operator()(U* ptr) const { in operator() function
/art/libartbase/base/unix_file/
Dfd_file.h52 FdFile& operator=(FdFile&& other) noexcept; variable
165 std::ostream& operator<<(std::ostream& os, FdFile::GuardState kind);
/art/libelffile/stream/
Doutput_stream.h32 std::ostream& operator<<(std::ostream& os, const Whence& rhs);
/art/libdexfile/dex/
Dtype_reference.h44 bool operator()(const TypeReference& tr1, const TypeReference& tr2) const { in operator() function
Dstring_reference.h48 bool operator()(const StringReference& sr1, const StringReference& sr2) const { in operator() function
/art/runtime/mirror/
Dstring-alloc-inl.h43 void operator()(ObjPtr<Object> obj, size_t usable_size ATTRIBUTE_UNUSED) const in operator() function
63 void operator()(ObjPtr<Object> obj, size_t usable_size ATTRIBUTE_UNUSED) const in operator() function
99 void operator()(ObjPtr<Object> obj, size_t usable_size ATTRIBUTE_UNUSED) const in operator() function
130 void operator()(ObjPtr<Object> obj, size_t usable_size ATTRIBUTE_UNUSED) const in operator() function
/art/runtime/entrypoints/quick/
Dquick_entrypoints_enum.h35 std::ostream& operator<<(std::ostream& os, const QuickEntrypointEnum& kind);

12345678