OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FormattedTime
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/webrtc/base/
profiler.cc
19
// When written to an ostream,
FormattedTime
chooses an appropriate scale and
21
class
FormattedTime
{
23
explicit
FormattedTime
(double t) : time_(t) {}
29
std::ostream& operator<<(std::ostream& stream, const
FormattedTime
& time) {
178
<< " total=" <<
FormattedTime
(profiler_event.total_time())
179
<< " mean=" <<
FormattedTime
(profiler_event.mean())
180
<< " min=" <<
FormattedTime
(profiler_event.minimum())
181
<< " max=" <<
FormattedTime
(profiler_event.maximum())
/external/llvm/tools/llvm-readobj/
COFFDumper.cpp
351
char
FormattedTime
[20] = { };
352
strftime(
FormattedTime
, 20, "%Y-%m-%d %H:%M:%S", gmtime(&TDS));
359
W.printHex ("TimeDateStamp",
FormattedTime
, COFFHeader->TimeDateStamp);
[
all
...]
Completed in 395 milliseconds