/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
spawn.py | 15 from distutils import log namespace 65 log.info(' '.join([executable] + cmd[1:])) 84 log.info(' '.join([executable] + cmd[1:])) 95 log.debug("command '%s' failed with exit status %d" % (cmd[0], rc)) 105 log.info(' '.join(cmd))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/ |
stats.py | 6 import hotshot.log namespace 8 from hotshot.log import ENTER, EXIT 27 log = hotshot.log.LogReader(self._logfn) 29 for event in log:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
clean.py | 12 from distutils import log namespace 57 log.debug("'%s' does not exist -- can't clean it", 68 log.warn("'%s' does not exist -- can't clean it", 76 log.info("removing '%s'", self.build_base)
|
install_egg_info.py | 8 from distutils import log, dir_util namespace 41 log.info("Writing %s", target)
|
install_scripts.py | 12 from distutils import log namespace 52 log.info("changing mode of %s", file) 55 log.info("changing mode of %s to %o", file, mode)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
dir_util.py | 10 from distutils import log namespace 68 log.info("creating %s", head) 154 log.info("linking %s -> %s", dst_name, link_dest) 192 log.info("removing '%s' (and everything under it)", directory) 205 log.warn(grok_environment_error(
|
spawn.py | 15 from distutils import log namespace 65 log.info(' '.join([executable] + cmd[1:])) 84 log.info(' '.join([executable] + cmd[1:])) 95 log.debug("command '%s' failed with exit status %d" % (cmd[0], rc)) 105 log.info(' '.join(cmd))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/ |
stats.py | 6 import hotshot.log namespace 8 from hotshot.log import ENTER, EXIT 27 log = hotshot.log.LogReader(self._logfn) 29 for event in log:
|
/system/security/keystore/ |
test-keystore | 20 log_file=$prefix.log 28 function log() { function 61 log "comparing $baseline_file and $log_file" 62 diff $baseline_file $log_file || (log $tag FAILED && exit 1) 70 log "reset keystore as system user" 78 log "root does not have permission to run test" 82 log "but system user does" 87 log "password is now bar" 93 log "no error implies initialized and unlocked" 97 log "saw with no argument [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
CollectionSerializer.java | 59 log.log(Level.FINE, "[Serializer][???] Could not determine collection type. Using ArrayList.");
|
MapSerializer.java | 82 log.log(Level.WARNING, "[Serializer][???] Could not determine map type. Using HashMap.");
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
Main.java | 61 Log log = new Log(); local 66 if (!processArgs(log, args, osJarPath, osDestJar)) { 67 log.error("Usage: layoutlib_create [-v] [-p] output.jar input.jar ..."); 68 log.error("Usage: layoutlib_create [-v] [--list-deps|--missing-deps] input.jar ..."); 73 System.exit(listDeps(osJarPath, log)); 76 System.exit(createLayoutLib(osDestJar[0], osJarPath, log)); 83 private static int createLayoutLib(String osDestJar, ArrayList<String> osJarPath, Log log) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RefactoringUtil.java | 92 AdtPlugin.log(IStatus.INFO, AdtPlugin.PLUGIN_ID, message); 100 public static void log(Throwable e) { method in class:RefactoringUtil 101 AdtPlugin.log(e, e.getMessage());
|
/external/apache-http/src/org/apache/http/client/protocol/ |
ResponseProcessCookies.java | 37 import org.apache.commons.logging.Log; 64 private final Log log = LogFactory.getLog(getClass()); field in class:ResponseProcessCookies 83 this.log.info("Cookie store not available in HTTP context"); 90 this.log.info("CookieSpec not available in HTTP context"); 97 this.log.info("CookieOrigin not available in HTTP context"); 126 if (this.log.isDebugEnabled()) { 128 this.log.debug("Cookie accepted: \"" 133 if (this.log.isWarnEnabled()) { 135 this.log.warn("Cookie rejected: \" [all...] |
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
RefQueueWorker.java | 36 import org.apache.commons.logging.Log; 52 private final Log log = LogFactory.getLog(getClass()); field in class:RefQueueWorker 106 //@@@ only reason for having a log in this class 107 if (log.isDebugEnabled()) { 108 log.debug(this.toString() + " interrupted", e);
|
/external/ceres-solver/internal/ceres/ |
levenberg_marquardt_strategy_test.cc | 38 #include "gmock/mock-log.h" 146 ScopedMockLog log; local 147 EXPECT_CALL(log, Log(_, _, _)).Times(AnyNumber()); 148 EXPECT_CALL(log, Log(WARNING, _,
|
/external/chromium_org/build/android/ |
adb_gdb | 34 log "Killing background gdbserver process: $GDBSERVER_PID" 38 log "Removing target gdbserver binary: $TARGET_GDBSERVER." 41 log "Cleaning up: $TMPDIR" 61 log () { function 387 log "Auto-config: --arch=$TARGET_ARCH (equivalent to ia32)" 545 log "Auto-config: --toolchain=$ANDROID_TOOLCHAIN" 566 log "Host gdb client: $GDB" 579 log "Auto-config: --gdbserver=$GDBSERVER" 591 log "Auto-config: --adb=$ADB" 640 # Get last line in log, which contains the exit code from the comman [all...] |
/external/chromium_org/net/cert/ |
multi_log_ct_verifier_unittest.cc | 34 scoped_ptr<CTLogVerifier> log( 36 ASSERT_TRUE(log); variable 39 verifier_->AddLog(log.Pass()); 156 // Change a byte inside the Log ID part of the SCT so it does 157 // not match the log used in the tests
|
/external/chromium_org/third_party/WebKit/Tools/qunit/test/ |
logs.js | 9 log = 0, 37 QUnit.log = function(context) { 38 log++; 42 var logs = ["begin", "testStart", "testDone", "log", "moduleStart", "moduleDone", "done"]; 45 var log = logs[i], 46 logger = QUnit[log]; 47 QUnit[log] = function() { 48 console.log(log, arguments); 85 equal(log, 12) [all...] |
/external/chromium_org/third_party/leveldatabase/src/db/ |
log_writer.cc | 13 namespace log { namespace in namespace:leveldb 102 } // namespace log
|
/external/chromium_org/third_party/openssl/ |
import_from_android.sh | 51 log () { function 253 log "Temporary directory created: $TEMP_DIR" 255 log "Using user-provided temp directory: $TEMP_DIR" 283 log "Downloading branch $ANDROID_OPENSSL_GIT_COMMIT from: $ANDROID_OPENSSL_GIT_SOURCE"
|
/external/chromium_org/v8/tools/gcmole/ |
gcmole.lua | 74 function log(...) function 118 log("-- %s", filename) 280 log "** Propagating GC information" 301 log ("** Building GC Suspects for %s", arch) 322 log ("** GCSuspects generated for %s", arch) 349 log("** Searching for evaluation order problems%s for %s", 358 log("** Done processing %d files. %s",
|
/external/chromium_org/v8/tools/profviz/ |
worker.js | 39 function log(text) { function 40 self.postMessage({ "call" : "log", "args" : text }); 61 log(name + "..."); 64 log(" took " + (Date.now() - start) / 1000 + "s.\n"); 92 time("Reading log file (" + (file.size / 1024).toFixed(1) + " kB)",
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
TearDownStack.java | 67 TearDownStack.logger.log(Level.INFO,
|
/external/jmdns/src/javax/jmdns/impl/ |
SocketListener.java | 63 logger.log(Level.WARNING, this.getName() + ".run() exception ", e); 68 logger.log(Level.WARNING, this.getName() + ".run() exception ", e);
|