Home
last modified time | relevance | path

Searched refs:scope (Results 1 – 14 of 14) 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/runtime/
Dreference_table_test.cc45 StackHandleScope<3> scope(self); in CreateWeakReference() local
46 Handle<mirror::Object> h_referent(scope.NewHandle<mirror::Object>(referent)); in CreateWeakReference()
48 Handle<mirror::Class> h_ref_class(scope.NewHandle<mirror::Class>( in CreateWeakReference()
55 Handle<mirror::Object> h_ref_instance(scope.NewHandle<mirror::Object>( in CreateWeakReference()
Dcommon_throws.h189 void ThrowNoSuchFieldError(const StringPiece& scope,
Dcommon_throws.cc370 void ThrowNoSuchFieldError(const StringPiece& scope, ObjPtr<mirror::Class> c, in ThrowNoSuchFieldError() argument
374 msg << "No " << scope << "field " << name << " of type " << type in ThrowNoSuchFieldError()
Dthread.cc1904 StackHandleScope<1> scope(Thread::Current()); in DumpJavaStack() local
1908 exc = scope.NewHandle(GetException()); in DumpJavaStack()
/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.md98 finite in size and scope. Tests typically focus on validating particular
116 The randomness of fuzz testing implies that the size and scope of testing is no
/art/compiler/optimizing/
Doptimizing_compiler.cc594 PassScope scope(optimizations[i]->GetPassName(), pass_observer); in RunOptimizations() local
721 PassScope scope(PrepareForRegisterAllocation::kPrepareForRegisterAllocationPassName, in AllocateRegisters() local
727 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer); in AllocateRegisters() local
731 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer); in AllocateRegisters() local
983 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer); in TryCompile() local
Dcode_generator_arm64.cc654 EmissionCheckScope scope(codegen->GetVIXLAssembler(), in EmitTable() local
2735 ExactAssemblyScope scope(masm, kInstructionSize, CodeBufferCheckScope::kExactSize); in VisitMultiplyAccumulate() local
/art/oatdump/
Doatdump.cc2859 StackHandleScope<1> scope(soa.Self()); in DumpOatWithRuntime() local
2860 Handle<mirror::ClassLoader> loader_handle = scope.NewHandle( in DumpOatWithRuntime()
2945 StackHandleScope<1> scope(self); in Dump() local
2946 MutableHandle<mirror::ClassLoader> class_loader = scope.NewHandle<mirror::ClassLoader>(nullptr); in Dump()
3024 StackHandleScope<1> scope(self); in DumpImtStats() local
3025 MutableHandle<mirror::Class> h_klass(scope.NewHandle<mirror::Class>(nullptr)); in DumpImtStats()
3167 StackHandleScope<1> scope(Thread::Current()); in PrepareAndGetImTable() local
3168 Handle<mirror::Class> h_klass = scope.NewHandle<mirror::Class>(klass); in PrepareAndGetImTable()
/art/runtime/gc/
Dheap.h345 void GetInstances(VariableSizedHandleScope& scope,
353 void GetReferringObjects(VariableSizedHandleScope& scope,
Dheap.cc1813 void Heap::GetInstances(VariableSizedHandleScope& scope, in GetInstances() argument
1821 instances.push_back(scope.NewHandle(obj)); in GetInstances()
1828 void Heap::GetReferringObjects(VariableSizedHandleScope& scope, in GetReferringObjects() argument
1866 ReferringObjectsFinder finder(scope, o, max_count, referring_objects); in GetReferringObjects()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1996 void Reset(uintptr_t* gpr_regs, uint32_t* fpr_regs, uintptr_t* stack_args, HandleScope* scope) { in Reset() argument
1998 handle_scope_ = scope; in Reset()