HomeSort by relevance Sort by last modified time
    Searched defs:NumToString (Results 1 - 2 of 2) sorted by null

  /external/flatbuffers/include/flatbuffers/
util.h 51 template<typename T> std::string NumToString(T t) {
57 template<> inline std::string NumToString<signed char>(signed char t) {
58 return NumToString(static_cast<int>(t));
60 template<> inline std::string NumToString<unsigned char>(unsigned char t) {
61 return NumToString(static_cast<int>(t));
64 template <> inline std::string NumToString<long long>(long long t) {
70 template <> inline std::string NumToString<unsigned long long>(
79 template<> inline std::string NumToString<double>(double t) {
94 template<> inline std::string NumToString<float>(float t) {
95 return NumToString(static_cast<double>(t))
    [all...]
  /external/pdfium/xfa/fgas/crt/
cfgas_formatstring.cpp 557 WideString NumToString(size_t fmt_size, int32_t value) {
591 wsResult += NumToString(symbol.GetLength(), day);
597 wsResult += NumToString(symbol.GetLength(), nDays);
599 wsResult += NumToString(symbol.GetLength(), month);
604 wsResult += NumToString(
612 wsResult += NumToString(2, year % 100);
614 wsResult += NumToString(1, year);
616 wsResult += NumToString(1, GetWeekOfMonth(year, month, day));
618 wsResult += NumToString(2, GetWeekOfYear(year, month, day));
663 wsResult += NumToString(symbol.GetLength(), wHour == 0 ? 12 : wHour)
    [all...]

Completed in 154 milliseconds