Home
last modified time | relevance | path

Searched refs:FormatStr (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
Dstring_cast.inl185 std::string FormatStr(detail::format("%svec1(%s)", local
189 return detail::format(FormatStr.c_str(), x[0]);
200 std::string FormatStr(detail::format("%svec2(%s, %s)", local
204 return detail::format(FormatStr.c_str(), x[0], x[1]);
215 std::string FormatStr(detail::format("%svec3(%s, %s, %s)", local
219 return detail::format(FormatStr.c_str(), x[0], x[1], x[2]);
230 std::string FormatStr(detail::format("%svec4(%s, %s, %s, %s)", local
234 return detail::format(FormatStr.c_str(), x[0], x[1], x[2], x[3]);
246 std::string FormatStr(detail::format("%smat2x2((%s, %s), (%s, %s))", local
251 return detail::format(FormatStr.c_str(),
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/
DRemarkFormat.cpp20 Expected<Format> llvm::remarks::parseFormat(StringRef FormatStr) { in parseFormat() argument
21 auto Result = StringSwitch<Format>(FormatStr) in parseFormat()
30 FormatStr.data()); in parseFormat()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp2377 StringRef FormatStr; in optimizePrintFString() local
2378 if (!getConstantStringInfo(CI->getArgOperand(0), FormatStr)) in optimizePrintFString()
2382 if (FormatStr.empty()) // Tolerate printf's declared void. in optimizePrintFString()
2392 if (FormatStr.size() == 1 || FormatStr == "%%") in optimizePrintFString()
2393 return emitPutChar(B.getInt32(FormatStr[0]), B, TLI); in optimizePrintFString()
2396 if (FormatStr == "%s" && CI->getNumArgOperands() > 1) { in optimizePrintFString()
2406 if (FormatStr[FormatStr.size() - 1] == '\n' && in optimizePrintFString()
2407 FormatStr.find('%') == StringRef::npos) { // No format characters. in optimizePrintFString()
2410 FormatStr = FormatStr.drop_back(); in optimizePrintFString()
2411 Value *GV = B.CreateGlobalString(FormatStr, "str"); in optimizePrintFString()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DLaneBitmask.h43 constexpr static const char *const FormatStr = "%08X"; member
95 OS << format(LaneBitmask::FormatStr, LaneMask.getAsInteger()); in PrintLaneMask()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Remarks/
DRemarkFormat.h28 Expected<Format> parseFormat(StringRef FormatStr);