Home
last modified time | relevance | path

Searched refs:other (Results 201 – 225 of 287) sorted by relevance

12345678910>>...12

/art/compiler/optimizing/
Dscheduler_test.cc362 const SchedulingNode* other = GetNode(other_instruction); in HasImmediateDataDependency() local
363 if (node == nullptr || other == nullptr) { in HasImmediateDataDependency()
370 return node->HasDataDependency(other); in HasImmediateDataDependency()
376 const SchedulingNode* other = GetNode(other_instruction); in HasImmediateOtherDependency() local
377 if (node == nullptr || other == nullptr) { in HasImmediateOtherDependency()
384 return node->HasOtherDependency(other); in HasImmediateOtherDependency()
Dssa_liveness_analysis.cc475 bool LiveInterval::SameRegisterKind(Location other) const { in SameRegisterKind()
478 return other.IsFpuRegisterPair(); in SameRegisterKind()
480 return other.IsFpuRegister(); in SameRegisterKind()
484 return other.IsRegisterPair(); in SameRegisterKind()
486 return other.IsRegister(); in SameRegisterKind()
/art/test/064-field-access/src/other/
DPublicClass.java17 package other; package
DProtectedClass.java17 package other; package
/art/test/1931-monitor-events/
Dexpected.txt24 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
30 Caught exception: art.Monitors$TestException: Exception thrown by other thread!
/art/test/064-field-access/
Dinfo.txt7 same time, we can only throw one or the other.
/art/libartbase/base/
Darena_allocator.cc107 void ArenaAllocatorStatsImpl<kCount>::Copy(const ArenaAllocatorStatsImpl& other) { in Copy() argument
108 num_allocations_ = other.num_allocations_; in Copy()
109 std::copy_n(other.alloc_stats_.begin(), kNumArenaAllocKinds, alloc_stats_.begin()); in Copy()
Dbit_vector.cc92 bool BitVector::IsSubsetOf(const BitVector *other) const { in IsSubsetOf()
94 int other_highest = other->GetHighestBitSet(); in IsSubsetOf()
110 uint32_t other_storage = other->storage_[i]; in IsSubsetOf()
Dcommon_art_test.h69 ScratchFile(const ScratchFile& other, const char* suffix);
71 ScratchFile(ScratchFile&& other) noexcept;
73 ScratchFile& operator=(ScratchFile&& other) noexcept;
/art/compiler/jni/quick/
Djni_compiler.h46 JniCompiledMethod(JniCompiledMethod&& other) = default;
/art/test/684-checker-simd-dotprod/src/other/
DTestFloatDouble.java17 package other; package
/art/test/1975-hello-structural-transformation/
Dexpected.txt16 Reading normally in other class.
33 Reading normally in other class after possible modification.
52 Reading normally in other class.
74 Reading normally in other class after possible modification.
/art/
DNOTICE29 other entities that control, are controlled by, or are under common
46 and conversions to other media types.
55 editorial revisions, annotations, elaborations, or other modifications
107 (a) You must give any other recipients of the Work or
175 other commercial damages or losses), even if such Contributor
181 or other liability obligations and/or rights consistent with this
184 of any other Contributor, and only if You agree to indemnify,
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md21 dexdump and are uint16\_t-offsets from the start of the method. On other
22 runtimes jlocations might represent other things.
/art/tools/checker/
DREADME25 In other words, the order of output lines does not matter
63 variables. Any other surrounding text will be passed to Python's `eval` as is.
102 /// CHECK-START-ARM64: int other.TestByte.testDotProdComplex(byte[], byte[]) disassembly (after)
111 variables as part of the statement input is not allowed. Any other surrounding text will be passed
130 of the defining group. In other words, it will be valid everywhere after its definition within the
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DDiff.java123 public boolean equals(Object other) { in equals() argument
124 if (!(other instanceof Key)) { in equals()
127 Key o = (Key)other; in equals()
/art/libnativeloader/
DREADME.md22 from the namespace, thus preventing an APK from loading JNI libraries of other
25 The linker namespace is also configured differently depending on other
78 dynamic linker interface so that other parts of this library do not have to know
/art/tools/bisection_search/
DREADME.md10 interpreting all other methods produces incorrect output. Then, given ordered
58 … --raw-cmd RAW_CMD bisect with this command, ignore other command options
/art/runtime/
Dhandle.h60 ALWAYS_INLINE Handle(const Handle<Type>& other) : reference_(other.reference_) { in Handle() argument
Dobj_ptr.h67 OBJPTR_INLINE ObjPtr(const ObjPtr<Type>& other) REQUIRES_SHARED(Locks::mutator_lock_);
71 OBJPTR_INLINE ObjPtr& operator=(const ObjPtr<Type>& other) REQUIRES_SHARED(Locks::mutator_lock_);
/art/test/571-irreducible-loop/smali/
DIrreducibleLoop.smali40 # The other block branching to the irreducible loop.
/art/test/954-invoke-polymorphic-verifier/smali/
DMain.smali80 # A test method called "invoke", but on a class other than MethodHandle.
89 # other than MethodHandle.
/art/tools/runtime_memusage/
DREADME22 sanitizer_logcat_analysis.sh is the main executable that will use the other two
23 in order to give both types of information. The other two are used in some of
/art/dexlayout/
Ddex_writer.h47 bool operator>(const MapItem& other) const {
48 return offset_ > other.offset_;
/art/test/712-varhandle-invocations/util-src/
Dgenerate_java.py62 def __eq__(self, other): argument
63 return self.ordinal == other.ordinal
68 def __le__(self, other): argument
69 return self.ordinal < other.ordinal

12345678910>>...12