Home
last modified time | relevance | path

Searched refs:other (Results 101 – 125 of 287) sorted by relevance

12345678910>>...12

/art/libartbase/base/
Dtransform_array_ref.h67 TransformArrayRef(const TransformArrayRef& other) = default;
75 TransformArrayRef(const TransformArrayRef<OtherBT, Function>& other) in TransformArrayRef() argument
76 : TransformArrayRef(other.base(), other.GetFunction()) { } in TransformArrayRef()
80 TransformArrayRef& operator=(const TransformArrayRef& other) = default;
84 TransformArrayRef& operator=(const TransformArrayRef<OtherBT, Function>& other) {
85 return *this = TransformArrayRef(other.base(), other.GetFunction());
Dintrusive_forward_list.h38 IntrusiveForwardListHook(const IntrusiveForwardListHook& other ATTRIBUTE_UNUSED) in IntrusiveForwardListHook()
218 void swap(IntrusiveForwardList& other) { in swap() argument
219 std::swap(first_.next_hook, other.first_.next_hook); in swap()
320 void merge(IntrusiveForwardList& other) { in merge() argument
321 merge(other, std::less<value_type>()); in merge()
323 void merge(IntrusiveForwardList&& other) { in merge() argument
324 merge(other); // Use l-value overload. in merge()
327 void merge(IntrusiveForwardList& other, Compare cmp) { in merge() argument
330 iterator other_prev = other.before_begin(); in merge()
331 iterator other_current = other.begin(); in merge()
[all …]
Dtransform_iterator.h65 TransformIterator(const TransformIterator<OtherBI, Function>& other) in TransformIterator() argument
66 : data_(other.base(), other.GetFunction()) { in TransformIterator()
123 difference_type operator-(const TransformIterator& other) const {
128 return base() - other.base();
Dscoped_flock.h66 explicit LockedFile(FdFile&& other) : FdFile(std::move(other)) { in LockedFile() argument
Darray_ref.h97 ArrayRef& operator=(const ArrayRef& other) {
98 array_ = other.array_;
99 size_ = other.size_;
105 operator=(const ArrayRef<U>& other) {
106 return *this = ArrayRef(other);
/art/runtime/mirror/
Dobject_reference.h74 void Assign(MirrorType* other) { in Assign() argument
75 reference_ = Compression::Compress(other); in Assign()
124 void Assign(MirrorType* other) REQUIRES_SHARED(Locks::mutator_lock_) { in Assign() argument
126 reference_.store(Compression::Compress(other), std::memory_order_seq_cst); in Assign()
128 reference_.StoreJavaData(Compression::Compress(other)); in Assign()
Dobject_array.h168 ArrayIter(const Iter& other) = default; // NOLINT(runtime/explicit)
169 Iter& operator=(const Iter& other) = default;
171 bool operator!=(const Iter& other) const NO_THREAD_SAFETY_ANALYSIS {
173 return !(*this == other);
175 bool operator==(const Iter& other) const NO_THREAD_SAFETY_ANALYSIS {
176 return Ptr(other.array_) == Ptr(array_) && other.idx_ == idx_;
/art/compiler/optimizing/
Dnodes_shared.h49 bool InstructionDataEquals(const HInstruction* other) const override { in InstructionDataEquals() argument
50 return op_kind_ == other->AsMultiplyAccumulate()->op_kind_; in InstructionDataEquals()
163 bool InstructionDataEquals(const HInstruction* other ATTRIBUTE_UNUSED) const override { in InstructionDataEquals()
218 const HDataProcWithShifterOp* other = other_instr->AsDataProcWithShifterOp(); in InstructionDataEquals() local
219 return instr_kind_ == other->instr_kind_ && in InstructionDataEquals()
220 op_kind_ == other->op_kind_ && in InstructionDataEquals()
221 shift_amount_ == other->shift_amount_; in InstructionDataEquals()
Dscheduler.cc329 for (HInstruction* other = instruction->GetNext(); other != nullptr; other = other->GetNext()) { in AddDependencies() local
330 SchedulingNode* other_node = GetNode(other); in AddDependencies()
332 << other->DebugName() in AddDependencies()
333 << " is in block " << other->GetBlock()->GetBlockId() in AddDependencies()
368 for (HInstruction* other = instruction->GetNext(); other != nullptr; other = other->GetNext()) { in AddDependencies() local
369 SchedulingNode* other_node = GetNode(other); in AddDependencies()
380 if (side_effect_dependency_analysis_.HasSideEffectDependency(other, instruction)) { in AddDependencies()
382 side_effect_dependency_analysis_.HasSideEffectDependency(other, dep_chain_candidate)) { in AddDependencies()
390 IsBetterCandidateWithMoreLikelyDependencies(other, dep_chain_candidate)) { in AddDependencies()
391 dep_chain_candidate = other; in AddDependencies()
/art/test/536-checker-needs-access-check/src/
DMain.java17 import other.InaccessibleClass;
18 import other.InaccessibleClassProxy;
/art/tools/common/
Dcommon.py77 def __ge__(self, other): argument
78 if self.__class__ is other.__class__:
79 return self.value >= other.value
82 def __gt__(self, other): argument
83 if self.__class__ is other.__class__:
84 return self.value > other.value
87 def __le__(self, other): argument
88 if self.__class__ is other.__class__:
89 return self.value <= other.value
92 def __lt__(self, other): argument
[all …]
/art/runtime/verifier/
Dreg_type-inl.h31 inline bool RegType::CanAccess(const RegType& other) const { in CanAccess() argument
34 if (Equals(other)) { in CanAccess()
38 bool other_unresolved = other.IsUnresolvedTypes(); in CanAccess()
40 return GetClass()->CanAccess(other.GetClass()); in CanAccess()
42 return other.GetClass()->IsPublic(); // Be conservative, only allow if other is public. in CanAccess()
/art/runtime/arch/
Dinstruction_set_features.h80 virtual bool Equals(const InstructionSetFeatures* other) const = 0;
96 virtual bool HasAtLeast(const InstructionSetFeatures* other) const { in HasAtLeast() argument
97 return Equals(other); in HasAtLeast()
/art/runtime/arch/arm/
Dinstruction_set_features_arm.cc270 bool ArmInstructionSetFeatures::Equals(const InstructionSetFeatures* other) const { in Equals()
271 if (InstructionSet::kArm != other->GetInstructionSet()) { in Equals()
274 const ArmInstructionSetFeatures* other_as_arm = other->AsArmInstructionSetFeatures(); in Equals()
280 bool ArmInstructionSetFeatures::HasAtLeast(const InstructionSetFeatures* other) const { in HasAtLeast()
281 if (InstructionSet::kArm != other->GetInstructionSet()) { in HasAtLeast()
284 const ArmInstructionSetFeatures* other_as_arm = other->AsArmInstructionSetFeatures(); in HasAtLeast()
Dinstruction_set_features_arm.h50 bool Equals(const InstructionSetFeatures* other) const override;
52 bool HasAtLeast(const InstructionSetFeatures* other) const override;
/art/test/401-optimizing-compiler/src/
DMain.java154 Object $opt$TestThisParameter(Object other) { in $opt$TestThisParameter() argument
156 return other; in $opt$TestThisParameter()
159 Object $opt$TestOtherParameter(Object other) { in $opt$TestOtherParameter() argument
161 return other; in $opt$TestOtherParameter()
164 Object $opt$TestReturnNewObject(Object other) { in $opt$TestReturnNewObject() argument
/art/cmdline/
Dcmdline_parse_result.h114 static CmdlineParseResult<T> CastError(const CmdlineParseResult<T2>& other) { in CastError()
115 assert(other.IsError()); in CastError()
116 return CmdlineParseResult<T>(other.GetStatus()); in CastError()
/art/runtime/arch/arm64/
Dinstruction_set_features_arm64.cc248 bool Arm64InstructionSetFeatures::Equals(const InstructionSetFeatures* other) const { in Equals()
249 if (InstructionSet::kArm64 != other->GetInstructionSet()) { in Equals()
252 const Arm64InstructionSetFeatures* other_as_arm64 = other->AsArm64InstructionSetFeatures(); in Equals()
262 bool Arm64InstructionSetFeatures::HasAtLeast(const InstructionSetFeatures* other) const { in HasAtLeast()
263 if (InstructionSet::kArm64 != other->GetInstructionSet()) { in HasAtLeast()
269 const Arm64InstructionSetFeatures* other_as_arm64 = other->AsArm64InstructionSetFeatures(); in HasAtLeast()
/art/runtime/gc/
Dallocation_record.h65 bool operator==(const AllocRecordStackTraceElement& other) const {
66 return method_ == other.method_ && dex_pc_ == other.dex_pc_;
115 bool operator==(const AllocRecordStackTrace& other) const {
116 if (this == &other) return true;
117 return tid_ == other.tid_ && stack_ == other.stack_;
/art/tools/hiddenapi/
Dhiddenapi.cc134 inline bool Equals(const DexClass& other) const { in Equals()
135 bool equals = strcmp(GetDescriptor(), other.GetDescriptor()) == 0; in Equals()
139 << " and " << other.dex_file_.GetLocation(); in Equals()
184 inline bool operator==(const DexMember& other) const { in operator ==()
186 bool equals = IsMethod() == other.IsMethod() && in operator ==()
187 GetName() == other.GetName() && in operator ==()
188 GetSignature() == other.GetSignature(); in operator ==()
192 CHECK_EQ(IsVirtualMethod(), other.IsVirtualMethod()); in operator ==()
340 bool ForEachResolvableMember(const DexMember& other, Fn fn) { in ForEachResolvableMember() argument
342 return ForEachResolvableMember_Impl(other, fn, true, true, visited); in ForEachResolvableMember()
[all …]
/art/runtime/arch/x86/
Dinstruction_set_features_x86.cc241 bool X86InstructionSetFeatures::Equals(const InstructionSetFeatures* other) const { in Equals()
242 if (GetInstructionSet() != other->GetInstructionSet()) { in Equals()
245 const X86InstructionSetFeatures* other_as_x86 = other->AsX86InstructionSetFeatures(); in Equals()
254 bool X86InstructionSetFeatures::HasAtLeast(const InstructionSetFeatures* other) const { in HasAtLeast()
255 if (GetInstructionSet() != other->GetInstructionSet()) { in HasAtLeast()
258 const X86InstructionSetFeatures* other_as_x86 = other->AsX86InstructionSetFeatures(); in HasAtLeast()
/art/test/661-oat-writer-layout/src/
DMain.java35 public int compareTo(OatMethodAndOffset other) { in compareTo() argument
36 return Long.compareUnsigned(codeOffset, other.codeOffset); in compareTo()
/art/runtime/base/
Dtiming_logger.h128 TimingData(TimingData&& other) { in TimingData() argument
129 std::swap(data_, other.data_); in TimingData()
131 TimingData& operator=(TimingData&& other) {
132 std::swap(data_, other.data_);
/art/test/537-checker-inline-and-unverified/src/other/
DInaccessibleClass.java17 package other; package
/art/test/536-checker-needs-access-check/src2/other/
DInaccessibleClass.java17 package other; package

12345678910>>...12