Home
last modified time | relevance | path

Searched refs:scope (Results 1 – 16 of 16) sorted by relevance

/art/tools/checker/match/
Dfile.py46 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/
Dinfo.txt7 Decoding local, weak, global, handle scope jobjects.
/art/tools/art_verifier/
Dart_verifier.cc217 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/
Dreference_table_test.cc50 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()
Dcommon_throws.h200 void ThrowNoSuchFieldError(std::string_view scope,
Dthread.h929 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()
Dcommon_throws.cc391 void ThrowNoSuchFieldError(std::string_view scope, in ThrowNoSuchFieldError() argument
397 msg << "No " << scope << "field " << name << " of type " << type in ThrowNoSuchFieldError()
/art/tools/checker/
DREADME30 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/
DREADME.md110 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/
Doptimizing_compiler.cc333 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
Dcode_generator_arm64.cc586 EmissionCheckScope scope(codegen->GetVIXLAssembler(), in EmitTable() local
2383 ExactAssemblyScope scope(masm, kInstructionSize, CodeBufferCheckScope::kExactSize); in VisitMultiplyAccumulate() local
/art/oatdump/
Doatdump.cc2865 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/
Dheap.h397 void GetInstances(VariableSizedHandleScope& scope,
406 void GetReferringObjects(VariableSizedHandleScope& scope,
Dheap.cc1986 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/
Dquick_trampoline_entrypoints.cc2039 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/
DAndroid.bp597 "1985-structural-redefine-stack-scope/stack_scope.cc",