OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FormatSpeed
(Results
1 - 4
of
4
) 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_BASE_EXPORT base::string16
FormatSpeed
(int64 bytes);
39
// use FormatBytes()/
FormatSpeed
() above.
51
// Ex:
FormatSpeed
(512, DATA_UNITS_KIBIBYTE, true) => "0.5 kB/s"
52
// Ex:
FormatSpeed
(10*1024, DATA_UNITS_MEBIBYTE, false) => "0.1"
bytes_formatting.cc
110
base::string16
FormatSpeed
(int64 bytes) {
/external/chromium_org/chrome/browser/download/
download_item_model.cc
333
base::string16 speed_text = ui::
FormatSpeed
(current_speed);