/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/ |
DeadKeyCombiner.java | 29 * A combiner that handles dead keys. 39 // No dead char is currently being tracked: this is the most common case. 41 // The event was a dead key. Start tracking it. 45 // Regular keystroke when not keeping track of a dead key. Simply said, there are 46 // no dead keys at all in the current input, so this combiner has nothing to do and 50 // TODO: Allow combining for several dead chars rather than only the first one. 57 // We can't combine both characters. We need to commit the dead key as a separate 59 // dead key + space should result in only the dead key being committed - that's 60 // how dead keys work) [all...] |
/dalvik/dx/tests/031-bb-dead-code/ |
expected.txt | 16 dead code 0001..0002 22 dead code 0001..0003 29 dead code 0002..0005 35 dead code 0001..0007 41 dead code 0003..0004 54 dead code 0005..0006 64 dead code 0014..001b 74 dead code 001c..001e 87 dead code 0004..0005 100 dead code 0004..000 [all...] |
/dalvik/dx/tests/003-magic-version-access/ |
class-bad-magic.txt | 5 dead babe # magic
|
/external/llvm/test/Analysis/ScalarEvolution/ |
unreachable-code.ll | 10 dead:
|
/external/llvm/test/Transforms/InstCombine/ |
nothrow.ll | 6 call double @t1(i32 42) ;; dead call even though callee is not nothrow.
|
/external/llvm/test/CodeGen/X86/ |
2010-04-08-CoalescerBug.ll | 4 ; Do not delete partially dead copy instructions. 5 ; %RDI<def,dead> = MOV64rr %RAX<kill>, %EDI<imp-def> 6 ; REP_MOVSD %ECX<imp-def,dead>, %EDI<imp-def,dead>, %ESI<imp-def,dead>, %ECX<imp-use,kill>, %EDI<imp-use,kill>, %ESI<imp-use,kill>
|
/external/llvm/test/Transforms/DeadArgElim/ |
multdeadretval.ll | 4 ; any remaining dead stuff. 14 %DEAD = call i16 @test4() 16 %B = insertvalue {i32,i16} %A, i16 %DEAD, 1 20 ; Dead argument, used to check if the second result of test2 is dead even when 21 ; it's used as a dead argument 24 %DEAD = extractvalue {i16, i32} %ret, 0 52 %DEAD = extractvalue {i32, i16} %ret, 1 54 %LIVE2 = call i32 @test3(i16 %DEAD) ; <i32> [#uses=1]
|
basictest.ll | 3 ; test - an obviously dead argument 10 ; dead argument. 17 ; evenhardertest - recursive dead argument...
|
/external/llvm/lib/Transforms/Scalar/ |
DCE.cpp | 1 //===- DCE.cpp - Code to perform dead code elimination --------------------===// 10 // This file implements dead inst elimination and dead code elimination. 12 // Dead Inst Elimination performs a single pass over the function removing 13 // instructions that are obviously dead. Dead Code Elimination is similar, but 15 // they are newly dead. 66 "Dead Instruction Elimination", false, false) 92 INITIALIZE_PASS(DCE, "dce", "Dead Code Elimination", false, false) 105 // Loop over the worklist finding instructions that are dead. If they ar [all...] |
ADCE.cpp | 1 //===- DCE.cpp - Code to perform dead code elimination --------------------===// 10 // This file implements the Aggressive Dead Code Elimination pass. This pass 11 // optimistically assumes that all instructions are dead until proven otherwise, 12 // allowing it to eliminate dead computations that other DCE passes do not 51 INITIALIZE_PASS(ADCE, "adce", "Aggressive Dead Code Elimination", false, false) 80 // The inverse of the live set is the dead set. These are those instructions
|
/external/lldb/test/functionalities/dead-strip/ |
TestDeadStrip.py | 2 Test that breakpoint works correctly in the presence of dead-code stripping. 13 mydir = os.path.join("functionalities", "dead-strip") 18 """Test breakpoint works correctly with dead-code stripping.""" 26 """Test breakpoint works correctly with dead-code stripping.""" 31 """Test breakpoint works correctly with dead-code stripping.""" 38 # Break by function name f2 (dead code).
|
/external/llvm/test/Transforms/SimplifyCFG/ |
switch_thread.ll | 2 ; RUN: not grep "call void @DEAD" 10 declare void @DEAD() 28 call void @DEAD( ) 29 call void @DEAD( ) 46 call void @DEAD( ) 67 call void @DEAD( )
|
/external/clang/test/Sema/ |
warn-unreachable.c | 7 int dead(); 33 dead(); // expected-warning {{will never be executed}} 37 dead(); // expected-warning {{will never be executed}} 43 dead(); 54 dead(); // expected-warning {{will never be executed}} 68 dead(); // expected-warning {{will never be executed}} 71 dead(); 81 dead(); // expected-warning {{will never be executed}} 91 dead() : dead(); [all...] |
/dalvik/dx/tests/087-ssa-local-vars/ |
info.txt | 1 This is a test case to ensure proper preservation of local variable information through the register renamer and dead code remover at the beginning of the SSA conversion.
|
/external/llvm/test/Transforms/GlobalOpt/ |
trivialstore.ll | 15 define internal void @dead() {
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/ |
times.h | 40 clock_t tms_cutime; /* User CPU time of dead children. */ 41 clock_t tms_cstime; /* System CPU time of dead children. */ 46 dead children (and their dead children) in BUFFER.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/ |
times.h | 40 clock_t tms_cutime; /* User CPU time of dead children. */ 41 clock_t tms_cstime; /* System CPU time of dead children. */ 46 dead children (and their dead children) in BUFFER.
|
/external/llvm/test/CodeGen/AArch64/ |
arm64-dead-register-def-bug.ll | 3 ; Check that the dead register definition pass is considering implicit defs. 5 ; with dead defs, but live implicit-defs of subregs: 6 ; E.g. %X1<def, dead> = MOVi64imm 2, %W1<imp-def>; %X1:GPR64, %W1:GPR32
|
/external/llvm/test/CodeGen/PowerPC/ |
delete-node.ll | 3 ; The DAGCombiner leaves behind a dead node in this testcase. Currently 4 ; ISel is ignoring dead nodes, though it would be preferable for 5 ; DAGCombiner to be able to eliminate the dead node.
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
dead-code.js | 30 return a; // x is dead 36 return a; // x and y are both dead 43 return a; // z is dead 51 return a; // z is dead 60 return a; // z is dead
|
dead-code2.js | 30 return a; // x is dead 35 return a; // x and y are both dead 44 return a; // z is dead 54 return a; // z is dead 65 return a; // z and w are dead
|
/external/llvm/test/Transforms/GVN/ |
rle-must-alias.ll | 1 ; RUN: opt < %s -basicaa -gvn -S | grep "DEAD = phi i32 " 4 ; allows DEAD to be removed. This is PR3198. 6 ; The %7 and %4 loads combine to make %DEAD unneeded. 35 %DEAD = load i32* %9, align 4 ; <i32> [#uses=1] 36 ret i32 %DEAD
|
/external/clang/test/Analysis/ |
dead-stores.m | 40 // we don't warn about a dead store because 'nil' is assigned to 64 // Don't flag dead stores to assignments to self within a nested assignment. 80 // Don't flag dead stores when a variable is captured in a block used 115 __attribute__((objc_precise_lifetime)) id dead = test_objc_precise_lifetime_foo(); // no-warning 116 dead = 0; 117 dead = test_objc_precise_lifetime_foo(); // no-warning 118 dead = 0;
|
/external/llvm/lib/Transforms/IPO/ |
StripDeadPrototypes.cpp | 11 // dead declarations and removes them. Dead declarations are declarations of 23 #define DEBUG_TYPE "strip-dead-prototypes" 25 STATISTIC(NumDeadPrototypes, "Number of dead prototypes removed"); 42 INITIALIZE_PASS(StripDeadPrototypesPass, "strip-dead-prototypes", 48 // Erase dead function prototypes. 59 // Erase dead global var prototypes.
|
/frameworks/base/core/java/android/nfc/tech/ |
BasicTagTechnology.java | 65 Log.e(TAG, "NFC service dead", e); 88 Log.e(TAG, "NFC service dead", e); 111 Log.e(TAG, "NFC service dead", e); 125 Log.e(TAG, "NFC service dead", e); 137 Log.e(TAG, "NFC service dead", e); 154 Log.e(TAG, "NFC service dead", e);
|