Home | History | Annotate | Download | only in src

Lines Matching refs:Format

217     "A format (currently must be \"xml\"), optionally followed "
373 // Returns the output format, or "" for normal printed output.
465 const String& full_name = String::Format("%s.%s",
801 return c_str ? String::Format("\"%s\"", c_str) : String("(null)");
931 return String::Format("'%s' (%u, 0x%X)",
932 ch ? String::Format("%c", ch).c_str() : "\\0",
1372 const DWORD kBufSize = 4096; // String::Format can't exceed this length.
1389 const String error_hex(String::Format("0x%08X ", hr));
1476 // The longest string String::Format can produce when invoked
1482 str, String::Format("(Invalid Unicode 0x%X)", code_point).c_str(), 32);
1483 str[31] = '\0'; // Makes sure no change in the format to strncpy leaves
1562 return String::Format("L\"%s\"",
1713 // Formats a list of arguments to a String, using the same format
1720 // If 4096 characters are not enough to format the input, or if
1723 String String::Format(const char * format, ...) {
1725 va_start(args, format);
1735 const int size = vsnprintf(buffer, kBufferSize, format, args);
1738 const int size = vsnprintf(buffer, kBufferSize, format, args);
2477 return internal::String::Format("%d %s", count,
3138 m << String::Format("&#x%02X;", unsigned(*src));
3233 const String message = RemoveInvalidXmlCharacters(String::Format(
3819 printf("WARNING: unrecognized output format \"%s\" ignored.\n",
4370 // the format "--flag=value". When def_optional is true, the "=value"
4381 const String flag_str = String::Format("--%s%s", GTEST_FLAG_PREFIX_, flag);