Searched refs:other (Results 1 - 25 of 89) sorted by relevance

1234

/art/test/075-verification-error/src/other/
H A DInaccessibleMethod.java17 package other; package
H A DInaccessibleClass.java17 package other; package
H A DMutant.java17 package other; package
/art/test/075-verification-error/src2/other/
H A DInaccessibleMethod.java17 package other; package
H A DInaccessibleClass.java17 package other; package
H A DMutant.java17 package other; package
/art/compiler/utils/arm/
H A Dmanaged_register_arm.cc24 // Returns true if this managed-register overlaps the other managed-register.
25 bool ArmManagedRegister::Overlaps(const ArmManagedRegister& other) const {
26 if (IsNoRegister() || other.IsNoRegister()) return false;
27 if (Equals(other)) return true;
31 return ArmManagedRegister::FromCoreRegister(low).Overlaps(other) ||
32 ArmManagedRegister::FromCoreRegister(high).Overlaps(other);
35 if (other.IsDRegister()) return Equals(other);
36 if (other.IsSRegister()) {
39 SRegister other_sreg = other
[all...]
/art/compiler/dex/quick/
H A Dresource_mask.h64 ResourceMask(const ResourceMask& other) = default; member in class:art::ResourceMask
65 ResourceMask& operator=(const ResourceMask& other) = default; member in class:art::ResourceMask
68 bool operator==(const ResourceMask& other) { argument
69 return masks_[0] == other.masks_[0] && masks_[1] == other.masks_[1];
97 constexpr ResourceMask Union(const ResourceMask& other) const {
98 return ResourceMask(masks_[0] | other.masks_[0], masks_[1] | other.masks_[1]);
101 constexpr ResourceMask Intersection(const ResourceMask& other) const {
102 return ResourceMask(masks_[0] & other
123 SetBits(const ResourceMask& other) argument
129 ClearBits(const ResourceMask& other) argument
[all...]
/art/compiler/utils/mips/
H A Dmanaged_register_mips.cc24 bool MipsManagedRegister::Overlaps(const MipsManagedRegister& other) const {
25 if (IsNoRegister() || other.IsNoRegister()) return false;
27 CHECK(other.IsValidManagedRegister());
28 if (Equals(other)) return true;
32 return MipsManagedRegister::FromCoreRegister(low).Overlaps(other) ||
33 MipsManagedRegister::FromCoreRegister(high).Overlaps(other);
36 if (other.IsDRegister()) return Equals(other);
37 if (other.IsFRegister()) {
40 FRegister other_freg = other
[all...]
/art/compiler/utils/mips64/
H A Dmanaged_register_mips64.cc24 bool Mips64ManagedRegister::Overlaps(const Mips64ManagedRegister& other) const {
25 if (IsNoRegister() || other.IsNoRegister()) return false;
27 CHECK(other.IsValidManagedRegister());
28 if (Equals(other)) return true;
/art/compiler/utils/
H A Dmanaged_register.h50 ManagedRegister(const ManagedRegister& other) : id_(other.id_) { } argument
52 ManagedRegister& operator=(const ManagedRegister& other) { argument
53 id_ = other.id_;
65 bool Equals(const ManagedRegister& other) const {
66 return id_ == other.id_;
92 ManagedRegisterSpill(const ManagedRegister& other, uint32_t size, uint32_t spill_offset) argument
93 : ManagedRegister(other), size_(size), spill_offset_(spill_offset) { }
95 explicit ManagedRegisterSpill(const ManagedRegister& other) argument
96 : ManagedRegister(other), size
98 ManagedRegisterSpill(const ManagedRegister& other, int32_t size) argument
[all...]
H A Dswap_space.h112 typedef SwapAllocator<U> other; typedef in struct:art::SwapAllocator::rebind
118 SwapAllocator(const SwapAllocator<U>& other) : swap_space_(other.swap_space_) {} argument
120 SwapAllocator(const SwapAllocator& other) = default; member in class:art::SwapAllocator
121 SwapAllocator& operator=(const SwapAllocator& other) = default; member in class:art::SwapAllocator
144 typedef SwapAllocator<U> other; typedef in struct:art::SwapAllocator::rebind
150 SwapAllocator(const SwapAllocator<U>& other) : swap_space_(other.swap_space_) {} argument
152 SwapAllocator(const SwapAllocator& other) = default; member in class:art::SwapAllocator
153 SwapAllocator& operator=(const SwapAllocator& other) member in class:art::SwapAllocator
190 operator ==(SwapAllocator const& other) argument
193 operator !=(SwapAllocator const& other) argument
[all...]
/art/runtime/base/
H A Ddebug_stack.h58 DebugStackReferenceImpl(const DebugStackReferenceImpl& other) = default; member in class:art::DebugStackReferenceImpl
59 DebugStackReferenceImpl& operator=(const DebugStackReferenceImpl& other) = default; member in class:art::DebugStackReferenceImpl
67 DebugStackIndirectTopRefImpl(const DebugStackIndirectTopRefImpl& other) = default; member in class:art::DebugStackIndirectTopRefImpl
68 DebugStackIndirectTopRefImpl& operator=(const DebugStackIndirectTopRefImpl& other) = default; member in class:art::DebugStackIndirectTopRefImpl
94 DebugStackReferenceImpl(const DebugStackReferenceImpl& other) argument
95 : counter_(other.counter_), ref_count_(counter_->IncrementRefCount()) {
97 DebugStackReferenceImpl& operator=(const DebugStackReferenceImpl& other) { argument
98 CHECK(counter_ == other.counter_);
116 DebugStackIndirectTopRefImpl(const DebugStackIndirectTopRefImpl& other) argument
117 : ref_(other
120 operator =(const DebugStackIndirectTopRefImpl& other) argument
[all...]
H A Dbit_vector-inl.h26 inline bool BitVector::IndexIterator::operator==(const IndexIterator& other) const {
27 DCHECK(bit_storage_ == other.bit_storage_);
28 DCHECK_EQ(storage_size_, other.storage_size_);
29 return bit_index_ == other.bit_index_;
H A Dvariant_map.h86 bool operator<(const VariantMapKeyRaw& other) const {
87 return key_counter_ < other.key_counter_;
102 virtual bool Compare(const VariantMapKeyRaw* other) const {
103 if (other == nullptr) {
106 return key_counter_ < other->key_counter_;
327 VariantMap(const VariantMap& other) { argument
328 operator=(other);
331 // Copy the key/value pairs from the other map into this one. Existing key/values are cleared.
332 VariantMap& operator=(const VariantMap& other) { argument
333 if (this == &other) {
353 VariantMap(VariantMap&& other) argument
358 operator =(VariantMap&& other) argument
[all...]
H A Dscoped_arena_containers.h77 typedef ScopedArenaAllocatorAdapter<U> other; typedef in struct:art::ScopedArenaAllocatorAdapter::rebind
88 ScopedArenaAllocatorAdapter(const ScopedArenaAllocatorAdapter<U>& other) argument
89 : DebugStackReference(other),
90 DebugStackIndirectTopRef(other),
91 ArenaAllocatorAdapterKind(other),
92 arena_stack_(other.arena_stack_) {
120 typedef ScopedArenaAllocatorAdapter<U> other; typedef in struct:art::ScopedArenaAllocatorAdapter::rebind
131 ScopedArenaAllocatorAdapter(const ScopedArenaAllocatorAdapter<U>& other) argument
132 : DebugStackReference(other),
133 DebugStackIndirectTopRef(other),
[all...]
/art/runtime/
H A Dstride_iterator.h36 bool operator==(const StrideIterator& other) const {
37 return ptr_ == other.ptr_;
40 bool operator!=(const StrideIterator& other) const {
41 return !(*this == other);
H A Doffsets.h49 bool operator>(FrameOffset other) const { return val_ > other.val_; }
50 bool operator<(FrameOffset other) const { return val_ < other.val_; }
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DTypeList.java57 public boolean comesBefore(TypeList other) { argument
58 int checkSize = Math.min(size, other.size);
60 if (list[i].typeIdx < other.list[i].typeIdx) {
62 } else if (list[i].typeIdx > other.list[i].typeIdx) {
66 if (size == other.size) {
/art/compiler/utils/x86/
H A Dmanaged_register_x86.cc62 bool X86ManagedRegister::Overlaps(const X86ManagedRegister& other) const {
63 if (IsNoRegister() || other.IsNoRegister()) return false;
65 CHECK(other.IsValidManagedRegister());
66 if (Equals(other)) return true;
70 return X86ManagedRegister::FromCpuRegister(low).Overlaps(other) ||
71 X86ManagedRegister::FromCpuRegister(high).Overlaps(other);
73 if (other.IsRegisterPair()) {
74 return other.Overlaps(*this);
/art/compiler/utils/x86_64/
H A Dmanaged_register_x86_64.cc57 bool X86_64ManagedRegister::Overlaps(const X86_64ManagedRegister& other) const {
58 if (IsNoRegister() || other.IsNoRegister()) return false;
60 CHECK(other.IsValidManagedRegister());
61 if (Equals(other)) return true;
65 return X86_64ManagedRegister::FromCpuRegister(low).Overlaps(other) ||
66 X86_64ManagedRegister::FromCpuRegister(high).Overlaps(other);
68 if (other.IsRegisterPair()) {
69 return other.Overlaps(*this);
/art/compiler/utils/arm64/
H A Dmanaged_register_arm64.cc35 // Returns true if this managed-register overlaps the other managed-register.
43 bool Arm64ManagedRegister::Overlaps(const Arm64ManagedRegister& other) const {
44 if (IsNoRegister() || other.IsNoRegister()) return false;
45 return (IsGPRegister() == other.IsGPRegister()) && (RegNo() == other.RegNo());
/art/compiler/dex/
H A Dmir_field_info.h82 void CheckEquals(const MirFieldInfo& other) const {
83 CHECK_EQ(field_idx_, other.field_idx_);
84 CHECK_EQ(flags_, other.flags_);
85 CHECK_EQ(declaring_field_idx_, other.declaring_field_idx_);
86 CHECK_EQ(declaring_class_idx_, other.declaring_class_idx_);
87 CHECK_EQ(declaring_dex_file_, other.declaring_dex_file_);
115 MirFieldInfo(const MirFieldInfo& other) = default; member in class:art::MirFieldInfo
116 MirFieldInfo& operator=(const MirFieldInfo& other) = default; member in class:art::MirFieldInfo
160 void CheckEquals(const MirIFieldLoweringInfo& other) const {
161 MirFieldInfo::CheckEquals(other);
[all...]
H A Dlocal_value_numbering.h45 bool Equals(const LocalValueNumbering& other) const;
81 void MergeOne(const LocalValueNumbering& other, MergeType merge_type);
156 bool operator==(const RangeCheckKey& other) const {
157 return array == other.array && index == other.index;
184 bool operator==(const EscapedIFieldClobberKey& other) const {
185 return base == other.base && type == other.type && field_id == other.field_id;
213 bool operator==(const EscapedArrayClobberKey& other) cons
[all...]
/art/compiler/optimizing/
H A Dlocations.h87 Location(const Location& other) : ValueObject(), value_(other.value_) {} argument
89 Location& operator=(const Location& other) { argument
90 value_ = other.value_;
281 bool Equals(Location other) const {
282 return value_ == other.value_;
285 bool Contains(Location other) const {
286 if (Equals(other)) {
289 return ToLow().Equals(other) || ToHigh().Equals(other);
[all...]

Completed in 3272 milliseconds

1234