/art/libartbase/base/ |
D | debug_stack.h | 59 DebugStackReferenceImpl(const DebugStackReferenceImpl& other) = default; 60 DebugStackReferenceImpl& operator=(const DebugStackReferenceImpl& other) = default; 68 DebugStackIndirectTopRefImpl(const DebugStackIndirectTopRefImpl& other) = default; 69 DebugStackIndirectTopRefImpl& operator=(const DebugStackIndirectTopRefImpl& other) = default; 95 DebugStackReferenceImpl(const DebugStackReferenceImpl& other) in DebugStackReferenceImpl() argument 96 : counter_(other.counter_), ref_count_(counter_->IncrementRefCount()) { in DebugStackReferenceImpl() 98 DebugStackReferenceImpl(DebugStackReferenceImpl&& other) in DebugStackReferenceImpl() argument 99 : counter_(other.counter_), ref_count_(other.ref_count_) { in DebugStackReferenceImpl() 100 other.counter_ = nullptr; in DebugStackReferenceImpl() 102 DebugStackReferenceImpl& operator=(const DebugStackReferenceImpl& other) { [all …]
|
D | hash_set.h | 56 HashSetIterator(const HashSetIterator<OtherElem, OtherHashSetType>& other) in HashSetIterator() argument 57 : index_(other.index_), hash_set_(other.hash_set_) {} in HashSetIterator() 62 bool operator==(const HashSetIterator& other) const { 63 return hash_set_ == other.hash_set_ && this->index_ == other.index_; 66 bool operator!=(const HashSetIterator& other) const { 67 return !(*this == other); 223 HashSet(const HashSet& other) noexcept in HashSet() argument 224 : allocfn_(other.allocfn_), in HashSet() 225 hashfn_(other.hashfn_), in HashSet() 226 emptyfn_(other.emptyfn_), in HashSet() [all …]
|
D | bit_vector.h | 52 bool operator==(const IndexIterator& other) const; 54 bool operator!=(const IndexIterator& other) const { 55 return !(*this == other); 104 BitVector(const BitVector& other) = delete; 105 BitVector& operator=(const BitVector& other) = delete; 107 BitVector(BitVector&& other) in BitVector() argument 108 : storage_(other.storage_), in BitVector() 109 storage_size_(other.storage_size_), in BitVector() 110 allocator_(other.allocator_), in BitVector() 111 expandable_(other.expandable_) { in BitVector() [all …]
|
/art/compiler/utils/arm/ |
D | managed_register_arm.cc | 25 bool ArmManagedRegister::Overlaps(const ArmManagedRegister& other) const { in Overlaps() 26 if (IsNoRegister() || other.IsNoRegister()) return false; in Overlaps() 27 if (Equals(other)) return true; in Overlaps() 31 return ArmManagedRegister::FromCoreRegister(low).Overlaps(other) || in Overlaps() 32 ArmManagedRegister::FromCoreRegister(high).Overlaps(other); in Overlaps() 35 if (other.IsDRegister()) return Equals(other); in Overlaps() 36 if (other.IsSRegister()) { in Overlaps() 39 SRegister other_sreg = other.AsSRegister(); in Overlaps() 44 if (other.IsRegisterPair() || other.IsOverlappingDRegister()) { in Overlaps() 45 return other.Overlaps(*this); in Overlaps()
|
/art/test/utils/python/testgen/ |
D | mixins.py | 94 def __lt__(self, other): argument 95 return self.get_name() < other.get_name() 97 def __gt__(self, other): argument 98 return self.get_name() > other.get_name() 100 def __eq__(self, other): argument 101 return self.get_name() == other.get_name() 103 def __le__(self, other): argument 104 return self.get_name() <= other.get_name() 106 def __ge__(self, other): argument 107 return self.get_name() >= other.get_name() [all …]
|
/art/tools/ahat/src/main/com/android/ahat/heapdump/ |
D | Value.java | 234 public abstract boolean equals(Object other); in equals() argument 257 @Override public boolean equals(Object other) { in equals() argument 258 if (other instanceof BooleanValue) { in equals() 259 BooleanValue value = (BooleanValue)other; in equals() 292 @Override public boolean equals(Object other) { in equals() argument 293 if (other instanceof ByteValue) { in equals() 294 ByteValue value = (ByteValue)other; in equals() 327 @Override public boolean equals(Object other) { in equals() argument 328 if (other instanceof CharValue) { in equals() 329 CharValue value = (CharValue)other; in equals() [all …]
|
D | Size.java | 93 public Size plus(Size other) { in plus() argument 95 return other; in plus() 96 } else if (other.isZero()) { in plus() 99 return new Size(mJavaSize + other.mJavaSize, in plus() 100 mRegisteredNativeSize + other.mRegisteredNativeSize); in plus() 120 @Override public boolean equals(Object other) { in equals() argument 121 if (other instanceof Size) { in equals() 122 Size s = (Size)other; in equals()
|
/art/test/1904-double-suspend/src/art/ |
D | Test1904.java | 60 Thread other = new Thread(new OtherThread(), "TARGET THREAD"); in run() local 62 other.start(); in run() 66 Suspension.suspend(other); in run() 68 waitForSuspension(other); in run() 78 Suspension.suspend(other); in run() 84 Suspension.resume(other); in run() 96 other.join(1000); in run() 98 if (other.isAlive()) { in run()
|
/art/test/1934-jvmti-signal-thread/ |
D | expected.txt | 2 interrupting other thread before starting 5 stopping other thread before starting 8 Interrupting other thread recurring 11 stopping other thread recurring 14 Interrupting other thread spinning 17 stopping other thread spinning 20 interrupting other thread waiting 23 stopping other thread waiting 26 stopping other thread
|
/art/test/1902-suspend/src/art/ |
D | Test1902.java | 60 Thread other = new Thread(new OtherThread(), "TARGET THREAD"); in run() local 62 other.start(); in run() 75 Suspension.resume(other); in run() 82 Suspension.suspend(other); in run() 84 waitForSuspension(other); in run() 93 Suspension.resume(other); in run() 105 other.join(1000); in run() 107 if (other.isAlive()) { in run()
|
/art/compiler/utils/ |
D | managed_register.h | 47 constexpr ManagedRegister(const ManagedRegister& other) = default; 49 ManagedRegister& operator=(const ManagedRegister& other) = default; 57 constexpr bool Equals(const ManagedRegister& other) const { in Equals() argument 58 return id_ == other.id_; in Equals() 91 ManagedRegisterSpill(const ManagedRegister& other, uint32_t size, uint32_t spill_offset) in ManagedRegisterSpill() argument 92 : ManagedRegister(other), size_(size), spill_offset_(spill_offset) { } in ManagedRegisterSpill() 94 explicit ManagedRegisterSpill(const ManagedRegister& other) in ManagedRegisterSpill() argument 95 : ManagedRegister(other), size_(-1), spill_offset_(-1) { } in ManagedRegisterSpill() 97 ManagedRegisterSpill(const ManagedRegister& other, int32_t size) in ManagedRegisterSpill() argument 98 : ManagedRegister(other), size_(size), spill_offset_(-1) { } in ManagedRegisterSpill()
|
D | swap_space.h | 122 typedef SwapAllocator<U> other; typedef 128 SwapAllocator(const SwapAllocator<U>& other) in SwapAllocator() argument 129 : swap_space_(other.swap_space_) {} in SwapAllocator() 131 SwapAllocator(const SwapAllocator& other) = default; 132 SwapAllocator& operator=(const SwapAllocator& other) = default; 158 typedef SwapAllocator<U> other; typedef 164 SwapAllocator(const SwapAllocator<U>& other) in SwapAllocator() argument 165 : swap_space_(other.swap_space_) {} in SwapAllocator() 167 SwapAllocator(const SwapAllocator& other) = default; 168 SwapAllocator& operator=(const SwapAllocator& other) = default; [all …]
|
/art/openjdkjvmti/ |
D | jvmti_allocator.h | 55 typedef JvmtiAllocator<U> other; typedef 62 JvmtiAllocator(const JvmtiAllocator<U>& other) in JvmtiAllocator() argument 63 : env_(other.env_) {} in JvmtiAllocator() 65 JvmtiAllocator(const JvmtiAllocator& other) = default; 66 JvmtiAllocator& operator=(const JvmtiAllocator& other) = default; 92 typedef JvmtiAllocator<U> other; typedef 99 JvmtiAllocator(const JvmtiAllocator<U>& other) in JvmtiAllocator() argument 100 : env_(other.env_) {} in JvmtiAllocator() 102 JvmtiAllocator(const JvmtiAllocator& other) = default; 103 JvmtiAllocator& operator=(const JvmtiAllocator& other) = default; [all …]
|
/art/libdexfile/dex/ |
D | dex_file_types.h | 43 bool operator==(const DexIndex& other) const { 44 return index_ == other.index_; 46 bool operator!=(const DexIndex& other) const { 47 return index_ != other.index_; 49 bool operator<(const DexIndex& other) const { 50 return index_ < other.index_; 52 bool operator<=(const DexIndex& other) const { 53 return index_ <= other.index_; 55 bool operator>(const DexIndex& other) const { 56 return index_ > other.index_; [all …]
|
/art/tools/checker/file_format/c1visualizer/ |
D | struct.py | 33 def __eq__(self, other): argument 34 return isinstance(other, self.__class__) \ 35 and self.passes == other.passes 57 def __eq__(self, other): argument 58 return isinstance(other, self.__class__) \ 59 and self.name == other.name \ 60 and self.body == other.body
|
/art/test/684-checker-simd-dotprod/src/ |
D | Main.java | 17 import other.TestByte; 18 import other.TestCharShort; 19 import other.TestVarious; 20 import other.TestFloatDouble;
|
/art/tools/checker/file_format/checker/ |
D | struct.py | 32 def __eq__(self, other): argument 33 return isinstance(other, self.__class__) \ 34 and self.testCases == other.testCases 68 def __eq__(self, other): argument 69 return isinstance(other, self.__class__) \ 70 and self.name == other.name \ 71 and self.assertions == other.assertions 112 def __eq__(self, other): argument 113 return isinstance(other, self.__class__) \ 114 and self.variant == other.variant \ [all …]
|
/art/compiler/optimizing/ |
D | instruction_simplifier_x86_shared.cc | 68 HInstruction* other = nullptr; in TryGenerateResetLeastSetBit() local 73 other = right; in TryGenerateResetLeastSetBit() 76 other = left; in TryGenerateResetLeastSetBit() 81 type, HInstruction::kAnd, other, instruction->GetDexPc()); in TryGenerateResetLeastSetBit() 102 HInstruction* other = nullptr; in TryGenerateMaskUptoLeastSetBit() local 106 other = right; in TryGenerateMaskUptoLeastSetBit() 109 other = left; in TryGenerateMaskUptoLeastSetBit() 114 type, HInstruction::kXor, other, instruction->GetDexPc()); in TryGenerateMaskUptoLeastSetBit() 123 bool AreLeastSetBitInputs(HInstruction* to_test, HInstruction* other) { in AreLeastSetBitInputs() argument 127 return cst != nullptr && cst->IsMinusOne() && other == add->GetLeastConstantLeft(); in AreLeastSetBitInputs() [all …]
|
/art/compiler/utils/x86/ |
D | managed_register_x86.cc | 62 bool X86ManagedRegister::Overlaps(const X86ManagedRegister& other) const { in Overlaps() 63 if (IsNoRegister() || other.IsNoRegister()) return false; in Overlaps() 65 CHECK(other.IsValidManagedRegister()); in Overlaps() 66 if (Equals(other)) return true; in Overlaps() 70 return X86ManagedRegister::FromCpuRegister(low).Overlaps(other) || in Overlaps() 71 X86ManagedRegister::FromCpuRegister(high).Overlaps(other); in Overlaps() 73 if (other.IsRegisterPair()) { in Overlaps() 74 return other.Overlaps(*this); in Overlaps()
|
/art/compiler/utils/x86_64/ |
D | managed_register_x86_64.cc | 57 bool X86_64ManagedRegister::Overlaps(const X86_64ManagedRegister& other) const { in Overlaps() 58 if (IsNoRegister() || other.IsNoRegister()) return false; in Overlaps() 60 CHECK(other.IsValidManagedRegister()); in Overlaps() 61 if (Equals(other)) return true; in Overlaps() 65 return X86_64ManagedRegister::FromCpuRegister(low).Overlaps(other) || in Overlaps() 66 X86_64ManagedRegister::FromCpuRegister(high).Overlaps(other); in Overlaps() 68 if (other.IsRegisterPair()) { in Overlaps() 69 return other.Overlaps(*this); in Overlaps()
|
/art/runtime/ |
D | plugin.h | 60 Plugin(const Plugin& other); 63 Plugin(Plugin&& other) noexcept in Plugin() argument 64 : library_(other.library_), in Plugin() 65 dlopen_handle_(other.dlopen_handle_) { in Plugin() 66 other.dlopen_handle_ = nullptr; in Plugin()
|
/art/test/1955-pop-frame-jit-called/src/art/ |
D | Breakpoint.java | 40 public boolean equals(Object other) { in equals() argument 41 return (other instanceof BP) && in equals() 42 method.equals(((BP)other).method) && in equals() 43 location == ((BP)other).location; in equals() 129 public boolean equals(Object other) { in equals() argument 130 return other instanceof LineNumber && ((LineNumber)other).line == line && in equals() 131 ((LineNumber)other).location == location; in equals() 134 public int compareTo(LineNumber other) { in compareTo() argument 135 int v = Integer.valueOf(line).compareTo(Integer.valueOf(other.line)); in compareTo() 139 return Long.valueOf(location).compareTo(Long.valueOf(other.location)); in compareTo()
|
/art/test/997-single-step/src/art/ |
D | Breakpoint.java | 40 public boolean equals(Object other) { in equals() argument 41 return (other instanceof BP) && in equals() 42 method.equals(((BP)other).method) && in equals() 43 location == ((BP)other).location; in equals() 129 public boolean equals(Object other) { in equals() argument 130 return other instanceof LineNumber && ((LineNumber)other).line == line && in equals() 131 ((LineNumber)other).location == location; in equals() 134 public int compareTo(LineNumber other) { in compareTo() argument 135 int v = Integer.valueOf(line).compareTo(Integer.valueOf(other.line)); in compareTo() 139 return Long.valueOf(location).compareTo(Long.valueOf(other.location)); in compareTo()
|
/art/test/1964-add-to-dex-classloader-file/src/art/ |
D | Breakpoint.java | 40 public boolean equals(Object other) { in equals() argument 41 return (other instanceof BP) && in equals() 42 method.equals(((BP)other).method) && in equals() 43 location == ((BP)other).location; in equals() 129 public boolean equals(Object other) { in equals() argument 130 return other instanceof LineNumber && ((LineNumber)other).line == line && in equals() 131 ((LineNumber)other).location == location; in equals() 134 public int compareTo(LineNumber other) { in compareTo() argument 135 int v = Integer.valueOf(line).compareTo(Integer.valueOf(other.line)); in compareTo() 139 return Long.valueOf(location).compareTo(Long.valueOf(other.location)); in compareTo()
|
/art/test/994-breakpoint-line/src/art/ |
D | Breakpoint.java | 40 public boolean equals(Object other) { in equals() argument 41 return (other instanceof BP) && in equals() 42 method.equals(((BP)other).method) && in equals() 43 location == ((BP)other).location; in equals() 129 public boolean equals(Object other) { in equals() argument 130 return other instanceof LineNumber && ((LineNumber)other).line == line && in equals() 131 ((LineNumber)other).location == location; in equals() 134 public int compareTo(LineNumber other) { in compareTo() argument 135 int v = Integer.valueOf(line).compareTo(Integer.valueOf(other.line)); in compareTo() 139 return Long.valueOf(location).compareTo(Long.valueOf(other.location)); in compareTo()
|