Home
last modified time | relevance | path

Searched refs:other (Results 176 – 200 of 287) sorted by relevance

12345678910>>...12

/art/test/537-checker-inline-and-unverified/src/
DMain.java17 import other.InaccessibleClass;
/art/test/071-dexfile/
Dinfo.txt2 work on other VMs.
/art/test/1988-multi-structural-redefine/
Dexpected.txt3 Redefining both class art.Test1988$Transform1 and class art.Test1988$Transform2 to use each other.
/art/runtime/
Dhidden_api.cc249 bool MemberSignature::Equals(const MemberSignature& other) { in Equals() argument
250 return type_ == other.type_ && in Equals()
251 class_name_ == other.class_name_ && in Equals()
252 member_name_ == other.member_name_ && in Equals()
253 type_signature_ == other.type_signature_; in Equals()
256 bool MemberSignature::MemberNameAndTypeMatch(const MemberSignature& other) { in MemberNameAndTypeMatch() argument
257 return member_name_ == other.member_name_ && type_signature_ == other.type_signature_; in MemberNameAndTypeMatch()
/art/libartbase/base/
Dbit_table.h92 bool Equals(const BitTableBase& other) const { in Equals() argument
93 return num_rows_ == other.num_rows_ && in Equals()
94 std::equal(column_offset_, column_offset_ + kNumColumns, other.column_offset_) && in Equals()
95 BitMemoryRegion::Compare(table_data_, other.table_data_) == 0; in Equals()
121 ALWAYS_INLINE bool Equals(const BitTableAccessor& other) { in Equals() argument
122 return this->table_ == other.table_ && this->row_ == other.row_; in Equals()
167 difference_type operator-(const const_iterator& other) { return row_ - other.row_; }
Dcommon_art_test.cc92 ScratchFile::ScratchFile(const ScratchFile& other, const char* suffix) in ScratchFile() argument
93 : ScratchFile(other.GetFilename() + suffix) {} in ScratchFile()
107 ScratchFile::ScratchFile(ScratchFile&& other) noexcept { in ScratchFile() argument
108 *this = std::move(other); in ScratchFile()
111 ScratchFile& ScratchFile::operator=(ScratchFile&& other) noexcept { in operator =() argument
112 if (GetFile() != other.GetFile()) { in operator =()
113 std::swap(filename_, other.filename_); in operator =()
114 std::swap(file_, other.file_); in operator =()
/art/compiler/utils/x86_64/
Dconstants_x86_64.h62 bool operator==(XmmRegister& other) {
63 return reg_ == other.reg_;
/art/runtime/ti/
Dagent.h109 Agent(Agent&& other) noexcept;
110 Agent& operator=(Agent&& other) noexcept;
/art/compiler/optimizing/
Dnodes.h933 bool IsIn(const HLoopInformation& other) const;
1266 void MergeWithInlined(HBasicBlock* other);
1273 void ReplaceWith(HBasicBlock* other);
1276 void MergeInstructionsWith(HBasicBlock* other);
1282 void MergeWith(HBasicBlock* other);
1649 explicit H##type(const H##type& other) = default;
1836 SideEffects Union(SideEffects other) const { in Union() argument
1837 return SideEffects(flags_ | other.flags_); in Union()
1840 SideEffects Exclusion(SideEffects other) const { in Exclusion() argument
1841 return SideEffects(flags_ & ~other.flags_); in Exclusion()
[all …]
Dssa_liveness_analysis.h74 bool IntersectsWith(const LiveRange& other) const { in IntersectsWith() argument
75 return (start_ >= other.start_ && start_ < other.end_) in IntersectsWith()
76 || (other.start_ >= start_ && other.start_ < end_); in IntersectsWith()
79 bool IsBefore(const LiveRange& other) const { in IsBefore() argument
80 return end_ <= other.start_; in IsBefore()
736 bool StartsBeforeOrAt(LiveInterval* other) const { in StartsBeforeOrAt() argument
737 return GetStart() <= other->GetStart(); in StartsBeforeOrAt()
740 bool StartsAfter(LiveInterval* other) const { in StartsAfter() argument
741 return GetStart() > other->GetStart(); in StartsAfter()
809 bool SameRegisterKind(Location other) const;
[all …]
Dregister_allocator_graph_color.cc234 void AddInterference(InterferenceNode* other, in AddInterference() argument
238 DCHECK_NE(this, other) << "Should not create self loops in the interference graph"; in AddInterference()
241 DCHECK_NE(other->stage, NodeStage::kPruned); in AddInterference()
248 DCHECK(!ContainsElement(GetAdjacentNodes(), other)); in AddInterference()
249 adjacent_nodes_->push_back(other); in AddInterference()
250 out_degree_ += EdgeWeightWith(other); in AddInterference()
252 if (!ContainsElement(GetAdjacentNodes(), other)) { in AddInterference()
253 adjacent_nodes_->push_back(other); in AddInterference()
254 out_degree_ += EdgeWeightWith(other); in AddInterference()
259 void RemoveInterference(InterferenceNode* other) { in RemoveInterference() argument
[all …]
/art/test/050-sync-test/
Dexpected.txt33 interrupting other (isAlive=true)
/art/openjdkjvmti/
DREADME.md6 state of the program by modifying dex files in memory and performing other
/art/test/1932-monitor-events-misc/
Dexpected.txt9 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
16 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
24 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
30 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
36 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
43 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
50 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
57 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
/art/test/1954-pop-frame-jit/
Dinfo.txt6 It also tests that breakpoints don't interfere with each other by having
/art/test/1955-pop-frame-jit-called/
Dinfo.txt6 It also tests that breakpoints don't interfere with each other by having
/art/test/1956-pop-frame-jit-calling/
Dinfo.txt6 It also tests that breakpoints don't interfere with each other by having
/art/test/1953-pop-frame/
Dinfo.txt6 It also tests that breakpoints don't interfere with each other by having
/art/test/993-breakpoints/
Dinfo.txt6 It also tests that breakpoints don't interfere with each other by having
/art/test/050-sync-test/src/
DMain.java140 SleepyThread(SleepyThread other) { in SleepyThread() argument
141 mOther = other; in SleepyThread()
/art/dex2oat/linker/
Drelative_patcher_test.h315 bool operator<(const ThunkKey& other) const {
316 if (custom_value1_ != other.custom_value1_) {
317 return custom_value1_ < other.custom_value1_;
319 if (custom_value2_ != other.custom_value2_) {
320 return custom_value2_ < other.custom_value2_;
322 return type_ < other.type_;
/art/test/1949-short-dex-file/
Dinfo.txt25 alphabet (package xyz, method foo). If it is further forward than the other method-ids then the
27 wasn't caught in our other tests (package art is always at the front).
/art/build/sdk/
DAndroid.bp30 // sdk_version other than "none".
38 // sdk_version other than "none" or "core_platform".
83 // implementation and cannot be overridden any other way.
/art/test/565-checker-irreducible-loop/smali/
DIrreducibleLoop.smali19 # Check that both the irreducible loop and the other loop entry
43 # The other block branching to the irreducible loop.
78 # The other block branching to the irreducible loop.
/art/libprofile/profile/
Dprofile_compilation_info.cc1507 bool ProfileCompilationInfo::MergeWith(const ProfileCompilationInfo& other, in MergeWith() argument
1509 if (!SameVersion(other)) { in MergeWith()
1518 for (const DexFileData* other_dex_data : other.info_) { in MergeWith()
1542 for (const DexFileData* other_dex_data : other.info_) { in MergeWith()
1553 for (const DexFileData* other_dex_data : other.info_) { in MergeWith()
1774 bool ProfileCompilationInfo::SameVersion(const ProfileCompilationInfo& other) const { in SameVersion()
1775 return memcmp(version_, other.version_, kProfileVersionSize) == 0; in SameVersion()
1778 bool ProfileCompilationInfo::Equals(const ProfileCompilationInfo& other) { in Equals() argument
1781 if (!SameVersion(other)) { in Equals()
1784 if (info_.size() != other.info_.size()) { in Equals()
[all …]

12345678910>>...12