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

12345678

/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/test/956-methodhandles/src/other/
H A DChatty.java17 package other; package
/art/libdexfile/dex/
H A Ddex_file_types.h42 bool operator==(const StringIndex& other) const {
43 return index_ == other.index_;
45 bool operator!=(const StringIndex& other) const {
46 return index_ != other.index_;
48 bool operator<(const StringIndex& other) const {
49 return index_ < other.index_;
51 bool operator<=(const StringIndex& other) const {
52 return index_ <= other.index_;
54 bool operator>(const StringIndex& other) const {
55 return index_ > 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;
29 if (IsFpuRegister() && other.IsVectorRegister()) {
30 return (AsFpuRegister() == other.AsOverlappingFpuRegister());
31 } else if (IsVectorRegister() && other.IsFpuRegister()) {
32 return (AsVectorRegister() == other.AsOverlappingVectorRegister());
/art/tools/ahat/src/main/com/android/ahat/heapdump/
H A DSize.java86 * Returns a new Size object that is the sum of this size and the other.
88 * @param other the size to sum with this size
91 public Size plus(Size other) { argument
93 return other;
94 } else if (other.isZero()) {
97 return new Size(mJavaSize + other.mJavaSize,
98 mRegisteredNativeSize + other.mRegisteredNativeSize);
113 @Override public boolean equals(Object other) { argument
114 if (other instanceof Size) {
115 Size s = (Size)other;
[all...]
/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/runtime/gc/collector/
H A Dobject_byte_pair.h29 void Add(const ObjectBytePair& other) { argument
30 objects += other.objects;
31 bytes += other.bytes;
/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/libartbase/base/
H A Ddebug_stack.h59 DebugStackReferenceImpl(const DebugStackReferenceImpl& other) = default; member in class:art::DebugStackReferenceImpl
60 DebugStackReferenceImpl& operator=(const DebugStackReferenceImpl& other) = default; member in class:art::DebugStackReferenceImpl
68 DebugStackIndirectTopRefImpl(const DebugStackIndirectTopRefImpl& other) = default; member in class:art::DebugStackIndirectTopRefImpl
69 DebugStackIndirectTopRefImpl& operator=(const DebugStackIndirectTopRefImpl& other) = default; member in class:art::DebugStackIndirectTopRefImpl
95 DebugStackReferenceImpl(const DebugStackReferenceImpl& other) argument
96 : counter_(other.counter_), ref_count_(counter_->IncrementRefCount()) {
98 DebugStackReferenceImpl(DebugStackReferenceImpl&& other) argument
99 : counter_(other.counter_), ref_count_(other.ref_count_) {
100 other
102 operator =(const DebugStackReferenceImpl& other) argument
125 DebugStackIndirectTopRefImpl(const DebugStackIndirectTopRefImpl& other) argument
129 operator =(const DebugStackIndirectTopRefImpl& other) argument
[all...]
/art/test/1902-suspend/src/art/
H A DTest1902.java60 Thread other = new Thread(new OtherThread(), "TARGET THREAD");
62 other.start();
75 Suspension.resume(other);
82 Suspension.suspend(other);
83 // Wait 1 second for the other thread to suspend.
84 waitForSuspension(other);
90 System.out.println("Looks like other thread did something while suspended!");
93 Suspension.resume(other);
102 // Stop the other thread.
105 other
[all...]
/art/test/1904-double-suspend/src/art/
H A DTest1904.java60 Thread other = new Thread(new OtherThread(), "TARGET THREAD");
62 other.start();
66 Suspension.suspend(other);
68 waitForSuspension(other);
74 System.out.println("Looks like other thread did something while suspended!");
78 Suspension.suspend(other);
84 Suspension.resume(other);
93 // Stop the other thread.
96 other.join(1000);
98 if (other
[all...]

Completed in 449 milliseconds

12345678