/frameworks/base/services/core/java/com/android/server/media/ |
MediaSessionRecord.java | 535 Log.w(TAG, "Removed dead callback in pushPlaybackStateUpdate.", e); 553 Log.w(TAG, "Removing dead callback in pushMetadataUpdate. ", e); 573 Log.w(TAG, "Removed dead callback in pushQueueUpdate.", e); 592 Log.w(TAG, "Removed dead callback in pushQueueTitleUpdate.", e); 611 Log.w(TAG, "Removed dead callback in pushExtrasUpdate.", e); 630 Log.w(TAG, "Removing dead callback in pushVolumeUpdate. ", e); 648 Log.w(TAG, "Removing dead callback in pushEvent.", e); 669 Log.w(TAG, "Removing dead callback in pushEvent.", e); [all...] |
/packages/apps/PackageInstaller/src/com/android/packageinstaller/ |
UninstallerActivity.java | 183 Log.e(TAG, "Unable to get packageName. Package manager is dead?"); 200 Log.e(TAG, "Unable to get className. Package manager is dead?");
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_peepholer.py | 197 # Eliminate dead code: jumps immediately after returns can't be reached 213 # Eliminate dead code: jumps immediately after returns can't be reached
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_peepholer.py | 197 # Eliminate dead code: jumps immediately after returns can't be reached 213 # Eliminate dead code: jumps immediately after returns can't be reached
|
/prebuilts/tools/common/proguard/proguard4.7/docs/manual/ |
optimizations.html | 148 <dd>Removes dead code based on control flow analysis and data flow 153 <dd>Removes dead code based on a simple control flow analysis.</dd>
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
SymbolManager.h | 265 /// dead-symbol sweeping AND their associated regions are still alive. 586 /// dead. 619 /// Otherwise, if the symbol cannot be proven live, it is marked as dead. 620 /// Returns true if the symbol is dead, false if live. 635 /// \brief Returns whether or not a symbol has been confirmed dead. 637 /// This should only be called once all marking of dead symbols has completed.
|
ExprEngine.h | 162 /// \brief Run the analyzer's garbage collection - remove dead symbols and 174 /// is dead. 177 /// all statements and local variables should be considered dead. 179 /// occur while removing the dead (e.g. leaks). By default, the 252 /// Remove dead bindings/symbols before exiting a function.
|
/external/llvm/include/llvm/CodeGen/ |
MachineFrameInfo.h | 89 // ~0ULL means a dead object. 412 "Getting frame offset for a dead object?"); 423 "Setting frame offset for a dead object?"); 514 /// a dead object. 533 /// RemoveStackObject - Remove or mark dead a statically sized stack object. 536 // Mark it dead.
|
/external/llvm/lib/CodeGen/ |
PHIElimination.cpp | 152 // Remove dead IMPLICIT_DEF instructions. 296 // any registers, or if the value itself is dead, we need to move this 300 // If the result is dead, update LV. 330 // A dead PHI's live range begins and ends at the start of the MBB, but 331 // the lowered copy, which will still be dead, needs to begin and end at 412 // really is dead at the PHI copy, there will be no successor blocks which
|
/external/eigen/Eigen/src/OrderingMethods/ |
Eigen_Colamd.h | 116 #define DEAD (-1) 129 #define KILL_ROW(r) { Row [r].shared2.mark = DEAD ; } 141 Index start ; /* index for A of first row in this column, or DEAD */ 142 /* if column is dead */ 149 /* the column is dead */ 154 Index order ; /* pivot ordering of this column, if col is dead */ 184 Index mark ; /* for computing set differences and marking dead rows*/ 770 /* skip any dead columns */ 816 /* Some "live" columns may contain only dead rows, however. These are */ 822 /* skip dead column * [all...] |
/external/clang/lib/Lex/ |
PPExpressions.cpp | 148 // Pass the MacroInfo for the macro name even if the value is dead. 477 // dead. Note that this cannot just clobber ValueLive. Consider 479 // this example, the RHS of the && being dead does not make the rest of the 480 // expr dead. 483 RHSIsLive = false; // RHS of "0 && x" is dead. 485 RHSIsLive = false; // RHS of "1 || x" is dead. 487 RHSIsLive = false; // RHS (x) of "0 ? x : y" is dead.
|
/external/llvm/include/llvm/Transforms/ |
Scalar.h | 45 // DeadInstElimination - This pass quickly removes trivially dead instructions 55 // their other instructions become dead, to eliminate chains of dead 70 // algorithm assumes instructions are dead until proven otherwise, which makes 71 // it more successful are removing non-obviously dead instructions. 103 // instructions dead, so a subsequent DCE pass is useful. 306 // can prove are dead.
|
/hardware/samsung_slsi/exynos5/mobicore/daemon/ClientLib/ |
ClientLib.cpp | 272 // TODO-2012-08-31-haenellu: improve check, if device connection is dead, this makes no more sense. 448 // LOG_E("Connection is dead, removing device."); 495 LOG_E("Connection is dead, removing device."); 531 LOG_E("Connection is dead, removing device."); 579 LOG_E("Connection is dead, removing device."); 780 // LOG_E("Connection is dead, removing device."); 855 LOG_E("Connection is dead, removing device.");
|
/external/llvm/lib/Transforms/IPO/ |
GlobalOpt.cpp | 196 // If Dead[n].first is the only use of a malloc result, we can delete its 197 // chain of computation and the store to the global in Dead[n].second. 198 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead; 211 Dead.push_back(std::make_pair(I, SI)); 219 Dead.push_back(std::make_pair(I, MSI)); 228 Dead.push_back(std::make_pair(I, MTI)); 239 Dead.clear(); 246 for (int i = 0, e = Dead.size(); i != e; ++i) { 247 if (IsSafeComputationToRemove(Dead[i].first, TLI)) { 248 Dead[i].second->eraseFromParent() [all...] |
/external/llvm/lib/Transforms/Scalar/ |
LoopIdiomRecognize.cpp | 124 /// Insert ctpop intrinsic function and some obviously dead instructions. 233 /// dead, delete them and the computation tree that feeds them. 245 // This instruction is dead, zap it, in stages. Start by removing it from 253 // If this operand just became dead, add it to the NowDeadInsts list. 266 /// deleteIfDeadInstruction - If the specified value is a dead instruction, 531 // function would be partial dead code, and downstream passes will drag 552 // - If the loop only counts population, the entire loop become dead after 553 // the transformation. It is lots easier to prove a countable loop dead 555 // isn't dead even if it computes nothing useful. In general, DCE needs [all...] |
EarlyCSE.cpp | 37 STATISTIC(NumDSE, "Number of trivial dead stores removed"); 414 /// to the same location, we delete the dead store. This zaps trivial dead 425 // Dead instructions should just be removed. 527 DEBUG(dbgs() << "EarlyCSE DEAD STORE: " << *LastStore << " due to: "
|
/docs/source.android.com/src/devices/tech/input/ |
key-character-map-files.jd | 235 <p>The system recognizes the following Unicode characters as combining diacritical dead 244 <p>When a dead key is typed followed by another character, the dead key and the following 245 characters are composed. For example, when the user types a grave accent dead 247 <p>Refer to <code>KeyCharacterMap.getDeadChar</code> for more information about dead key handling.</p>
|
/external/clang/include/clang/Analysis/ |
ProgramPoint.h | 145 /// \brief Is this a program point corresponding to purge/removal of dead 416 /// Represents a point after we ran remove dead bindings BEFORE 432 /// Represents a point after we ran remove dead bindings AFTER 590 /// - Run Remove dead bindings (to clean up the dead symbols from the callee).
|
/external/qemu/audio/ |
ossaudio.c | 745 int dead = hw->samples - live; local 755 if (!dead) { 759 if (hw->wpos + dead > hw->samples) { 761 bufs[1].len = (dead - (hw->samples - hw->wpos)) << hwshift; 764 bufs[0].len = dead << hwshift;
|
/system/core/liblog/ |
fake_log_device.c | 40 #define kMaxTagLen 16 /* from the long-dead utils/Log.cpp */ 50 /* from the long-dead utils/Log.cpp */ 198 * This is based on the the long-dead utils/Log.cpp code. 276 * Taken from the long-dead utils/Log.cpp 350 * Log format parsing taken from the long-dead utils/Log.cpp.
|
/external/clang/test/Analysis/ |
objc-arc.m | 117 // Test that dead store checking works in the prescence of "cleanups" in the AST. 587 // CHECK-NEXT: <key>category</key><string>Dead store</string> 588 // CHECK-NEXT: <key>type</key><string>Dead initialization</string> 645 // CHECK-NEXT: <key>category</key><string>Dead store</string> 646 // CHECK-NEXT: <key>type</key><string>Dead initialization</string> 703 // CHECK-NEXT: <key>category</key><string>Dead store</string> 704 // CHECK-NEXT: <key>type</key><string>Dead initialization</string> 761 // CHECK-NEXT: <key>category</key><string>Dead store</string> 762 // CHECK-NEXT: <key>type</key><string>Dead initialization</string> [all...] |
/external/qemu/tcg/ |
tcg.c | [all...] |
/external/chromium_org/third_party/webrtc/modules/video_processing/main/source/ |
deflickering.cc | 30 // Dead-zone region in terms of pixel values 332 // Count zero crossings with a dead zone to be robust against noise. If the 336 int32_t numZeros = 0; // Number of zeros that cross the dead-zone.
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_stoptheworld_linux_libcdep.cc | 101 // Either the thread is dead, or something prevented us from attaching. 134 // Either the thread is dead, or we are already detached. 223 // Check if parent is already dead.
|
/external/llvm/docs/ |
LinkTimeOptimization.rst | 172 content of input LLVM bitcode files. If dead code stripping is enabled then the 193 more. If dead code stripping is enabled then the linker refreshes the live 194 symbol information appropriately and performs dead code stripping.
|