Searched refs:before (Results 1 – 13 of 13) sorted by relevance
/art/tools/dexfuzz/src/dexfuzz/program/ |
D | MutatableCode.java | 174 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/ |
D | monitor_pool.cc | 78 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()
|
D | runtime_options.def | 18 #error "Please #define RUNTIME_OPTIONS_KEY before #including this file"
|
/art/test/098-ddmc/src/ |
D | Main.java | 41 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/ |
D | expected.txt | 7 before > 0=true 9 before < overflowAllocations=true 10 after > before=true
|
/art/test/471-uninitialized-locals/ |
D | info.txt | 2 use values before initializing them.
|
/art/test/138-duplicate-classes-check2/ |
D | info.txt | 2 it before creating the dex file).
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 475 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/ |
D | UniqueProgramTrackerListener.java | 196 File before = new File(fuzzedFile); in saveDivergentProgram() local 198 boolean success = before.renameTo(after); in saveDivergentProgram()
|
/art/test/485-checker-dce-loop-update/smali/ |
D | TestCase.smali | 26 # 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/ |
D | codegen_util.cc | 997 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()
|
D | mir_to_lir.h | 674 ConditionCode FlipComparisonOrder(ConditionCode before); 675 ConditionCode NegateComparison(ConditionCode before);
|
/art/compiler/dex/ |
D | mir_graph.cc | 1627 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()
|