OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FormattedTime
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/base/
profiler.cc
20
// When written to an ostream,
FormattedTime
chooses an appropriate scale and
22
class
FormattedTime
{
24
explicit
FormattedTime
(double t) : time_(t) {}
30
std::ostream& operator<<(std::ostream& stream, const
FormattedTime
& time) {
184
<< " total=" <<
FormattedTime
(profiler_event.total_time())
185
<< " mean=" <<
FormattedTime
(profiler_event.mean())
186
<< " min=" <<
FormattedTime
(profiler_event.minimum())
187
<< " max=" <<
FormattedTime
(profiler_event.maximum())
/external/llvm/tools/llvm-readobj/
COFFDumper.cpp
556
char
FormattedTime
[20] = { };
557
strftime(
FormattedTime
, 20, "%Y-%m-%d %H:%M:%S", gmtime(&TDS));
564
W.printHex ("TimeDateStamp",
FormattedTime
, Obj->getTimeDateStamp());
659
char
FormattedTime
[20] = {};
661
strftime(
FormattedTime
, 20, "%Y-%m-%d %H:%M:%S", gmtime(&TDS));
664
W.printHex("TimeDateStamp",
FormattedTime
, D.TimeDateStamp);
[
all
...]
Completed in 108 milliseconds