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

123456

/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/runtime/
H A Ddex_file_types.h40 bool operator==(const StringIndex& other) const {
41 return index_ == other.index_;
43 bool operator!=(const StringIndex& other) const {
44 return index_ != other.index_;
46 bool operator<(const StringIndex& other) const {
47 return index_ < other.index_;
49 bool operator<=(const StringIndex& other) const {
50 return index_ <= other.index_;
52 bool operator>(const StringIndex& other) const {
53 return index_ > other
[all...]
H A Dplugin.h26 // By the time this has been called the runtime has been fully initialized but not other native
59 Plugin(const Plugin& other);
62 Plugin(Plugin&& other) argument
63 : library_(other.library_),
64 dlopen_handle_(other.dlopen_handle_) {
65 other.dlopen_handle_ = nullptr;
/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;
29 if (IsFpuRegister() && other.IsVectorRegister()) {
30 return (AsFpuRegister() == other.AsOverlappingFpuRegister());
31 } else if (IsVectorRegister() && other.IsFpuRegister()) {
32 return (AsVectorRegister() == other.AsOverlappingVectorRegister());
/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/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/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...]
/art/runtime/ti/
H A Dagent.cc139 Agent::Agent(const Agent& other) argument
144 *this = other;
148 Agent& Agent::operator=(const Agent& other) { argument
149 if (this != &other) {
150 if (other.dlopen_handle_ != nullptr) {
158 DCHECK(other.onload_ == nullptr);
159 DCHECK(other.onattach_ == nullptr);
160 DCHECK(other.onunload_ == nullptr);
166 name_ = other.name_;
167 args_ = other
177 Agent(Agent&& other) argument
185 operator =(Agent&& other) argument
[all...]
/art/compiler/utils/
H A Dmanaged_register.h53 constexpr ManagedRegister(const ManagedRegister& other) = default; member in class:art::ManagedRegister
55 ManagedRegister& operator=(const ManagedRegister& other) = default; member in class:art::ManagedRegister
65 constexpr bool Equals(const ManagedRegister& other) const {
66 return id_ == other.id_;
95 ManagedRegisterSpill(const ManagedRegister& other, uint32_t size, uint32_t spill_offset) argument
96 : ManagedRegister(other), size_(size), spill_offset_(spill_offset) { }
98 explicit ManagedRegisterSpill(const ManagedRegister& other) argument
99 : ManagedRegister(other), size_(-1), spill_offset_(-1) { }
101 ManagedRegisterSpill(const ManagedRegister& other, int32_t size) argument
102 : ManagedRegister(other), size
[all...]
/art/runtime/openjdkjvmti/
H A Djvmti_allocator.h52 typedef JvmtiAllocator<U> other; typedef in struct:openjdkjvmti::JvmtiAllocator::rebind
58 JvmtiAllocator(const JvmtiAllocator<U>& other) // NOLINT, implicit argument
59 : env_(other.env_) {}
61 JvmtiAllocator(const JvmtiAllocator& other) = default; member in class:openjdkjvmti::JvmtiAllocator
62 JvmtiAllocator& operator=(const JvmtiAllocator& other) = default; member in class:openjdkjvmti::JvmtiAllocator
88 typedef JvmtiAllocator<U> other; typedef in struct:openjdkjvmti::JvmtiAllocator::rebind
94 JvmtiAllocator(const JvmtiAllocator<U>& other) // NOLINT, implicit argument
95 : env_(other.env_) {}
97 JvmtiAllocator(const JvmtiAllocator& other) = default; member in class:openjdkjvmti::JvmtiAllocator
98 JvmtiAllocator& operator=(const JvmtiAllocator& other) member in class:openjdkjvmti::JvmtiAllocator
141 operator ==(JvmtiAllocator const& other) argument
144 operator !=(JvmtiAllocator const& other) argument
[all...]

Completed in 5329 milliseconds

123456