Home
last modified time | relevance | path

Searched refs:current (Results 26 – 50 of 96) sorted by relevance

1234

/art/runtime/
Dcompiler_filter.cc166 bool CompilerFilter::IsAsGoodAs(Filter current, Filter target) { in IsAsGoodAs() argument
167 return current >= target; in IsAsGoodAs()
170 bool CompilerFilter::IsBetter(Filter current, Filter target) { in IsBetter() argument
171 return current > target; in IsBetter()
/art/test/619-checker-current-method/
Dinfo.txt1 Checks that we don't store the current method when the compiled
DAndroid.bp3 name: "art-run-test-619-checker-current-method",
/art/tools/ahat/src/main/com/android/ahat/progress/
DNullProgress.java26 @Override public void update(long current) { } in update() argument
/art/test/491-current-method/
DAndroid.bp3 name: "art-run-test-491-current-method",
/art/compiler/optimizing/
Dlive_interval_test.cc169 LiveRange* current = interval->GetFirstRange(); in RangesEquals() local
173 i < number_of_expected_ranges && current != nullptr; in RangesEquals()
174 ++i, current = current->GetNext()) { in RangesEquals()
175 if (expected[i][0] != current->GetStart()) { in RangesEquals()
178 if (expected[i][1] != current->GetEnd()) { in RangesEquals()
183 if (current != nullptr || i != number_of_expected_ranges) { in RangesEquals()
Doptimizing_unit_test.h83 HInstruction* current = it.Current(); in RemoveSuspendChecks() local
84 if (current->IsSuspendCheck()) { in RemoveSuspendChecks()
85 current->GetBlock()->RemoveInstruction(current); in RemoveSuspendChecks()
Dcode_generator.cc307 bool CodeGenerator::GoesToNextBlock(HBasicBlock* current, HBasicBlock* next) const { in GoesToNextBlock() argument
308 DCHECK_EQ((*block_order_)[current_block_index_], current); in GoesToNextBlock()
413 HInstruction* current = it.Current(); in Compile() local
414 if (current->HasEnvironment()) { in Compile()
418 MaybeRecordNativeDebugInfo(current, block->GetDexPc()); in Compile()
420 DisassemblyScope disassembly_scope(current, *this); in Compile()
421 DCHECK(CheckTypeConsistency(current)); in Compile()
422 current->Accept(instruction_visitor); in Compile()
1369 HInstruction* current = environment->GetInstructionAt(i); in EmitVRegInfo() local
1370 if (current == nullptr) { in EmitVRegInfo()
[all …]
Dinliner.cc1426 const HInliner* current = this; in CountRecursiveCallsOf() local
1429 if (current->graph_->GetArtMethod() == method) { in CountRecursiveCallsOf()
1432 current = current->parent_; in CountRecursiveCallsOf()
1433 } while (current != nullptr); in CountRecursiveCallsOf()
1811 HInstruction* current = instructions.Current(); in SubstituteArguments() local
1812 if (current->IsParameterValue()) { in SubstituteArguments()
1815 current->ReplaceWith(callee_graph->GetNullConstant()); in SubstituteArguments()
1817 current->ReplaceWith(callee_graph->GetIntConstant(argument->AsIntConstant()->GetValue())); in SubstituteArguments()
1819 current->ReplaceWith(callee_graph->GetLongConstant(argument->AsLongConstant()->GetValue())); in SubstituteArguments()
1821 current->ReplaceWith( in SubstituteArguments()
[all …]
/art/test/1933-monitor-current-contended/
DAndroid.bp3 name: "art-run-test-1933-monitor-current-contended",
Dexpected.txt2 current thread is contending for monitor: null
/art/test/489-current-method-regression/
DAndroid.bp3 name: "art-run-test-489-current-method-regression",
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DDiffFields.java36 public static List<DiffedFieldValue> diff(Iterable<FieldValue> current, in diff() argument
39 for (FieldValue field : current) { in diff()
/art/test/1916-get-set-current-frame/
DAndroid.bp3 name: "art-run-test-1916-get-set-current-frame",
/art/test/1935-get-set-current-frame-jit/
DAndroid.bp3 name: "art-run-test-1935-get-set-current-frame-jit",
/art/test/1915-get-set-local-current-thread/
DAndroid.bp3 name: "art-run-test-1915-get-set-local-current-thread",
/art/test/081-hot-exceptions/
Dinfo.txt3 cause a control flow change to deviate from the current method.
/art/test/984-obsolete-invoke/
Dexpected.txt3 Retrieving obsolete method from current stack
/art/test/051-thread/src/
DMain.java169 Thread current = Thread.currentThread(); in testMainThreadGroup() local
170 current.getThreadGroup().enumerate(threads); in testMainThreadGroup()
173 if (t == current) { in testMainThreadGroup()
/art/tools/ahat/etc/
Dahat_api_msg.txt4 whether it may break any current users of the API. If the API change
/art/test/683-clinit-inline-static-invoke/
Dinfo.txt3 current dex file does not have a TypeId for it. This was likely to crash.
/art/tools/ahat/src/test/com/android/ahat/
DDiffFieldsTest.java51 assertEquals(Value.pack(1), x.current); in normalMatchedDiffedFieldValues()
64 assertEquals(Value.pack(1), x.current); in nulledMatchedDiffedFieldValues()
71 assertNull(y.current); in nulledMatchedDiffedFieldValues()
83 assertEquals(Value.pack(1), x.current); in normalAddedDiffedFieldValues()
94 assertNull(x.current); in nulledAddedDiffedFieldValues()
/art/test/1950-unprepared-transform/
Dexpected.txt1 Redefine in ClassLoad on current thread.
/art/test/051-thread/
Dexpected.txt15 Found current Thread in ThreadGroup
/art/tools/dexanalyze/
Ddexanalyze.cc223 Analysis current(&options); in Run() local
224 if (!current.ProcessDexFiles(dex_files)) { in Run()
229 current.Dump(LOG_STREAM(INFO)); in Run()

1234