Home
last modified time | relevance | path

Searched refs:before (Results 1 – 13 of 13) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/
DMutatableCode.java174 private void updateTryBlocksWithReplacementInsn(MInsn before, MInsn after, in updateTryBlocksWithReplacementInsn() argument
178 if (mTryBlock.startInsn == before) { in updateTryBlocksWithReplacementInsn()
183 mTryBlock.startInsn = before; in updateTryBlocksWithReplacementInsn()
185 if (mTryBlock.endInsn == before) { in updateTryBlocksWithReplacementInsn()
190 mTryBlock.endInsn = before; in updateTryBlocksWithReplacementInsn()
192 if (mTryBlock.catchAllHandler == before) { in updateTryBlocksWithReplacementInsn()
197 mTryBlock.catchAllHandler = before; in updateTryBlocksWithReplacementInsn()
208 if (handler == before) { in updateTryBlocksWithReplacementInsn()
224 mTryBlock.handlers.set(idxToChange, before); in updateTryBlocksWithReplacementInsn()
/art/runtime/
Dmonitor_pool.cc78 Monitor* before = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(last) - in AllocateChunk() local
80 before->next_free_ = last; in AllocateChunk()
82 before->monitor_id_ = OffsetToMonitorId(MonitorIdToOffset(last->monitor_id_) - in AllocateChunk()
85 last = before; in AllocateChunk()
Druntime_options.def18 #error "Please #define RUNTIME_OPTIONS_KEY before #including this file"
/art/test/098-ddmc/src/
DMain.java41 Allocations before = new Allocations(DdmVmInternal.getRecentAllocations()); in testRecentAllocationTracking() local
42 System.out.println("before > 0=" + (before.numberOfEntries > 0)); in testRecentAllocationTracking()
50 …System.out.println("before < overflowAllocations=" + (before.numberOfEntries < overflowAllocations… in testRecentAllocationTracking()
51 System.out.println("after > before=" + (after.numberOfEntries > before.numberOfEntries)); in testRecentAllocationTracking()
/art/test/098-ddmc/
Dexpected.txt7 before > 0=true
9 before < overflowAllocations=true
10 after > before=true
/art/test/471-uninitialized-locals/
Dinfo.txt2 use values before initializing them.
/art/test/138-duplicate-classes-check2/
Dinfo.txt2 it before creating the dex file).
/art/runtime/native/
Ddalvik_system_VMRuntime.cc475 DexCacheStats before; in VMRuntime_preloadDexCaches() local
479 PreloadDexCachesStatsFilled(&before); in VMRuntime_preloadDexCaches()
547 total.num_strings, before.num_strings, after.num_strings); in VMRuntime_preloadDexCaches()
549 total.num_types, before.num_types, after.num_types); in VMRuntime_preloadDexCaches()
551 total.num_fields, before.num_fields, after.num_fields); in VMRuntime_preloadDexCaches()
553 total.num_methods, before.num_methods, after.num_methods); in VMRuntime_preloadDexCaches()
/art/tools/dexfuzz/src/dexfuzz/listeners/
DUniqueProgramTrackerListener.java196 File before = new File(fuzzedFile); in saveDivergentProgram() local
198 boolean success = before.renameTo(after); in saveDivergentProgram()
/art/test/485-checker-dce-loop-update/smali/
DTestCase.smali26 # CHECK-START: int TestCase.testSingleExit(int, boolean) dead_code_elimination_final (before)
76 …K-START: int TestCase.testMultipleExits(int, boolean, boolean) dead_code_elimination_final (before)
132 …TART: int TestCase.testExitPredecessors(int, boolean, boolean) dead_code_elimination_final (before)
199 …CHECK-START: int TestCase.testInnerLoop(int, boolean, boolean) dead_code_elimination_final (before)
/art/compiler/dex/quick/
Dcodegen_util.cc997 ConditionCode Mir2Lir::FlipComparisonOrder(ConditionCode before) { in FlipComparisonOrder() argument
999 switch (before) { in FlipComparisonOrder()
1007 LOG(FATAL) << "Unexpected ccode " << before; in FlipComparisonOrder()
1013 ConditionCode Mir2Lir::NegateComparison(ConditionCode before) { in NegateComparison() argument
1015 switch (before) { in NegateComparison()
1023 LOG(FATAL) << "Unexpected ccode " << before; in NegateComparison()
Dmir_to_lir.h674 ConditionCode FlipComparisonOrder(ConditionCode before);
675 ConditionCode NegateComparison(ConditionCode before);
/art/compiler/dex/
Dmir_graph.cc1627 static const struct { const char before; const char after; } match[] = { in ReplaceSpecialChars() member
1632 std::replace(str.begin(), str.end(), match[i].before, match[i].after); in ReplaceSpecialChars()