HomeSort by relevance Sort by last modified time
    Searched refs:setfill (Results 51 - 72 of 72) sorted by null

1 23

  /external/deqp/modules/glshared/
glsLongStressCase.cpp 312 text << std::setw(2) << std::setfill('0') << d << ":"
313 << std::setw(2) << std::setfill('0') << h % 24 << ":"
314 << std::setw(2) << std::setfill('0') << m % 60 << ":"
315 << std::setw(2) << std::setfill('0') << secondsElapsed % 60;
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/
MachTask.cpp 294 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right
295 #define DECIMAL std::dec << std::setfill(' ')
    [all...]
  /external/stlport/test/unit/
fstream_test.cpp 218 of << "line " << setiosflags(ios_base::right) << setfill('0') << setw(2) << i << "\n";
751 out << setiosflags(ios_base::right) << setfill('*');
  /ndk/tests/device/test-gnustl-full/unit/
fstream_test.cpp 236 of << "line " << setiosflags(ios_base::right) << setfill('0') << setw(2) << i << "\n";
769 out << setiosflags(ios_base::right) << setfill('*');
  /ndk/tests/device/test-stlport/unit/
fstream_test.cpp 236 of << "line " << setiosflags(ios_base::right) << setfill('0') << setw(2) << i << "\n";
769 out << setiosflags(ios_base::right) << setfill('*');
  /external/lldb/tools/debugserver/source/
RNBRemote.cpp 38 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right
52 #define STRING_WIDTH(w) std::setfill(' ') << std::setw(w)
53 #define LEFT_STRING_WIDTH(s, w) std::left << std::setfill(' ') << std::setw(w) << (s) << std::right
54 #define DECIMAL std::dec << std::setfill(' ')
56 #define FLOAT(n, d) std::setfill(' ') << std::setw((n)+(d)+1) << std::setprecision(d) << std::showpoint << std::fixed
57 #define INDENT_WITH_SPACES(iword_idx) std::setfill(' ') << std::setw((iword_idx)) << ""
58 #define INDENT_WITH_TABS(iword_idx) std::setfill('\t') << std::setw((iword_idx)) << ""
    [all...]
  /external/chromium_org/base/
logging.cc 672 stream_ << std::setfill('0')
  /external/jsoncpp/src/lib_json/
json_writer.cpp 170 oss << "\\u" << std::hex << std::uppercase << std::setfill('0') << std::setw(4) << static_cast<int>(*c);
  /external/chromium_org/third_party/icu/source/tools/tzcode/
tz2icu.cpp     [all...]
  /external/icu/icu4c/source/tools/tzcode/
tz2icu.cpp     [all...]
  /external/oprofile/libpp/
format_output.cpp 61 out << hex << setw(width) << setfill('0') << vma;