/external/webkit/Tools/Scripts/webkitpy/style/ |
main.py | 23 import logging namespace 30 _log = logging.getLogger(__name__)
|
/external/webkit/Tools/Scripts/webkitpy/test/ |
skip.py | 23 import logging namespace 25 _log = logging.getLogger(__name__)
|
skip_unittest.py | 24 import logging namespace 32 self.logger = logging.getLogger(__name__) 35 self.logger.setLevel(logging.INFO) 41 self.handler = logging.StreamHandler(self.log_stream)
|
/libcore/luni/src/test/java/libcore/java/util/logging/ |
OldLevelTest.java | 18 package libcore.java.util.logging; 21 import java.util.logging.Level; 27 String bundleName = "bundles/java/util/logging/res";
|
OldLogRecordTest.java | 18 package libcore.java.util.logging; 20 import java.util.logging.Level; 21 import java.util.logging.LogRecord;
|
/external/apache-http/src/org/apache/commons/logging/ |
LogConfigurationException.java | 17 package org.apache.commons.logging;
|
/external/chromium/chrome/common/ |
logging_chrome.h | 12 #include "base/logging.h" 21 namespace logging { namespace 23 // Call to initialize logging for Chrome. This sets up the chrome-specific 43 // Redirects chrome logging to the appropriate session log dir. 47 // Call when done using logging for Chrome. 69 } // namespace logging
|
nacl_cmd_line.cc | 14 if (logging::DialogsAreSuppressed())
|
/external/emma/core/java12/com/vladium/logging/ |
ILogLevels.java | 9 package com.vladium.logging; 47 /** setting log level to NONE disables all logging */
|
/frameworks/base/tests/CoreTests/android/core/ |
MiscRegressionTest.java | 20 import java.util.logging.Logger; 29 Logger.global.severe("This has logging Level.SEVERE, should become ERROR"); 30 Logger.global.warning("This has logging Level.WARNING, should become WARN"); 31 Logger.global.info("This has logging Level.INFO, should become INFO"); 32 Logger.global.config("This has logging Level.CONFIG, should become DEBUG"); 33 Logger.global.fine("This has logging Level.FINE, should become VERBOSE"); 34 Logger.global.finer("This has logging Level.FINER, should become VERBOSE"); 35 Logger.global.finest("This has logging Level.FINEST, should become VERBOSE");
|
/external/guava/guava-tests/test/com/google/common/testing/ |
TestLogHandlerTest.java | 21 import java.util.logging.Level; 22 import java.util.logging.LogRecord; 23 import java.util.logging.Logger; 64 // Tests for the absence of a bug where logging while iterating over the
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/ |
update_webgl_conformance_tests.py | 29 import logging namespace 36 _log = logging.getLogger("webkitpy.layout_tests." 110 """Configures the logging system.""" 113 log_level = logging.INFO 117 log_level = logging.DEBUG 118 logging.basicConfig(level=log_level, format=log_fmt, 128 help='include debug-level logging')
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
SimpleFormatterTest.java | 18 package org.apache.harmony.logging.tests.java.util.logging; 22 import java.util.logging.Level; 23 import java.util.logging.LogRecord; 24 import java.util.logging.SimpleFormatter; 60 .getBundle("bundles/java/util/logging/res"); 69 lr.setResourceBundleName("bundles/java/util/logging/res");
|
MemoryHandlerTest.java | 18 package org.apache.harmony.logging.tests.java.util.logging; 26 import java.util.logging.Filter; 27 import java.util.logging.Formatter; 28 import java.util.logging.Handler; 29 import java.util.logging.Level; 30 import java.util.logging.LogManager; 31 import java.util.logging.LogRecord; 32 import java.util.logging.LoggingPermission; 33 import java.util.logging.MemoryHandler [all...] |
/external/webkit/Tools/TestResultServer/model/ |
testfile.py | 30 import logging namespace 47 logging.warning("File not found, key: %s.", key) 54 logging.warning( 94 logging.info( 110 logging.info(
|
/external/chromium/base/test/ |
test_suite.cc | 15 #include "base/logging.h" 185 // Initialize logging. 189 logging::InitLogging( 191 logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG, 192 logging::LOCK_LOG_FILE, 193 logging::DELETE_OLD_LOG_FILE, 194 logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); 197 logging::SetLogItems(true, true, true, true); 211 logging::SetLogAssertHandler(UnitTestAssertHandler);
|
/external/chromium-trace/trace-viewer/third_party/python_gflags/ |
gflags2man.py | 82 class Logging: 83 """A super-simple logging class""" 90 logging = Logging() variable 145 # "goopy.logging:" 148 # " -v,--verbosity: Logging verbosity" 159 # " -v,--verbosity: Logging verbosity" 166 # " -v,--verbosity: Logging verbosity" 193 logging.error('Could not locate "%s"' % self.long_name) 199 logging.info('Running: %s %s </dev/null 2>&1 [all...] |
/external/chromium/net/tools/flip_server/ |
flip_in_mem_edsm_server.cc | 15 #include "base/logging.h" 230 g_proxy_config.log_destination_ = logging::LOG_ONLY_TO_FILE; 232 g_proxy_config.log_destination_ = logging::LOG_ONLY_TO_SYSTEM_DEBUG_LOG; 235 logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG; 237 LOG(FATAL) << "Invalid logging destination value: " << log_dest_value; 240 g_proxy_config.log_destination_ = logging::LOG_NONE; 245 if (g_proxy_config.log_destination_ == logging::LOG_NONE) { 246 g_proxy_config.log_destination_ = logging::LOG_ONLY_TO_FILE; 248 } else if (g_proxy_config.log_destination_ == logging::LOG_ONLY_TO_FILE || 250 logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG) [all...] |
/external/markdown/markdown/ |
commandline.py | 11 import logging namespace 12 from logging import DEBUG, INFO, WARN, ERROR, CRITICAL 90 # Parse options and adjust logging level if necessary 93 if logging_level: logging.getLogger('MARKDOWN').setLevel(logging_level)
|
/external/chromium/base/ |
vlog.h | 17 namespace logging { namespace 24 // |v_switch| gives the default maximal active V-logging level; 0 is 25 // the default. Normally positive values are used for V-logging 28 // |vmodule_switch| gives the per-module maximal V-logging levels to 30 // E.g. "my_module=2,foo*=3" would change the logging level for all 40 // "*/foo/bar/*=2" would change the logging level for all code in 77 } // namespace logging
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/ |
Version.java | 6 import java.util.logging.Logger;
|
/external/sepolicy/tools/ |
insertkeys.py | 6 import logging namespace 82 logging.info("Skipping " + tag + " : " + option + 136 logging.info("Replacing " + name + " " + value + " with " + key) 199 logging.basicConfig(level=logging.INFO if options.verbose == True else logging.WARN) 208 logging.info("Setting output file to: " + options.output_file) 212 logging.info("Generate key map:") 214 logging.info(k + " : " + str(key_map[k]))
|
/external/webkit/Tools/Scripts/webkitpy/style/checkers/ |
test_expectations.py | 31 import logging namespace 40 _log = logging.getLogger("webkitpy.style.checkers.test_expectations") 80 log = logging.getLogger("webkitpy.layout_tests.layout_package." 82 log.setLevel(logging.CRITICAL)
|
/libcore/luni/src/main/java/java/util/logging/ |
ErrorManager.java | 18 package java.util.logging; 22 * error that may happen during logging. {@code Handlers} should report errors
|
/external/chromium/chrome/common/extensions/docs/server/ |
chromeextensionsdocs.py | 7 import logging namespace 65 logging.info("Cache miss: " + path) 72 logging.info("Path: " + self.request.path) 73 logging.info("Url: " + url) 77 logging.error("urlfetch failed: " + url) 80 logging.error("urlfetch failed: " + url) 84 logging.error("Memcache set failed.") 86 logging.error("Memcache set failed.") 171 logging.error("urlfetch failed.") 176 logging.error("Version number not found: " + result.content [all...] |