Home
last modified time | relevance | path

Searched refs:other (Results 51 – 75 of 287) sorted by relevance

12345678910>>...12

/art/test/1969-force-early-return-void/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/jvmti-common/
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/1965-get-set-local-primitive-no-tables/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/1954-pop-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/1955-pop-frame-jit-called/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/1927-exception-event/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/1947-breakpoint-redefine-deopt/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/tools/dexfuzz/src/dexfuzz/rawdex/
DTypeList.java57 public boolean comesBefore(TypeList other) { in comesBefore() argument
58 int checkSize = Math.min(size, other.size); in comesBefore()
60 if (list[i].typeIdx < other.list[i].typeIdx) { in comesBefore()
62 } else if (list[i].typeIdx > other.list[i].typeIdx) { in comesBefore()
66 if (size == other.size) { in comesBefore()
/art/tools/checker/common/
Dmixins.py18 def __eq__(self, other): argument
19 return isinstance(other, self.__class__) \
20 and self.__dict__ == other.__dict__
/art/runtime/ti/
Dagent.cc183 Agent::Agent(Agent&& other) noexcept in Agent() argument
188 *this = std::move(other); in Agent()
191 Agent& Agent::operator=(Agent&& other) noexcept { in operator =() argument
192 if (this != &other) { in operator =()
196 name_ = std::move(other.name_); in operator =()
197 dlopen_handle_ = other.dlopen_handle_; in operator =()
198 onload_ = other.onload_; in operator =()
199 onattach_ = other.onattach_; in operator =()
200 onunload_ = other.onunload_; in operator =()
201 other.dlopen_handle_ = nullptr; in operator =()
[all …]
/art/runtime/verifier/
Dscoped_newline.h31 ScopedNewLine(ScopedNewLine&& other) : stream(other.stream), active(other.active) { in ScopedNewLine()
32 other.active = false; in ScopedNewLine()
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DDiffedFieldValue.java124 DiffedFieldValue other = (DiffedFieldValue)otherObject; in equals() local
125 return name.equals(other.name) in equals()
126 && type.equals(other.type) in equals()
127 && Objects.equals(current, other.current) in equals()
128 && Objects.equals(baseline, other.baseline) in equals()
129 && Objects.equals(status, other.status); in equals()
/art/libartbase/base/
Dhiddenapi_flags.h247 bool operator==(const ApiList& other) const { return dex_flags_ == other.dex_flags_; }
248 bool operator!=(const ApiList& other) const { return !(*this == other); }
249 bool operator<(const ApiList& other) const { return dex_flags_ < other.dex_flags_; }
252 bool CanCombineWith(const ApiList& other) const { in CanCombineWith() argument
254 const Value val2 = other.GetValue(); in CanCombineWith()
259 ApiList operator|(const ApiList& other) {
261 const uint32_t domain_apis = GetDomainApis() | other.GetDomainApis();
266 const Value val2 = other.GetValue();
280 const ApiList& operator|=(const ApiList& other) {
281 (*this) = (*this) | other;
[all …]
Dvariant_map.h90 bool operator<(const VariantMapKeyRaw& other) const {
91 return key_counter_ < other.key_counter_;
106 virtual bool Compare(const VariantMapKeyRaw* other) const { in Compare()
107 if (other == nullptr) { in Compare()
110 return key_counter_ < other->key_counter_; in Compare()
341 VariantMap(const VariantMap& other) { in VariantMap()
342 operator=(other); in VariantMap()
346 VariantMap& operator=(const VariantMap& other) {
347 if (this == &other) {
353 for (auto&& kv_pair : other.storage_map_) {
[all …]
Dscoped_arena_allocator.cc118 ScopedArenaAllocator::ScopedArenaAllocator(ScopedArenaAllocator&& other) noexcept in ScopedArenaAllocator() argument
119 : DebugStackReference(std::move(other)), in ScopedArenaAllocator()
121 ArenaAllocatorStats(other), in ScopedArenaAllocator()
122 arena_stack_(other.arena_stack_), in ScopedArenaAllocator()
123 mark_arena_(other.mark_arena_), in ScopedArenaAllocator()
124 mark_ptr_(other.mark_ptr_), in ScopedArenaAllocator()
125 mark_end_(other.mark_end_) { in ScopedArenaAllocator()
126 other.DebugStackRefCounter::CheckNoRefs(); in ScopedArenaAllocator()
127 other.arena_stack_ = nullptr; in ScopedArenaAllocator()
/art/runtime/
Ddex_register_location.h53 bool operator==(DexRegisterLocation other) const {
54 return kind_ == other.kind_ && value_ == other.value_;
57 bool operator!=(DexRegisterLocation other) const {
58 return !(*this == other);
Doffsets.h53 bool operator>(FrameOffset other) const { return val_ > other.val_; }
54 bool operator<(FrameOffset other) const { return val_ < other.val_; }
/art/runtime/gc/collector/
Dobject_byte_pair.h29 void Add(const ObjectBytePair& other) { in Add()
30 objects += other.objects; in Add()
31 bytes += other.bytes; in Add()
/art/libprofile/profile/
Dprofile_compilation_info.h95 bool operator==(const DexReference& other) const {
96 return dex_checksum == other.dex_checksum &&
97 profile_key == other.profile_key &&
98 num_method_ids == other.num_method_ids;
141 bool operator==(const ClassReference& other) const {
142 return dex_profile_index == other.dex_profile_index && type_index == other.type_index;
144 bool operator<(const ClassReference& other) const {
145 return dex_profile_index == other.dex_profile_index
146 ? type_index < other.type_index
147 : dex_profile_index < other.dex_profile_index;
[all …]
/art/test/1908-suspend-native-resume-self/
Dexpected.txt6 Resuming other thread
7 other thread attempting self resume
10 other thread resumed.
/art/compiler/utils/
Dmanaged_register.h47 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()
/art/compiler/utils/arm64/
Dmanaged_register_arm64.cc43 bool Arm64ManagedRegister::Overlaps(const Arm64ManagedRegister& other) const { in Overlaps()
44 if (IsNoRegister() || other.IsNoRegister()) return false; in Overlaps()
45 return (IsGPRegister() == other.IsGPRegister()) && (RegNo() == other.RegNo()); in Overlaps()
/art/test/1903-suspend-self/src/art/
DTest1903.java66 Thread other = new Thread(new OtherThread(), "TARGET THREAD"); in run() local
68 other.start(); in run()
73 waitForSuspension(other); in run()
75 Suspension.resume(other); in run()
/art/test/570-checker-osr/src/
DMain.java148 Main other = m.inlineCache(); in $noinline$inlineCache() local
159 return other.returnClass(); in $noinline$inlineCache()
178 Main other = m.inlineCache2(); in $noinline$inlineCache2() local
188 return (other == null) ? null : other.returnClass(); in $noinline$inlineCache2()
207 Main other = m.inlineCache3(); in $noinline$inlineCache3() local
217 return (other == null) ? null : other.returnClass(); in $noinline$inlineCache3()
/art/tools/jvmti-agents/titrace/
Dtitrace.cc56 TiMemory(const TiMemory& other) = delete;
57 TiMemory(TiMemory&& other) noexcept { in TiMemory()
58 env_ = other.env_; in TiMemory()
59 mem_ = other.mem_; in TiMemory()
60 size_ = other.size_; in TiMemory()
62 if (this != &other) { in TiMemory()
63 other.env_ = nullptr; in TiMemory()
64 other.mem_ = nullptr; in TiMemory()
65 other.size_ = 0u; in TiMemory()
69 TiMemory& operator=(TiMemory&& other) noexcept { in operator =()
[all …]

12345678910>>...12