Searched defs:operator (Results 1 - 25 of 146) sorted by relevance

123456

/art/runtime/
H A Dstride_iterator.h31 StrideIterator& operator=(const StrideIterator&) = default;
32 StrideIterator& operator=(StrideIterator&&) = default;
38 bool operator==(const StrideIterator& other) const {
43 bool operator!=(const StrideIterator& other) const {
47 StrideIterator operator++() { // Value after modification.
52 StrideIterator operator++(int) {
58 StrideIterator operator+(ssize_t delta) const {
64 StrideIterator& operator+=(ssize_t delta) {
69 T& operator*() const {
73 T* operator
[all...]
H A Doffsets.cc23 std::ostream& operator<<(std::ostream& os, const Offset& offs) {
H A Dexperimental_flags.h35 constexpr operator decltype(kNone)() const {
39 constexpr explicit operator bool() const {
43 constexpr ExperimentalFlags operator|(const decltype(kNone)& b) const {
46 constexpr ExperimentalFlags operator|(const ExperimentalFlags& b) const {
50 constexpr ExperimentalFlags operator&(const ExperimentalFlags& b) const {
53 constexpr ExperimentalFlags operator&(const decltype(kNone)& b) const {
57 constexpr bool operator==(const ExperimentalFlags& b) const {
65 inline std::ostream& operator<<(std::ostream& stream, const ExperimentalFlags& e) {
77 inline std::ostream& operator<<(std::ostream& stream, const decltype(ExperimentalFlags::kNone)& e) {
H A Dclass_reference.h30 inline bool operator<(const ClassReference& lhs, const ClassReference& rhs) {
H A Djobject_comparator.cc26 bool JobjectComparator::operator()(jobject jobj1, jobject jobj2) const {
H A Dprimitive.cc39 std::ostream& operator<<(std::ostream& os, const Primitive::Type& type) {
H A Doffsets.h43 std::ostream& operator<<(std::ostream& os, const Offset& offs);
49 bool operator>(FrameOffset other) const { return val_ > other.val_; }
50 bool operator<(FrameOffset other) const { return val_ < other.val_; }
/art/compiler/linker/
H A Doutput_stream.cc21 std::ostream& operator<<(std::ostream& os, const Whence& rhs) {
/art/runtime/base/
H A Dbit_vector-inl.h26 inline bool BitVector::IndexIterator::operator==(const IndexIterator& other) const {
32 inline uint32_t BitVector::IndexIterator::operator*() const {
37 inline BitVector::IndexIterator& BitVector::IndexIterator::operator++() {
43 inline BitVector::IndexIterator BitVector::IndexIterator::operator++(int) {
H A Darena_object.h31 void* operator new(size_t size, ArenaAllocator* allocator) {
35 static void* operator new(size_t size, ScopedArenaAllocator* arena) {
39 void operator delete(void*, size_t) {
45 ALWAYS_INLINE void* operator new(size_t, void* ptr) noexcept { return ptr; }
46 ALWAYS_INLINE void operator delete(void*, void*) noexcept { }
55 void* operator new(size_t size, ArenaAllocator* allocator) {
59 static void* operator new(size_t size, ScopedArenaAllocator* arena) {
63 void operator delete(void*, size_t) {
H A Dstringpiece.h88 char operator[](size_type i) const {
92 char operator[](size_type i) const;
174 inline bool operator==(const StringPiece& x, const StringPiece& y) {
200 inline bool operator==(const StringPiece& x, const char* y) {
208 inline bool operator!=(const StringPiece& x, const StringPiece& y) {
212 inline bool operator!=(const StringPiece& x, const char* y) {
216 inline bool operator<(const StringPiece& x, const StringPiece& y) {
220 inline bool operator>(const StringPiece& x, const StringPiece& y) {
224 inline bool operator<=(const StringPiece& x, const StringPiece& y) {
228 inline bool operator>
[all...]
H A Dhash_map.h31 size_t operator()(const std::pair<Key, Value>& pair) const {
35 size_t operator()(const Key& key) const {
39 bool operator()(const std::pair<Key, Value>& a, const std::pair<Key, Value>& b) const {
43 bool operator()(const std::pair<Key, Value>& a, const Element& element) const {
/art/cmdline/detail/
H A Dcmdline_debug_detail.h31 // Ignore most of the normal operator<< usage.
33 debug_log_ignore& operator<<(const T&) { return *this; }
35 debug_log_ignore& operator<<(std::ostream& (*)(std::ostream&) ) { return *this; }
/art/cmdline/
H A Dunit.h29 bool operator==(Unit) const {
H A Dmemory_representation.h43 operator size_t() const { return Value; }
62 std::ostream& operator<<(std::ostream& stream, Memory<kDivisor> memory) {
/art/runtime/arch/arm/
H A Dregisters_arm.cc28 std::ostream& operator<<(std::ostream& os, const Register& rhs) {
37 std::ostream& operator<<(std::ostream& os, const SRegister& rhs) {
/art/runtime/arch/arm64/
H A Dregisters_arm64.cc38 std::ostream& operator<<(std::ostream& os, const XRegister& rhs) {
47 std::ostream& operator<<(std::ostream& os, const WRegister& rhs) {
56 std::ostream& operator<<(std::ostream& os, const DRegister& rhs) {
65 std::ostream& operator<<(std::ostream& os, const SRegister& rhs) {
/art/runtime/arch/mips/
H A Dregisters_mips.cc30 std::ostream& operator<<(std::ostream& os, const Register& rhs) {
39 std::ostream& operator<<(std::ostream& os, const FRegister& rhs) {
/art/runtime/arch/mips64/
H A Dregisters_mips64.cc31 std::ostream& operator<<(std::ostream& os, const GpuRegister& rhs) {
40 std::ostream& operator<<(std::ostream& os, const FpuRegister& rhs) {
/art/runtime/arch/x86/
H A Dregisters_x86.cc27 std::ostream& operator<<(std::ostream& os, const Register& rhs) {
/art/runtime/arch/x86_64/
H A Dregisters_x86_64.cc28 std::ostream& operator<<(std::ostream& os, const Register& rhs) {
37 std::ostream& operator<<(std::ostream& os, const FloatRegister& rhs) {
/art/runtime/gc/
H A Dgc_cause.cc46 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause) {
/art/compiler/utils/
H A Dintrusive_forward_list.h38 IntrusiveForwardListHook& operator=(const IntrusiveForwardListHook& src ATTRIBUTE_UNUSED) {
57 IntrusiveForwardListIterator& operator=(const IntrusiveForwardListIterator& src) = default;
66 IntrusiveForwardListIterator& operator++() {
71 IntrusiveForwardListIterator operator++(int) {
78 T& operator*() const {
82 T* operator->() const {
99 operator==(const IntrusiveForwardListIterator<OtherT1, OtherTraits>& lhs,
104 typename std::enable_if<std::is_same<const T, const OtherT>::value, bool>::type operator==(
111 typename std::enable_if<std::is_same<const T, const OtherT>::value, bool>::type operator!=(
144 IntrusiveForwardList& operator
[all...]
/art/compiler/utils/arm/
H A Dassembler_arm.cc40 std::ostream& operator<<(std::ostream& os, const Register& rhs) {
50 std::ostream& operator<<(std::ostream& os, const SRegister& rhs) {
60 std::ostream& operator<<(std::ostream& os, const DRegister& rhs) {
69 std::ostream& operator<<(std::ostream& os, const Condition& rhs) {
/art/compiler/utils/mips64/
H A Dmanaged_register_mips64.cc44 std::ostream& operator<<(std::ostream& os, const Mips64ManagedRegister& reg) {

Completed in 2883 milliseconds

123456