Home
last modified time | relevance | path

Searched refs:other (Results 1 – 25 of 287) sorted by relevance

12345678910>>...12

/art/libartbase/base/
Ddebug_stack.h59 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 …]
Dhash_set.h56 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 …]
Dbit_vector.h52 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/
Dmanaged_register_arm.cc25 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/tools/ahat/src/main/com/android/ahat/heapdump/
DValue.java234 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 …]
DSize.java93 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/utils/python/testgen/
Dmixins.py94 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/test/1904-double-suspend/src/art/
DTest1904.java60 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/
Dexpected.txt2 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/
DTest1902.java60 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/tools/checker/file_format/c1visualizer/
Dstruct.py38 def __eq__(self, other): argument
39 return isinstance(other, self.__class__) \
40 and self.passes == other.passes \
41 and self.instructionSetFeatures == other.instructionSetFeatures
63 def __eq__(self, other): argument
64 return isinstance(other, self.__class__) \
65 and self.name == other.name \
66 and self.body == other.body
/art/openjdkjvmti/
Djvmti_allocator.h55 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/
Ddex_file_types.h43 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/test/684-checker-simd-dotprod/src/
DMain.java17 import other.TestByte;
18 import other.TestCharShort;
19 import other.TestVarious;
20 import other.TestFloatDouble;
/art/tools/checker/file_format/checker/
Dstruct.py32 def __eq__(self, other): argument
33 return isinstance(other, self.__class__) \
34 and self.testCases == other.testCases
61 def __eq__(self, other): argument
62 return isinstance(other, self.__class__) \
63 and self.name == other.name \
64 and self.statements == other.statements
120 def __eq__(self, other): argument
121 return isinstance(other, self.__class__) \
122 and self.variant == other.variant \
[all …]
/art/compiler/optimizing/
Dinstruction_simplifier_x86_shared.cc68 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/
Dmanaged_register_x86.cc62 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/
Dmanaged_register_x86_64.cc57 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/compiler/utils/
Dswap_space.h122 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/runtime/
Dplugin.h60 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/1913-get-set-local-objects/src/art/
DBreakpoint.java40 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/1924-frame-pop-toggle/src/art/
DBreakpoint.java40 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/1935-get-set-current-frame-jit/src/art/
DBreakpoint.java40 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/1956-pop-frame-jit-calling/src/art/
DBreakpoint.java40 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/1953-pop-frame/src/art/
DBreakpoint.java40 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()

12345678910>>...12