Home
last modified time | relevance | path

Searched refs:other (Results 226 – 250 of 287) sorted by relevance

12345678910>>...12

/art/test/800-smali/smali/
Db_22411633_2.smali37 # other reference being an uninitialized reference, as we'd suddenly allow calling on it.
/art/tools/jvmti-agents/chain-agents/
DREADME.md3 The chainagents agent is a JVMTI agent that chain loads other agents from a file found at a
/art/runtime/
Dclass_table.h77 bool MaskedHashEquals(uint32_t other) const { in MaskedHashEquals() argument
78 return MaskHash(other) == Hash(); in MaskedHashEquals()
Dsubtype_check.h588 SubtypeCheck(const SubtypeCheck& other) = default;
589 SubtypeCheck(SubtypeCheck&& other) = default;
Dart_method.cc190 bool ArtMethod::HasSameNameAndSignature(ArtMethod* other) { in HasSameNameAndSignature() argument
194 if (GetDexCache() == other->GetDexCache()) { in HasSameNameAndSignature()
195 const dex::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex()); in HasSameNameAndSignature()
198 const DexFile* dex_file2 = other->GetDexFile(); in HasSameNameAndSignature()
199 const dex::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex()); in HasSameNameAndSignature()
Dhidden_api.h191 bool Equals(const MemberSignature& other);
192 bool MemberNameAndTypeMatch(const MemberSignature& other);
/art/perfetto_hprof/
Dperfetto_hprof.cc215 std::string other = (*it).ToStdString(); in OnSetup() local
217 other.resize(other.size() + 1); in OnSetup()
218 char* other_ptr = &(other[0]); in OnSetup()
219 ssize_t other_sz = perfetto::profiling::NormalizeCmdLine(&other_ptr, other.size()); in OnSetup()
/art/libartbase/base/
Ddchecked_vector.h147 void swap(dchecked_vector& other) { Base::swap(other); } in swap() argument
Dsafe_map.h70 void swap(Self& other) { map_.swap(other.map_); } in swap() argument
Dallocator.h130 typedef TrackingAllocatorImpl<U, kTag> other; typedef
Dscoped_arena_allocator.h143 ScopedArenaAllocator(ScopedArenaAllocator&& other) noexcept;
/art/compiler/linker/
Dlinker_patch.h165 LinkerPatch(const LinkerPatch& other) = default;
166 LinkerPatch& operator=(const LinkerPatch& other) = default;
/art/runtime/verifier/
Dverifier_deps.cc51 static inline void BitVectorOr(std::vector<bool>& to_update, const std::vector<bool>& other) { in BitVectorOr() argument
52 DCHECK_EQ(to_update.size(), other.size()); in BitVectorOr()
53 std::transform(other.begin(), in BitVectorOr()
54 other.end(), in BitVectorOr()
60 void VerifierDeps::MergeWith(std::unique_ptr<VerifierDeps> other, in MergeWith() argument
62 DCHECK(other != nullptr); in MergeWith()
63 DCHECK_EQ(dex_deps_.size(), other->dex_deps_.size()); in MergeWith()
66 DexFileDeps& other_deps = *other->GetDexFileDeps(*dex_file); in MergeWith()
/art/compiler/utils/x86_64/
Dmanaged_register_x86_64.h147 bool Overlaps(const X86_64ManagedRegister& other) const;
/art/test/484-checker-register-hints/smali/
DSmali.smali28 # for some architectures (for example x86), as other architectures may
93 # for some architectures (for example x86), as other architectures may
/art/test/
DREADME.chroot.md13 installing ART and all other required artifacts there, and having tests use `adb
18 files in the data partition (the system partition and other partitions are left
/art/tools/dexanalyze/
Ddexanalyze_bytecode.cc84 uint64_t other = 0u; local
92 other += pair.first;
95 if (other != 0u) {
96 os << "other: " << Percent(other, total) << "\n";
/art/compiler/utils/x86/
Dmanaged_register_x86.h160 bool Overlaps(const X86ManagedRegister& other) const;
/art/compiler/utils/arm64/
Dmanaged_register_arm64.h144 bool Overlaps(const Arm64ManagedRegister& other) const;
/art/test/978-virtual-interface/smali/
DIface.smali19 # // first Subtype virtual method (the other 10 are the java/lang/Object;
/art/test/684-checker-simd-dotprod/src/other/
DTestVarious.java17 package other; package
/art/profman/
Dprofman.cc439 bool operator==(const ProfileFilterKey& other) const { in operator ==()
440 return checksum_ == other.checksum_ && dex_location_ == other.dex_location_; in operator ==()
442 bool operator<(const ProfileFilterKey& other) const { in operator <()
443 return checksum_ == other.checksum_ in operator <()
444 ? dex_location_ < other.dex_location_ in operator <()
445 : checksum_ < other.checksum_; in operator <()
/art/libartpalette/
DAndroid.bp38 // layer. It is only used on Android. For other targets, it just
/art/libnativeloader/
Dnative_loader_test.cpp288 MATCHER_P(NsEq, other, "") {
289 *result_listener << "comparing " << reinterpret_cast<const char*>(arg) << " and " << other;
290 return strcmp(reinterpret_cast<const char*>(arg), reinterpret_cast<const char*>(other)) == 0;
/art/compiler/utils/arm/
Dmanaged_register_arm.h181 bool Overlaps(const ArmManagedRegister& other) const;

12345678910>>...12