/frameworks/base/media/java/android/media/ |
AudioManager.java | 832 Log.e(TAG, "Dead object in adjustStreamVolume", e); [all...] |
/frameworks/base/core/java/android/view/ |
KeyCharacterMap.java | 141 * key is a "dead key." 147 * a printable representation of the accent character of a "dead key." 151 /* Characters used to display placeholders for dead keys. */ 177 /* Legacy dead key display characters used in previous versions of the API. 186 * Maps Unicode combining diacritical to display-form dead key. 269 throw new IllegalStateException("Invalid dead key declaration."); 357 * key is a "dead key" that should be combined with another to 478 * Get the character that is produced by combining the dead key producing accent 489 // The same dead character typed twice or a dead character followed by [all...] |
/external/llvm/docs/ |
Passes.rst | 375 ``-adce``: Aggressive Dead Code Elimination 379 <passes-dce>` but it assumes that values are dead until proven otherwise. This 475 NOTE: this pass has a habit of making definitions be dead. It is a good idea 476 to run a :ref:`Dead Instruction Elimination <passes-die>` pass sometime after 481 ``-dce``: Dead Code Elimination 484 Dead code elimination is similar to :ref:`dead instruction elimination 486 instructions to see if they are newly dead. 488 ``-deadargelim``: Dead Argument Elimination 491 This pass deletes dead arguments from internal functions. Dead argumen [all...] |
/frameworks/base/core/java/android/app/ |
ActivityManager.java | 362 // System dead, we will be dead too soon! 372 // System dead, we will be dead too soon! 381 // System dead, we will be dead too soon! 391 // System dead, we will be dead too soon! 400 // System dead, we will be dead too soon [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
README | 20 optimizations. These include copy propagation, dead code elimination, 31 for example dead code elimination previously couldn't remove functions 129 A: Converting an IR tree to SSA form makes dead code elmimination, 143 dead code elimination wins, and recognizing common expressions may 207 shader's IR list, and the old context full of dead nodes is freed. 210 it becomes dead it doesn't live on as the child of a live node. At
|
opt_dead_code_local.cpp | 27 * Eliminates local dead assignments from the code. 207 /* Delete the dead assignment. */ 240 * the assignment list with the same LHS is dead.
|
/external/chromium_org/ui/base/ime/chromeos/ |
character_composer_unittest.cc | 160 // Composition with sequence ['dead acute', '1'] will fail. 164 // Composition with sequence ['dead acute', 'dead circumflex', '1'] will fail. 199 // Composition with sequence ['dead acute', 'dead circumflex', '1'] will fail. 219 // Even though sequence ['dead acute', 'a'] will compose 'a with acute',
|
/external/llvm/include/llvm/CodeGen/ |
LiveVariables.h | 12 // are immediately dead after the instruction (i.e., the instruction calculates 136 // register references are presumed dead across basic blocks. 141 // register references are presumed dead across basic blocks. 183 /// specified register, but that definition is dead. 232 /// register is dead after being used by the specified instruction. If 242 /// variable was marked dead at the specified instruction, false
|
/external/llvm/lib/Transforms/Utils/ |
SimplifyIndVar.cpp | 59 SmallVectorImpl<WeakVH> &Dead, IVUsers *IVU = nullptr) : 63 DeadInsts(Dead), 452 SmallVectorImpl<WeakVH> &Dead, IVVisitor *V) 455 SimplifyIndvar SIV(LI->getLoopFor(CurrIV->getParent()), SE, LPM, Dead); 463 SmallVectorImpl<WeakVH> &Dead) { 466 Changed |= simplifyUsersOfIV(cast<PHINode>(I), SE, LPM, Dead);
|
/external/llvm/test/Transforms/LICM/ |
sinking.ll | 121 %dead = getelementptr %Ty* @X2, i64 0, i32 0 122 %sunk2 = load i32* %dead 128 ; CHECK-NEXT: %dead.le = getelementptr %Ty* @X2, i64 0, i32 0 129 ; CHECK-NEXT: %sunk2.le = load i32* %dead.le 241 ; Should delete, not sink, dead instructions. 245 %dead = getelementptr %Ty* @X2, i64 0, i32 0
|
/external/mesa3d/src/glsl/ |
README | 20 optimizations. These include copy propagation, dead code elimination, 31 for example dead code elimination previously couldn't remove functions 129 A: Converting an IR tree to SSA form makes dead code elmimination, 143 dead code elimination wins, and recognizing common expressions may 207 shader's IR list, and the old context full of dead nodes is freed. 210 it becomes dead it doesn't live on as the child of a live node. At
|
opt_dead_code_local.cpp | 27 * Eliminates local dead assignments from the code. 207 /* Delete the dead assignment. */ 240 * the assignment list with the same LHS is dead.
|
/dalvik/dx/src/com/android/dx/ssa/back/ |
LivenessAnalyzer.java | 248 * the dead code remover has allowed through "dead-end phis" whose 250 * a the result of a dead-end phi might be assigned the same register
|
/external/chromium_org/base/process/ |
kill_mac.cc | 139 // The process is dead or dying. This won't block for long, if at 152 // The child is still alive, or is very freshly dead. Be sure by sending it 153 // a signal. This is safe even if it's freshly dead, because it will be a
|
/external/chromium_org/v8/src/compiler/ |
graph-builder.cc | 120 // Nothing to do if the other environment is dead. 123 // Resurrect a dead environment by copying the contents of the other one and 241 Node* dead_node = graph()->NewNode(common_->Dead());
|
graph-visualizer.cc | 83 // the dead nodes that use live nodes. We're probably not interested in 84 // dead nodes that only use other dead nodes.
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
DeadCodeRemover.java | 33 * A variation on Appel Algorithm 19.12 "Dead code elimination in SSA form". 55 * Process a method with the dead-code remver 78 * Runs the dead code remover.
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
LivenessAnalyzer.java | 249 * the dead code remover has allowed through "dead-end phis" whose 251 * a the result of a dead-end phi might be assigned the same register
|
/external/guava/guava-tests/test/com/google/common/eventbus/ |
EventBusTest.java | 130 assertEquals("One dead event should be delivered.", 1, events.size()); 131 assertEquals("The dead event should wrap the original event.", 144 assertEquals("The dead event must not be re-wrapped.",
|
/external/llvm/lib/Target/AArch64/ |
AArch64TargetMachine.cpp | 45 EnableDeadRegisterElimination("aarch64-dead-def-elimination", cl::Hidden, 46 cl::desc("Enable the pass that removes dead" 205 // Change dead register definitions to refer to the zero register.
|
/frameworks/base/core/java/android/nfc/tech/ |
IsoDep.java | 99 Log.e(TAG, "NFC service dead", e); 114 Log.e(TAG, "NFC service dead", e); 201 Log.e(TAG, "NFC service dead", e);
|
/frameworks/base/nfc-extras/java/com/android/nfc_extras/ |
NfcExecutionEnvironment.java | 172 throw new EeIOException("NFC Service was dead, try again"); 189 throw new IOException("NFC Service was dead"); 207 throw new IOException("NFC Service was dead, need to re-open");
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_urlparse.py | 350 ('http://[dead:beef::1]:5432/foo/', 'dead:beef::1', 5432), 351 ('http://[dead:beef::]:5432/foo/', 'dead:beef::', 5432), 352 ('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]:5432/foo/', 353 'dead:beef:cafe:5417:affe:8fa3:deaf:feed', 5432), 360 ('http://[dead:beef::1]/foo/', 'dead:beef::1', None), 361 ('http://[dead:beef::]/foo/', 'dead:beef::', None) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_urlparse.py | 350 ('http://[dead:beef::1]:5432/foo/', 'dead:beef::1', 5432), 351 ('http://[dead:beef::]:5432/foo/', 'dead:beef::', 5432), 352 ('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]:5432/foo/', 353 'dead:beef:cafe:5417:affe:8fa3:deaf:feed', 5432), 360 ('http://[dead:beef::1]/foo/', 'dead:beef::1', None), 361 ('http://[dead:beef::]/foo/', 'dead:beef::', None) [all...] |
/art/runtime/gc/space/ |
rosalloc_space-inl.h | 31 // Don't use verification since the object may be dead if we are sweeping.
|