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.cc48 StackHandleScope<3> scope(self); in CreateWeakReference() local
49 Handle<mirror::Object> h_referent(scope.NewHandle<mirror::Object>(referent)); in CreateWeakReference()
51 Handle<mirror::Class> h_ref_class(scope.NewHandle<mirror::Class>( in CreateWeakReference()
58 Handle<mirror::Object> h_ref_instance(scope.NewHandle<mirror::Object>( in CreateWeakReference()
Dcommon_throws.h199 void ThrowNoSuchFieldError(const StringPiece& scope,
Dcommon_throws.cc393 void ThrowNoSuchFieldError(const StringPiece& scope, ObjPtr<mirror::Class> c, in ThrowNoSuchFieldError() argument
397 msg << "No " << scope << "field " << name << " of type " << type in ThrowNoSuchFieldError()
Dthread.cc1952 StackHandleScope<1> scope(Thread::Current()); in DumpJavaStack() local
1956 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.md108 finite in size and scope. Tests typically focus on validating particular
126 The randomness of fuzz testing implies that the size and scope of testing is no
/art/compiler/optimizing/
Doptimizing_compiler.cc322 PassScope scope(optimizations[i]->GetPassName(), pass_observer); in RunOptimizations() local
581 PassScope scope(PrepareForRegisterAllocation::kPrepareForRegisterAllocationPassName, in AllocateRegisters() local
590 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer); in AllocateRegisters() local
594 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer); in AllocateRegisters() local
820 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer); in TryCompile() local
938 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer); in TryCompileIntrinsic() local
Dcode_generator_arm64.cc591 EmissionCheckScope scope(codegen->GetVIXLAssembler(), in EmitTable() local
2664 ExactAssemblyScope scope(masm, kInstructionSize, CodeBufferCheckScope::kExactSize); in VisitMultiplyAccumulate() local
/art/oatdump/
Doatdump.cc3065 StackHandleScope<1> scope(soa.Self()); in DumpOatWithRuntime() local
3066 Handle<mirror::ClassLoader> loader_handle = scope.NewHandle( in DumpOatWithRuntime()
3164 StackHandleScope<1> scope(self); in Dump() local
3165 MutableHandle<mirror::ClassLoader> class_loader = scope.NewHandle<mirror::ClassLoader>(nullptr); in Dump()
3244 StackHandleScope<1> scope(self); in DumpImtStats() local
3245 MutableHandle<mirror::Class> h_klass(scope.NewHandle<mirror::Class>(nullptr)); in DumpImtStats()
3387 StackHandleScope<1> scope(Thread::Current()); in PrepareAndGetImTable() local
3388 Handle<mirror::Class> h_klass = scope.NewHandle<mirror::Class>(klass); in PrepareAndGetImTable()
/art/runtime/gc/
Dheap.h354 void GetInstances(VariableSizedHandleScope& scope,
363 void GetReferringObjects(VariableSizedHandleScope& scope,
Dheap.cc1816 void Heap::GetInstances(VariableSizedHandleScope& scope, in GetInstances() argument
1825 instances.push_back(scope.NewHandle(obj)); in GetInstances()
1832 void Heap::GetReferringObjects(VariableSizedHandleScope& scope, in GetReferringObjects() argument
1870 ReferringObjectsFinder finder(scope, o, max_count, referring_objects); in GetReferringObjects()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc2204 void Reset(uintptr_t* gpr_regs, uint32_t* fpr_regs, uintptr_t* stack_args, HandleScope* scope) { in Reset() argument
2206 handle_scope_ = scope; in Reset()