/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/runtime/ |
D | reference_table_test.cc | 45 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()
|
D | common_throws.h | 189 void ThrowNoSuchFieldError(const StringPiece& scope,
|
D | common_throws.cc | 370 void ThrowNoSuchFieldError(const StringPiece& scope, ObjPtr<mirror::Class> c, in ThrowNoSuchFieldError() argument 374 msg << "No " << scope << "field " << name << " of type " << type in ThrowNoSuchFieldError()
|
D | thread.cc | 1904 StackHandleScope<1> scope(Thread::Current()); in DumpJavaStack() local 1908 exc = scope.NewHandle(GetException()); in DumpJavaStack()
|
/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 | 98 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/ |
D | optimizing_compiler.cc | 594 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
|
D | code_generator_arm64.cc | 654 EmissionCheckScope scope(codegen->GetVIXLAssembler(), in EmitTable() local 2735 ExactAssemblyScope scope(masm, kInstructionSize, CodeBufferCheckScope::kExactSize); in VisitMultiplyAccumulate() local
|
/art/oatdump/ |
D | oatdump.cc | 2859 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/ |
D | heap.h | 345 void GetInstances(VariableSizedHandleScope& scope, 353 void GetReferringObjects(VariableSizedHandleScope& scope,
|
D | heap.cc | 1813 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/ |
D | quick_trampoline_entrypoints.cc | 1996 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()
|