Home
last modified time | relevance | path

Searched refs:other (Results 251 – 275 of 287) sorted by relevance

1...<<1112

/art/tools/hiddenapi/
DREADME.md44 * bit 5 for fields as it carries no other meaning
/art/tools/jvmti-agents/list-extensions/
DREADME.md37 …] desc: Called when there is new ddms information that the agent or other clients can use. T…
/art/openjdkjvmti/
Dti_redefine.cc214 bool operator==(ObsoleteMapIter other) const { in operator ==()
215 return map_ == other.map_ && iter_ == other.iter_; in operator ==()
218 bool operator!=(ObsoleteMapIter other) const { in operator !=()
219 return !(*this == other); in operator !=()
1374 bool operator==(const RedefinitionDataHolder& other) const in operator ==()
1376 return arr_.Get() == other.arr_.Get(); in operator ==()
1379 bool operator!=(const RedefinitionDataHolder& other) const in operator !=()
1381 return !(*this == other); in operator !=()
1425 bool operator==(const RedefinitionDataIter& other) const in operator ==()
1427 return idx_ == other.idx_ && holder_ == other.holder_; in operator ==()
[all …]
Devents.cc1084 ArtJvmtiEvent other = event == ArtJvmtiEvent::kMethodExit in GetInstrumentationEventsFor() local
1087 if (LIKELY(!IsEventEnabledAnywhere(other))) { in GetInstrumentationEventsFor()
1106 ArtJvmtiEvent other = event == ArtJvmtiEvent::kBreakpoint ? ArtJvmtiEvent::kSingleStep in GetInstrumentationEventsFor() local
1108 if (LIKELY(!IsEventEnabledAnywhere(other))) { in GetInstrumentationEventsFor()
/art/compiler/optimizing/
Dinduction_var_analysis.cc37 HInstruction* other = (*scc)[i]; in RotateEntryPhiFirst() local
38 if (other->IsLoopHeaderPhi() && (phi == nullptr || phis.FoundBefore(other, phi))) { in RotateEntryPhiFirst()
39 phi = other; in RotateEntryPhiFirst()
399 ArenaVector<HInstruction*> other( in ClassifyNonTrivial() local
401 RotateEntryPhiFirst(loop, &scc_, &other); in ClassifyNonTrivial()
Dinstruction_simplifier.cc412 static bool IsSubRegBitsMinusOther(HSub* sub, size_t reg_bits, HInstruction* other) { in IsSubRegBitsMinusOther() argument
413 return (sub->GetRight() == other && in IsSubRegBitsMinusOther()
904 HConstant* other = c->AsBinaryOperation()->GetConstantRight(); in AllowInMinMax() local
905 if (other != nullptr && a == c->AsBinaryOperation()->GetLeastConstantLeft()) { in AllowInMinMax()
906 int64_t other_value = Int64FromConstant(other); in AllowInMinMax()
1313 HInstruction* other = left_is_neg ? right : left; in VisitAdd() local
1315 new(GetGraph()->GetAllocator()) HSub(instruction->GetType(), other, neg->GetInput()); in VisitAdd()
/art/test/684-checker-simd-dotprod/src/other/
DTestByte.java17 package other; package
DTestCharShort.java17 package other; package
/art/test/954-invoke-polymorphic-verifier/
Dexpected.txt10 …nresolved.<init>(): invoke-polymorphic receiver has no class: Unresolved Reference: other.thing.Foo
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DParser.java745 @Override public boolean equals(Object other) { in equals() argument
746 if (other instanceof DeferredInstanceValue) { in equals()
747 DeferredInstanceValue value = (DeferredInstanceValue)other; in equals()
/art/runtime/mirror/
Dstring.h188 int32_t CompareTo(ObjPtr<String> other) REQUIRES_SHARED(Locks::mutator_lock_);
/art/dex2oat/linker/
Dimage_writer.h277 bool operator<(const BinSlot& other) const { return lockword_ < other.lockword_; }
Dimage_writer.cc355 ImageFileGuard(ImageFileGuard&& other) noexcept = default;
356 ImageFileGuard& operator=(ImageFileGuard&& other) noexcept = default;
1880 bool operator<(const ClassEntry& other) const { in operator <()
1882 std::tie(other.dex_file_index, other.class_def_index, other.dimension); in operator <()
/art/test/046-reflect/
Dexpected.txt45 got the other expected access exc
/art/runtime/verifier/
Dreg_type.h208 bool CanAccess(const RegType& other) const
243 bool Equals(const RegType& other) const { return GetId() == other.GetId(); } in Equals() argument
Dverifier_deps.h68 void MergeWith(std::unique_ptr<VerifierDeps> other, const std::vector<const DexFile*>& dex_files);
/art/libdexfile/
DAndroid.bp444 // Required for the simpleperf binary in the NDK. No other modules than
/art/runtime/
Ddebugger.cc809 bool operator==(const Entry& other) const { in operator ==()
810 return strcmp(data, other.data) == 0; in operator ==()
/art/build/
DAndroid.bp63 // here so that it gets merged with other visibility rules in modules
/art/test/800-smali/smali/
Db_22881413.smali38 # Empty, ignore this. We want to see if the other method can be verified in a reasonable amount of
/art/test/
DREADME.md158 other test suites are run continuously on this service: Libcore tests and JDWP
/art/test/064-field-access/src/
DMain.java17 import other.PublicClass;
/art/test/utils/
Dregen-test-files159 art-run-test-305-other-fault-handler
/art/runtime/jni/
Dcheck_jni.cc184 VarArgs(VarArgs&& other) noexcept { in VarArgs() argument
185 m_ = other.m_; in VarArgs()
186 cnt_ = other.cnt_; in VarArgs()
187 type_ = other.type_; in VarArgs()
188 if (other.type_ == kTypeVaList) { in VarArgs()
189 va_copy(vargs_, other.vargs_); in VarArgs()
191 ptr_ = other.ptr_; in VarArgs()
/art/cmdline/
Dcmdline_parser.h510 Builder(const Builder& other) = delete;

1...<<1112