Searched refs:other (Results 26 - 50 of 89) sorted by relevance

1234

/art/runtime/base/
H A Dhash_set.h71 bool operator==(const BaseIterator& other) const {
72 return hash_set_ == other.hash_set_ && this->index_ == other.index_;
75 bool operator!=(const BaseIterator& other) const {
76 return !(*this == other);
138 HashSet(const HashSet& other) : num_elements_(0), num_buckets_(0), owns_data_(false), argument
140 *this = other;
143 HashSet(HashSet&& other) : num_elements_(0), num_buckets_(0), owns_data_(false), argument
145 *this = std::move(other);
201 HashSet& operator=(HashSet&& other) { argument
212 operator =(const HashSet& other) argument
[all...]
H A Darena_containers.h97 typedef ArenaAllocatorAdapter<U> other; typedef in struct:art::ArenaAllocatorAdapter::rebind
106 ArenaAllocatorAdapter(const ArenaAllocatorAdapter<U>& other) argument
107 : ArenaAllocatorAdapterKind(other),
108 arena_allocator_(other.arena_allocator_) {
134 typedef ArenaAllocatorAdapter<U> other; typedef in struct:art::ArenaAllocatorAdapter::rebind
142 ArenaAllocatorAdapter(const ArenaAllocatorAdapter<U>& other) argument
143 : ArenaAllocatorAdapterKind(other),
144 arena_allocator_(other.arena_allocator_) {
H A Darena_allocator.h81 ArenaAllocatorStatsImpl(const ArenaAllocatorStatsImpl& other) = default; member in class:art::ArenaAllocatorStatsImpl
82 ArenaAllocatorStatsImpl& operator = (const ArenaAllocatorStatsImpl& other) = delete; member in class:art::ArenaAllocatorStatsImpl
84 void Copy(const ArenaAllocatorStatsImpl& other) { UNUSED(other); } argument
97 ArenaAllocatorStatsImpl(const ArenaAllocatorStatsImpl& other) = default; member in class:art::ArenaAllocatorStatsImpl
98 ArenaAllocatorStatsImpl& operator = (const ArenaAllocatorStatsImpl& other) = delete; member in class:art::ArenaAllocatorStatsImpl
100 void Copy(const ArenaAllocatorStatsImpl& other);
H A Dbit_vector.h51 bool operator==(const IndexIterator& other) const;
53 bool operator!=(const IndexIterator& other) const {
54 return !(*this == other);
190 bool IsSubsetOf(const BitVector *other) const;
H A Dtiming_logger.h108 TimingData(TimingData&& other) { argument
109 std::swap(data_, other.data_);
111 TimingData& operator=(TimingData&& other) { argument
112 std::swap(data_, other.data_);
/art/cmdline/
H A Dcmdline_parse_result.h114 static CmdlineParseResult<T> CastError(const CmdlineParseResult<T2>& other) { argument
115 assert(other.IsError());
116 return CmdlineParseResult<T>(other.GetStatus());
H A Dtoken_range.h169 // Does this token range equal the other range?
172 bool operator==(const TokenRange& other) const {
173 if (this == &other) {
177 if (Size() != other.Size()) {
181 return std::equal(begin(), end(), other.begin());
190 // Does this current range start with the other range?
191 bool StartsWith(const TokenRange& other) const {
192 if (this == &other) {
196 if (Size() < other.Size()) {
200 auto& smaller = Size() < other
[all...]
/art/runtime/arch/mips64/
H A Dinstruction_set_features_mips64.cc81 bool Mips64InstructionSetFeatures::Equals(const InstructionSetFeatures* other) const {
82 if (kMips64 != other->GetInstructionSet()) {
85 return (IsSmp() == other->IsSmp());
H A Dinstruction_set_features_mips64.h48 bool Equals(const InstructionSetFeatures* other) const OVERRIDE;
/art/compiler/optimizing/
H A Dnodes.cc106 // the initial DFS as users from other instructions, so that
431 bool HLoopInformation::IsIn(const HLoopInformation& other) const {
432 return other.blocks_.IsBitSet(header_->GetBlockId());
443 bool HBasicBlock::Dominates(HBasicBlock* other) const {
444 // Walk up the dominator tree from `other`, to find out if `this`
446 HBasicBlock* current = other;
737 void HInstruction::ReplaceWith(HInstruction* other) { argument
738 DCHECK(other != nullptr);
743 user->SetRawInputAt(input_index, other);
744 other
1093 MergeWith(HBasicBlock* other) argument
1143 MergeWithInlined(HBasicBlock* other) argument
1175 ReplaceWith(HBasicBlock* other) argument
[all...]
/art/compiler/utils/
H A Darray_ref.h33 * or any other contiguous chunk of memory but that memory must remain valid,
96 ArrayRef& operator=(const ArrayRef& other) { argument
97 array_ = other.array_;
98 size_ = other.size_;
104 operator=(const ArrayRef<U>& other) { argument
105 return *this = ArrayRef(other);
/art/runtime/verifier/
H A Dreg_type-inl.h28 inline bool RegType::CanAccess(const RegType& other) const {
29 if (Equals(other)) {
33 bool other_unresolved = other.IsUnresolvedTypes();
35 return GetClass()->CanAccess(other.GetClass());
37 return other.GetClass()->IsPublic(); // Be conservative, only allow if other is public.
/art/runtime/arch/arm64/
H A Dinstruction_set_features_arm64.cc106 bool Arm64InstructionSetFeatures::Equals(const InstructionSetFeatures* other) const {
107 if (kArm64 != other->GetInstructionSet()) {
110 const Arm64InstructionSetFeatures* other_as_arm = other->AsArm64InstructionSetFeatures();
H A Dinstruction_set_features_arm64.h48 bool Equals(const InstructionSetFeatures* other) const OVERRIDE;
/art/test/075-verification-error/src/
H A DMain.java17 import other.Mutant;
18 import other.InaccessibleClass;
19 import other.InaccessibleMethod;
/art/runtime/arch/mips/
H A Dinstruction_set_features_mips.cc162 bool MipsInstructionSetFeatures::Equals(const InstructionSetFeatures* other) const {
163 if (kMips != other->GetInstructionSet()) {
166 const MipsInstructionSetFeatures* other_as_mips = other->AsMipsInstructionSetFeatures();
167 return (IsSmp() == other->IsSmp()) &&
/art/runtime/mirror/
H A Dobject_reference.h40 void Assign(MirrorType* other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
41 reference_ = Compress(other);
/art/test/401-optimizing-compiler/src/
H A DMain.java154 Object $opt$TestThisParameter(Object other) { argument
156 return other;
159 Object $opt$TestOtherParameter(Object other) { argument
161 return other;
164 Object $opt$TestReturnNewObject(Object other) { argument
/art/runtime/gc/collector/
H A Dgarbage_collector.h40 void Add(const ObjectBytePair& other) { argument
41 objects += other.objects;
42 bytes += other.bytes;
/art/compiler/
H A Dcompiled_method.h98 bool operator<(const SrcMapElem& other) const {
99 if (from_ != other.from_) {
100 return from_ < other.from_;
102 return to_ < other.to_;
212 LinkerPatch(const LinkerPatch& other) = default; member in class:art::LinkerPatch
213 LinkerPatch& operator=(const LinkerPatch& other) = default; member in class:art::LinkerPatch
/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/tools/
H A Dchecker.py41 # In other words, the order of output lines does not matter
149 def __eq__(self, other):
150 return (isinstance(other, self.__class__)
151 and self.__dict__ == other.__dict__)
153 def __ne__(self, other):
154 return not self.__eq__(other)
238 def __eq__(self, other):
239 return (isinstance(other, self.__class__) and
240 self.variant == other.variant and
241 self.lineParts == other
[all...]
/art/compiler/dex/
H A Dlocal_value_numbering.cc350 bool LocalValueNumbering::Equals(const LocalValueNumbering& other) const {
351 DCHECK(gvn_ == other.gvn_);
353 return sreg_value_map_ == other.sreg_value_map_ &&
354 sreg_wide_value_map_ == other.sreg_wide_value_map_ &&
355 sfield_value_map_ == other.sfield_value_map_ &&
356 non_aliasing_ifield_value_map_ == other.non_aliasing_ifield_value_map_ &&
357 aliasing_ifield_value_map_ == other.aliasing_ifield_value_map_ &&
358 non_aliasing_array_value_map_ == other.non_aliasing_array_value_map_ &&
359 aliasing_array_value_map_ == other.aliasing_array_value_map_ &&
360 SameMemoryVersion(other)
370 MergeOne(const LocalValueNumbering& other, MergeType merge_type) argument
[all...]
/art/runtime/arch/arm/
H A Dinstruction_set_features_arm.h48 bool Equals(const InstructionSetFeatures* other) const OVERRIDE;
/art/runtime/arch/
H A Dinstruction_set_features.h65 // Are these features the same as the other given features?
66 virtual bool Equals(const InstructionSetFeatures* other) const = 0;

Completed in 462 milliseconds

1234