Searched refs:other (Results 1 - 25 of 68) sorted by last modified time

123

/art/test/075-verification-error/src/
H A DMain.java17 import other.Mutant;
18 import other.InaccessibleClass;
19 import other.InaccessibleMethod;
/art/test/075-verification-error/src/other/
H A DInaccessibleClass.java17 package other; package
H A DInaccessibleMethod.java17 package other; package
H A DMutant.java17 package other; package
/art/test/075-verification-error/src2/other/
H A DInaccessibleClass.java17 package other; package
H A DInaccessibleMethod.java17 package other; package
H A DMutant.java17 package other; package
/art/test/401-optimizing-compiler/src/
H A DMain.java136 Object $opt$TestThisParameter(Object other) { argument
138 return other;
141 Object $opt$TestOtherParameter(Object other) { argument
143 return other;
146 Object $opt$TestReturnNewObject(Object other) { argument
/art/test/
H A DAndroid.run-test.mk92 # Tests that need more than 2MB of RAM or are running into other corner cases in GC stress related
/art/runtime/
H A Dmethod_helper-inl.h29 inline bool MethodHelper::HasSameNameAndSignature(MethodHelper* other) { argument
32 if (method_->GetDexCache() == other->method_->GetDexCache()) {
34 dex_file->GetMethodId(other->GetMethod()->GetDexMethodIndex());
37 const DexFile* other_dex_file = other->method_->GetDexFile();
39 other_dex_file->GetMethodId(other->GetMethod()->GetDexMethodIndex());
H A Dmethod_helper.cc39 bool MethodHelper::HasSameSignatureWithDifferentClassLoaders(MethodHelper* other) { argument
40 if (UNLIKELY(GetReturnType() != other->GetReturnType())) {
44 const DexFile::TypeList* other_types = other->method_->GetParameterTypeList();
57 other->GetClassFromTypeIdx(other_types->GetTypeItem(i).type_idx_);
H A Dmethod_helper.h108 ALWAYS_INLINE bool HasSameNameAndSignature(MethodHelper* other)
111 bool HasSameSignatureWithDifferentClassLoaders(MethodHelper* other)
H A Doffsets.h48 bool operator>(FrameOffset other) const { return val_ > other.val_; }
49 bool operator<(FrameOffset other) const { return val_ < other.val_; }
H A Dsafe_map.h68 void swap(Self& other) { map_.swap(other.map_); } argument
H A Dstack_map.h195 bool Equals(const StackMap& other) { argument
196 return region_.pointer() == other.region_.pointer()
197 && region_.size() == other.region_.size();
/art/runtime/mirror/
H A Dart_method-inl.h112 inline bool ArtMethod::HasSameDexCacheResolvedMethods(ArtMethod* other) { argument
113 return GetDexCacheResolvedMethods() == other->GetDexCacheResolvedMethods();
141 inline bool ArtMethod::HasSameDexCacheResolvedTypes(ArtMethod* other) { argument
142 return GetDexCacheResolvedTypes() == other->GetDexCacheResolvedTypes();
H A Dart_method.h219 bool HasSameDexCacheResolvedMethods(ArtMethod* other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
228 bool HasSameDexCacheResolvedTypes(ArtMethod* other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
H A Dobject_reference.h40 void Assign(MirrorType* other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
41 reference_ = Compress(other);
H A Dstring.h112 int32_t CompareTo(String* other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/verifier/
H A Dreg_type.cc639 bool RegType::CanAccess(RegType& other) { argument
640 if (Equals(other)) {
644 bool other_unresolved = other.IsUnresolvedTypes();
646 return GetClass()->CanAccess(other.GetClass());
648 return other.GetClass()->IsPublic(); // Be conservative, only allow if other is public.
H A Dreg_type.h227 // Can this type access other?
228 bool CanAccess(RegType& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
244 bool Equals(RegType& other) const {
245 return GetId() == other.GetId();
845 // Similar to ReferenceType except the Class couldn't be loaded. Assignability and other tests made
/art/test/050-sync-test/src/
H A DMain.java139 SleepyThread(SleepyThread other) { argument
140 mOther = other;
182 System.out.println("interrupting other (isAlive="
/art/test/064-field-access/src/
H A DMain.java17 import other.PublicClass;
204 * This is a sub-class of other.PublicClass, which should be allowed to access
205 * the various protected fields declared by other.PublicClass and its parent
206 * other.ProtectedClass.
/art/test/064-field-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.

Completed in 338 milliseconds

123