HomeSort by relevance Sort by last modified time
    Searched refs:FormatString (Results 26 - 50 of 108) sorted by null

12 3 4 5

  /external/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";
console_reporter.cc 56 std::string str = FormatString("%-*s %13s %13s %10s", static_cast<int>(name_field_width_),
61 str += FormatString(" %10s", c.first.c_str());
97 out << FormatString(fmt, args);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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";
console_reporter.cc 56 FormatString("%-*s %13s %13s %10s\n", static_cast<int>(name_field_width_),
82 out << FormatString(fmt, args);
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxePrintLibPrint2Protocol/
PrintLib.c 232 The Unicode string is produced by parsing the format string specified by FormatString.
241 If BufferSize > 1 and FormatString is NULL, then ASSERT().
242 If BufferSize > 1 and FormatString is not aligned on a 16-bit boundary, then ASSERT().
243 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
253 @param FormatString Null-terminated Unicode format string.
265 IN CONST CHAR16 *FormatString,
274 (CHAR8 *)FormatString,
283 return UnicodeBSPrint (StartOfBuffer, BufferSize, FormatString, (BASE_LIST)BaseListMarker);
292 The Unicode string is produced by parsing the format string specified by FormatString.
301 If BufferSize > 1 and FormatString is NULL, then ASSERT().
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDriver1CommandsLib/
DevTree.c 47 CHAR16 *FormatString;
94 FormatString = AllocateZeroPool(StrSize(HiiString) + (10)*sizeof(FormatString[0]));
95 if (FormatString == NULL) {
105 UnicodeSPrint(FormatString, StrSize(HiiString) + (10)*sizeof(FormatString[0]), L"%%%ds %s", IndentCharCount, HiiString);
113 FormatString,
118 FreePool(FormatString);
Drivers.c 189 CHAR16 *FormatString;
198 FormatString = NULL;
242 FormatString = HiiGetString (gShellDriver1HiiHandle, STRING_TOKEN (STR_DRIVERS_ITEM_LINE_SFO), Language);
254 FormatString = HiiGetString (gShellDriver1HiiHandle, STRING_TOKEN (STR_DRIVERS_ITEM_LINE), Language);
287 FormatString,
313 SHELL_FREE_NON_NULL(FormatString);
  /test/framework/harnesses/host_controller/command_processor/
command_upload.py 40 def FormatString(self, format_string):
109 src_paths = self.FormatString(args.src)
122 dest_path = self.FormatString(args.dest)
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/
DebugLib.c 62 CHAR8 *FormatString;
114 FormatString = (CHAR8 *)((UINT64 *)(DebugInfo + 1) + 12);
120 // the FormatString buffer is the size of Buffer minus the Padding
125 AsciiStrCpyS (FormatString, DestBufferSize / sizeof (CHAR8), Format);
211 ASSERT ((CHAR8 *)BaseListMarker <= FormatString);
216 if ((CHAR8 *)BaseListMarker > FormatString) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/
DebugLib.c 61 CHAR8 *FormatString;
113 FormatString = (CHAR8 *)((UINT64 *)(DebugInfo + 1) + 12);
118 AsciiStrCpyS (FormatString, sizeof(Buffer) - (4 + sizeof(EFI_DEBUG_INFO) + 12 * sizeof(UINT64)), Format);
204 ASSERT ((CHAR8 *)BaseListMarker <= FormatString);
209 if ((CHAR8 *)BaseListMarker > FormatString) {
  /device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
XenStore.h 183 @param FormatString AsciiSPrint format string followed by a variable number
195 IN CONST CHAR8 *FormatString,
205 @param FormatString Printf format string.
216 IN CONST CHAR8 *FormatString,
352 IN CONST CHAR8 *FormatString,
  /external/google-benchmark/src/
console_reporter.cc 56 std::string str = FormatString("%-*s %13s %13s %10s", static_cast<int>(name_field_width_),
61 str += FormatString(" %10s", c.first.c_str());
97 out << FormatString(fmt, args);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePrintLib/
PrintLibInternal.h 104 @param FormatString Null-terminated format string.
114 IN CONST CHAR8 *FormatString,
  /external/clang/lib/ASTMatchers/Dynamic/
Diagnostics.cpp 132 static void formatErrorString(StringRef FormatString,
135 while (!FormatString.empty()) {
136 std::pair<StringRef, StringRef> Pieces = FormatString.split("$");
141 FormatString = Pieces.second.drop_front();
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/FrameworkUefiLib/
UefiLibPrint.c 723 If FormatString is NULL, then ASSERT().
724 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
727 @param[in] FormatString A Null-terminated Unicode format string.
738 IN CONST CHAR16 *FormatString,
748 CharactersRequired = SPrintLength(FormatString, ExtraMarker);
769 UnicodeVSPrint(BufferToReturn + StrLen(BufferToReturn), (CharactersRequired+1) * sizeof(CHAR16), FormatString, Marker);
786 If FormatString is NULL, then ASSERT().
787 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
790 @param[in] FormatString A Null-terminated Unicode format string.
793 FormatString.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiLib/
UefiLibPrint.c 723 If FormatString is NULL, then ASSERT().
724 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
727 @param[in] FormatString A Null-terminated Unicode format string.
738 IN CONST CHAR16 *FormatString,
748 CharactersRequired = SPrintLength(FormatString, ExtraMarker);
769 UnicodeVSPrint(BufferToReturn + StrLen(BufferToReturn), (CharactersRequired+1) * sizeof(CHAR16), FormatString, Marker);
786 If FormatString is NULL, then ASSERT().
787 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
790 @param[in] FormatString A Null-terminated Unicode format string.
793 FormatString.
    [all...]
  /cts/
error_prone_rules.mk 20 -Xep:FormatString:ERROR \
error_prone_rules_tests.mk 22 -Xep:FormatString:ERROR \
  /device/linaro/bootloader/edk2/MdePkg/Library/BasePrintLib/
PrintLibInternal.h 108 @param FormatString Null-terminated format string.
120 IN CONST CHAR8 *FormatString,
  /prebuilts/tools/common/m2/repository/com/google/errorprone/error_prone_annotations/2.0.12/
error_prone_annotations-2.0.12.jar 
  /external/clang/include/clang/Basic/
DiagnosticIDs.h 140 unsigned getCustomDiagID(Level L, StringRef FormatString);
  /external/error_prone/error_prone/
error_prone_annotations-2.2.0.jar 
  /prebuilts/devtools/tools/lib/
error_prone_annotations-2.0.18.jar 
  /prebuilts/misc/common/error_prone_annotations/
error_prone_annotations-2.0.18.jar 
  /prebuilts/tools/common/m2/repository/com/google/errorprone/error_prone_annotations/2.0.18/
error_prone_annotations-2.0.18.jar 

Completed in 1062 milliseconds

12 3 4 5