HomeSort by: relevance | last modified time | path
    Searched defs:FormatString (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
colorprint.cc 85 std::string FormatString(const char* msg, va_list args) {
113 std::string FormatString(const char* msg, ...) {
116 auto tmp = FormatString(msg, args);
153 if (color_code) out << FormatString("\033[0;3%sm", color_code);
154 out << FormatString(fmt, args) << "\033[m";
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
colorprint.cc 85 std::string FormatString(const char* msg, va_list args) {
113 std::string FormatString(const char* msg, ...) {
116 auto tmp = FormatString(msg, args);
153 if (color_code) out << FormatString("\033[0;3%sm", color_code);
154 out << FormatString(fmt, args) << "\033[m";
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_flag_parser.h 37 inline bool FormatString(char *buffer, uptr size, const char *str_to_use) {
79 return FormatString(buffer, size, *t_ ? "true" : "false");
112 return FormatString(buffer, size, *t_);
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_flag_parser.h 37 inline bool FormatString(char *buffer, uptr size, const char *str_to_use) {
79 return FormatString(buffer, size, *t_ ? "true" : "false");
112 return FormatString(buffer, size, *t_);
  /src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
Dwarf.cpp 790 StringRef llvm::dwarf::FormatString(DwarfFormat Format) {
800 StringRef llvm::dwarf::FormatString(bool IsDWARF64) {
801 return FormatString(IsDWARF64 ? DWARF64 : DWARF32);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 786 auto FormatString =
788 if (FormatString &&
789 FormatString->getString().find("%s") == StringRef::npos &&
790 FormatString->getString().find("%[") == StringRef::npos)
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprObjC.cpp 2567 StringLiteral *FormatString = OSL->getString();
2568 if (S.FormatStringHasSArg(FormatString)) {
SemaChecking.cpp 29 #include "clang/AST/FormatString.h"
4430 const StringLiteral *FormatString;
4433 FormatString = OSL->getString();
4435 FormatString = dyn_cast<StringLiteral>(FormatExpr->IgnoreParenImpCasts());
4436 if (!FormatString)
4438 if (S.FormatStringHasSArg(FormatString)) {

Completed in 44 milliseconds