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

12345

/art/test/536-checker-needs-access-check/src/other/
H A DInaccessibleClass.java17 package other; package
H A DInaccessibleClassProxy.java17 package other; package
/art/test/536-checker-needs-access-check/src2/other/
H A DInaccessibleClass.java17 package other; package
H A DInaccessibleClassProxy.java17 package other; package
/art/test/537-checker-inline-and-unverified/src/other/
H A DInaccessibleClass.java17 package other; package
/art/test/537-checker-inline-and-unverified/src2/other/
H A DInaccessibleClass.java17 package other; package
/art/test/075-verification-error/src/other/
H A DInaccessibleMethod.java17 package other; package
H A DInaccessibleClass.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/test/601-method-access/src/other/
H A DProtectedClass.java17 package other; package
H A DPublicClass.java17 package other; package
19 // Class that makes the ProtectedClass sub-classable by classes outside of package other.
/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/tools/checker/common/
H A Dmixins.py18 def __eq__(self, other):
19 return isinstance(other, self.__class__) \
20 and self.__dict__ == other.__dict__
/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/test/utils/python/testgen/
H A Dmixins.py94 def __lt__(self, other):
95 return self.get_name() < other.get_name()
97 def __gt__(self, other):
98 return self.get_name() > other.get_name()
100 def __eq__(self, other):
101 return self.get_name() == other.get_name()
103 def __le__(self, other):
104 return self.get_name() <= other.get_name()
106 def __ge__(self, other):
107 return self.get_name() >= 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/tools/checker/file_format/c1visualizer/
H A Dstruct.py33 def __eq__(self, other):
34 return isinstance(other, self.__class__) \
35 and self.passes == other.passes
57 def __eq__(self, other):
58 return isinstance(other, self.__class__) \
59 and self.name == other.name \
60 and self.body == other.body
/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...]
/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 Dhash_set.h72 bool operator==(const BaseIterator& other) const {
73 return hash_set_ == other.hash_set_ && this->index_ == other.index_;
76 bool operator!=(const BaseIterator& other) const {
77 return !(*this == other);
169 HashSet(const HashSet& other) noexcept
170 : allocfn_(other.allocfn_),
171 hashfn_(other.hashfn_),
172 emptyfn_(other.emptyfn_),
173 pred_(other
406 swap(HashSet& other) argument
[all...]
/art/runtime/
H A Dstride_iterator.h38 bool operator==(const StrideIterator& other) const {
39 DCHECK_EQ(stride_, other.stride_);
40 return ptr_ == other.ptr_;
43 bool operator!=(const StrideIterator& other) const {
44 return !(*this == other);
/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);

Completed in 1432 milliseconds

12345