HomeSort by relevance Sort by last modified time
    Searched refs:_log (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/webkit/Tools/Scripts/webkitpy/style/
main.py 30 _log = logging.getLogger(__name__) variable
89 _log.warn("WebKit checkout root not found:\n"
108 _log.warn(
127 _log.debug("Changing to checkout root: " + checkout_root)
patchreader.py 36 _log = logging.getLogger("webkitpy.style.patchreader") variable
57 _log.debug('Found %s new or modified lines in: %s' % (len(line_numbers), path))
filereader.py 39 _log = logging.getLogger(__name__) variable
112 _log.error("File does not exist: '%s'" % file_path)
116 _log.debug("Skipping file: '%s'" % file_path)
118 _log.debug("Processing file: '%s'" % file_path)
125 _log.warn(message)
main_unittest.py 56 self._log = LogTesting.setUp(self)
60 self._log.tearDown()
72 self._log.assertMessages(expected_log_messages)
78 self._log.assertMessages([])
  /development/tools/axl/
log.py 38 def _log(self, *logstrs): member in class:Log
45 self._log("D", *logstrs)
47 self._log("I", *logstrs)
49 self._log("W", *logstrs)
51 self._log("E", *logstrs)
  /external/webkit/Tools/Scripts/
check-webkit-style 58 _log = logging.getLogger("check-webkit-style") variable
87 _log.debug("Verbose logging enabled.")
96 _log.error("WebKit checkout not found: You must run this script "
102 _log.debug("WebKit checkout not found for current directory.")
105 _log.debug("WebKit checkout found with root: %s" % checkout_root)
127 _log.info("Total errors found: %d in %d files"
test-webkitpy 43 _log = logging.getLogger("test-webkitpy") variable
109 _log.info("Suppressing most webkitpy logging while running unit tests.")
123 _log.debug("Cleaning orphaned *.pyc files from: %s" % dir_to_clean)
133 _log.info("Deleting orphan *.pyc file: %s" % file_path)
189 _log.debug("Verbose WebKit logging enabled.")
217 versioning.check_version(log=_log)
227 _log.warn(message)
245 _log.warn(message)
webkit-patch 42 _log = logging.getLogger("webkit-patch") variable
57 _log.fatal("webkit-patch is only supported under Cygwin Python, "
check-inspector-strings 46 _log = logging.getLogger("check-inspector-strings") variable
95 _log.error("WebKit checkout not found: You must run this script "
99 _log.debug("WebKit checkout found with root: %s" % checkout_root)
113 _log.info("New: \"%s\"" % (s))
117 _log.info("Suspicious: \"%s\"" % (s))
120 _log.info("Unused: \"%s\"" % (s))
125 _log.info("Duplicate: \"%s\"" % (s))
  /external/webkit/Tools/Scripts/webkitpy/common/system/
logutils_unittest.py 82 self._log = logger
92 logger = self._log
109 self._log.info("test message")
117 self._log.log(level, "test message")
121 self._log.info("message1")
122 self._log.info("message2")
137 self._log.log(self._level, "test message")
141 self._log.log(self._level - 1, "test message")
autoinstall.py 49 _log = logging.getLogger(__name__) variable
105 log_method = _log.debug
113 log = _log.debug
127 _log.debug("Creating file...")
128 _log.debug(' "%s"' % path)
212 _log.debug('Checking %s URL downloaded...' % target_name)
213 _log.debug(' "%s"' % version_path)
217 _log.debug("No URL file found.")
228 _log.debug("Recording URL downloaded...")
229 _log.debug(' URL: "%s"' % url
    [all...]
file_lock.py 35 _log = logging.getLogger("webkitpy.common.system.file_lock") variable
70 _log.debug("File locking failed: %s" % str(sys.exc_info()))
83 _log.debug("Warning in release lock: %s" % str(sys.exc_info()))
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
rebaseline_chromium_webkit_tests.py 63 _log = logging.getLogger(__name__) variable
94 _log.error(msg)
96 _log.warn(msg)
98 _log.info(msg)
114 _log.info('Html directory: "%s"', html_directory)
118 _log.info('Deleted html directory: "%s"', html_directory)
142 _log.debug(' Result file full path: "%s".', fullpath)
196 _log.info('')
198 _log.error('No archive found.')
211 _log.warning('NOT ALL TESTS THAT NEED REBASELINING HAVE BEEN REBASELINED.'
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
http_server_base.py 39 _log = logging.getLogger("webkitpy.layout_tests.port.http_server_base") variable
54 _log.debug("Waiting for action: %s" % action)
71 _log.debug("Server running at %s" % url)
73 _log.debug("Server NOT running at %s: %s" % (url, e))
http_lock.py 43 _log = logging.getLogger("webkitpy.layout_tests.port.http_lock") variable
64 _log.debug("Removing lock file: %s" % self._process_lock_file_name)
96 _log.debug("Removing stuck lock file: %s" % lock_list[0])
108 _log.debug("Lock directory does not exist: %s" % self._lock_path)
112 _log.debug("Guard lock timed out!")
117 _log.debug("Creating lock file: %s" % self._process_lock_file_name)
129 _log.debug("Warning, http locking failed!")
chromium_linux.py 38 _log = logging.getLogger("webkitpy.layout_tests.port.chromium_linux") variable
86 _log.warning('Could not determine architecture from "file" output: %s' % file_output)
113 _log.error('For complete Linux build requirements, please see:')
114 _log.error('')
115 _log.error(' http://code.google.com/p/chromium/wiki/'
144 _log.error(' Please install using: "sudo apt-get install '
146 _log.error('')
157 _log.error(' Please install using: "sudo apt-get install '
159 _log.error('')
165 _log.error(' Please install using: "sudo apt-get install
    [all...]
config.py 39 _log = logutils.get_logger(__file__) variable
96 _log.error("Failed to build DumpRenderTree")
110 _log.warn("Configuration \"%s\" is not a recognized value.\n" %
112 _log.warn("Scripts may fail. "
  /external/webkit/Tools/Scripts/webkitpy/python24/
versioning.py 28 _log = logging.getLogger("webkitpy.python24.versioning") variable
118 log = _log
versioning_unittest.py 107 self._log = LogTesting.setUp(self)
110 self._log.tearDown()
121 self._log.assertMessages([]) # No warning was logged.
133 self._log.assertMessages([expected_message])
  /external/webkit/Tools/Scripts/webkitpy/test/
skip.py 25 _log = logging.getLogger(__name__) variable
32 logger = _log
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
confirmdiff.py 38 _log = logutils.get_logger(__file__) variable
62 _log.warning("PrettyPatch failed. :(")
64 _log.warning("PrettyPatch unavailable.")
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_runner2.py 46 _log = logging.getLogger(__name__) variable
90 _log.error('')
92 _log.error('')
167 _log.error('')
168 _log.error('Remaining workers are wedged, bailing out.')
169 _log.error('')
171 _log.debug('No wedged threads')
180 _log.info("Interrupted, exiting")
184 _log.info(e.reason)
189 _log.info("Exception raised, exiting"
    [all...]
worker_mixin.py 37 _log = logging.getLogger(__name__) variable
94 _log.debug('Acquiring http lock ...')
96 _log.debug('Starting HTTP server ...')
98 _log.debug('Starting WebSocket server ...')
104 _log.debug('Stopping HTTP server ...')
106 _log.debug('Stopping WebSocket server ...')
108 _log.debug('Releasing server lock ...')
137 _log.debug("%s %s failed:" % (self._name, test_name))
139 _log.debug("%s %s" % (self._name, f.message()))
141 _log.debug("%s %s passed" % (self._name, test_name)
    [all...]
worker.py 41 _log = logging.getLogger(__name__) variable
71 _log.debug("%s starting" % self._name)
83 _log.debug("%s done%s" % (self._name, exception_msg))
86 stack_utils.log_traceback(_log.error, exception_traceback)
  /external/emma/core/java12/com/vladium/logging/
Logger.java 184 _log (WARNING, null, msg, false); method
195 _log (INFO, null, msg, false); method
206 _log (VERBOSE, null, msg, false); method
218 _log (TRACE1, method, msg, true); method
229 _log (TRACE2, method, msg, true); method
240 _log (TRACE3, method, msg, true); method
252 _log (level, null, msg, logCaller); method
265 _log (level, method, msg, logCaller); method
279 _log (level, null, msg, throwable); method
294 _log (level, method, msg, throwable) method
439 private void _log (final int level, final String method, method in class:Logger
487 private void _log (final int level, final String method, method in class:Logger
    [all...]

Completed in 590 milliseconds

1 2 3