/art/tools/checker/match/ |
D | file.py | 46 def findMatchingLine(assertion, c1Pass, scope, variables, excludeLines=[]): argument 57 for i in range(scope.start, scope.end): 62 raise MatchFailedException(assertion, scope.start, variables) 64 def matchDagGroup(assertions, c1Pass, scope, variables): argument 78 match = findMatchingLine(assertion, c1Pass, scope, variables, matchedLines) 80 assert match.scope.start == match.scope.end 81 assert match.scope.start not in matchedLines 82 matchedLines.append(match.scope.start) 85 def testNotGroup(assertions, c1Pass, scope, variables): argument 91 for i in range(scope.start, scope.end): [all …]
|
/art/benchmark/jobject-benchmark/ |
D | info.txt | 7 Decoding local, weak, global, handle scope jobjects.
|
/art/tools/art_verifier/ |
D | art_verifier.cc | 217 StackHandleScope<2> scope(soa.Self()); in ExecuteWithRuntime() local 218 Handle<mirror::ClassLoader> h_loader = scope.NewHandle( in ExecuteWithRuntime() 220 MutableHandle<mirror::Class> h_klass(scope.NewHandle<mirror::Class>(nullptr)); in ExecuteWithRuntime()
|
/art/runtime/ |
D | reference_table_test.cc | 50 StackHandleScope<3> scope(self); in CreateWeakReference() local 51 Handle<mirror::Object> h_referent(scope.NewHandle<mirror::Object>(referent)); in CreateWeakReference() 53 Handle<mirror::Class> h_ref_class(scope.NewHandle<mirror::Class>( in CreateWeakReference() 60 Handle<mirror::Object> h_ref_instance(scope.NewHandle<mirror::Object>( in CreateWeakReference()
|
D | common_throws.h | 200 void ThrowNoSuchFieldError(std::string_view scope,
|
D | thread.h | 929 void PushReflectiveHandleScope(BaseReflectiveHandleScope* scope) { in PushReflectiveHandleScope() argument 930 DCHECK_EQ(scope->GetLink(), tlsPtr_.top_reflective_handle_scope); in PushReflectiveHandleScope() 931 DCHECK_EQ(scope->GetThread(), this); in PushReflectiveHandleScope() 932 tlsPtr_.top_reflective_handle_scope = scope; in PushReflectiveHandleScope()
|
D | common_throws.cc | 391 void ThrowNoSuchFieldError(std::string_view scope, in ThrowNoSuchFieldError() argument 397 msg << "No " << scope << "field " << name << " of type " << type in ThrowNoSuchFieldError()
|
/art/tools/checker/ |
D | README | 30 therefore create a scope within which the assertion is verified. 46 only valid within the scope of the defining group. Within a group they cannot
|
/art/tools/jfuzz/ |
D | README.md | 110 finite in size and scope. Tests typically focus on validating particular 128 The randomness of fuzz testing implies that the size and scope of testing is no
|
/art/compiler/optimizing/ |
D | optimizing_compiler.cc | 333 PassScope scope(optimizations[i]->GetPassName(), pass_observer); in RunOptimizations() local 339 scope.SetPassNotChanged(); in RunOptimizations() 570 PassScope scope(PrepareForRegisterAllocation::kPrepareForRegisterAllocationPassName, in AllocateRegisters() local 579 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer); in AllocateRegisters() local 583 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer); in AllocateRegisters() local 834 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer); in TryCompile() local 959 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer); in TryCompileIntrinsic() local
|
D | code_generator_arm64.cc | 586 EmissionCheckScope scope(codegen->GetVIXLAssembler(), in EmitTable() local 2383 ExactAssemblyScope scope(masm, kInstructionSize, CodeBufferCheckScope::kExactSize); in VisitMultiplyAccumulate() local
|
/art/oatdump/ |
D | oatdump.cc | 2865 StackHandleScope<1> scope(soa.Self()); in DumpOatWithRuntime() local 2866 Handle<mirror::ClassLoader> loader_handle = scope.NewHandle( in DumpOatWithRuntime() 2968 StackHandleScope<1> scope(self); in Dump() local 2969 MutableHandle<mirror::ClassLoader> class_loader = scope.NewHandle<mirror::ClassLoader>(nullptr); in Dump() 3050 StackHandleScope<1> scope(self); in DumpImtStats() local 3051 MutableHandle<mirror::Class> h_klass(scope.NewHandle<mirror::Class>(nullptr)); in DumpImtStats() 3194 StackHandleScope<1> scope(Thread::Current()); in PrepareAndGetImTable() local 3195 Handle<mirror::Class> h_klass = scope.NewHandle<mirror::Class>(klass); in PrepareAndGetImTable()
|
/art/runtime/gc/ |
D | heap.h | 397 void GetInstances(VariableSizedHandleScope& scope, 406 void GetReferringObjects(VariableSizedHandleScope& scope,
|
D | heap.cc | 1986 void Heap::GetInstances(VariableSizedHandleScope& scope, in GetInstances() argument 1995 instances.push_back(scope.NewHandle(obj)); in GetInstances() 2002 void Heap::GetReferringObjects(VariableSizedHandleScope& scope, in GetReferringObjects() argument 2040 ReferringObjectsFinder finder(scope, o, max_count, referring_objects); in GetReferringObjects()
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints.cc | 2039 void Reset(uintptr_t* gpr_regs, uint32_t* fpr_regs, uintptr_t* stack_args, HandleScope* scope) { in Reset() argument 2041 handle_scope_ = scope; in Reset()
|
/art/test/ |
D | Android.bp | 597 "1985-structural-redefine-stack-scope/stack_scope.cc",
|