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

  /external/chromium_org/ui/base/text/
bytes_formatting.h 22 // Ex: FormatSpeed(512) => "512 B/s"
23 // Ex: FormatSpeed(101479) => "99.1 kB/s"
24 UI_EXPORT string16 FormatSpeed(int64 bytes);
39 // use FormatBytes()/FormatSpeed() above.
50 // Ex: FormatSpeed(512, DATA_UNITS_KIBIBYTE, true) => "0.5 kB/s"
51 // Ex: FormatSpeed(10*1024, DATA_UNITS_MEBIBYTE, false) => "0.1"
bytes_formatting.cc 106 string16 FormatSpeed(int64 bytes) {
  /external/chromium_org/chrome/browser/download/
download_util.cc 223 string16 speed_text = ui::FormatSpeed(current_speed);
  /external/chromium/base/
string_util.h 435 // Ex: FormatSpeed(512, DATA_UNITS_KIBIBYTE, true) => "0.5 KB/s"
436 // Ex: FormatSpeed(10*1024, DATA_UNITS_MEBIBYTE, false) => "0.1"
437 BASE_API string16 FormatSpeed(int64 bytes, DataUnits units, bool show_units);
string_util.cc 704 string16 FormatSpeed(int64 bytes, DataUnits units, bool show_units) {
    [all...]
  /external/chromium/chrome/browser/download/
download_util.cc 702 string16 speed_text = FormatSpeed(current_speed, amount_units, true);
    [all...]
  /external/chromium/chrome/browser/task_manager/
task_manager.cc 127 string16 net_byte = FormatSpeed(net_usage, GetByteDisplayUnits(net_usage),
    [all...]
  /external/chromium_org/chrome/browser/task_manager/
task_manager.cc 424 string16 net_byte = ui::FormatSpeed(net_usage);
    [all...]

Completed in 132 milliseconds