HomeSort by relevance Sort by last modified time
    Searched refs:FormattedTime (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/base/
profiler.cc 36 // When written to an ostream, FormattedTime chooses an appropriate scale and
38 class FormattedTime {
40 explicit FormattedTime(double t) : time_(t) {}
46 std::ostream& operator<<(std::ostream& stream, const FormattedTime& time) {
195 << " total=" << FormattedTime(profiler_event.total_time())
196 << " mean=" << FormattedTime(profiler_event.mean())
197 << " min=" << FormattedTime(profiler_event.minimum())
198 << " max=" << FormattedTime(profiler_event.maximum())
  /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/smack/src/org/xbill/DNS/
SIGBase.java 76 expire = FormattedTime.parse(st.getString());
77 timeSigned = FormattedTime.parse(st.getString());
97 sb.append (FormattedTime.format(expire));
99 sb.append (FormattedTime.format(timeSigned));
FormattedTime.java 14 final class FormattedTime {
28 FormattedTime() {}
TKEYRecord.java 124 sb.append(FormattedTime.format(timeInception));
126 sb.append(FormattedTime.format(timeExpire));
  /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 205 milliseconds