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

12 3 4

  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxePrintLibPrint2Protocol/
PrintLib.c 230 The Unicode string is produced by parsing the format string specified by FormatString.
239 If BufferSize > 1 and FormatString is NULL, then ASSERT().
240 If BufferSize > 1 and FormatString is not aligned on a 16-bit boundary, then ASSERT().
241 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
251 @param FormatString Null-terminated Unicode format string.
263 IN CONST CHAR16 *FormatString,
271 (CHAR8 *)FormatString,
277 return UnicodeBSPrint (StartOfBuffer, BufferSize, FormatString, (BASE_LIST)BaseListMarker);
286 The Unicode string is produced by parsing the format string specified by FormatString.
295 If BufferSize > 1 and FormatString is NULL, then ASSERT().
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDriver1CommandsLib/
DevTree.c 48 CHAR16 *FormatString;
94 FormatString = AllocateZeroPool(StrSize(HiiString) + (10)*sizeof(FormatString[0]));
97 ASSERT(FormatString != NULL);
105 UnicodeSPrint(FormatString, StrSize(HiiString) + (10)*sizeof(FormatString[0]), L"%%%ds %s", IndentCharCount, HiiString);
113 FormatString,
118 FreePool(FormatString);
Drivers.c 193 CHAR16 *FormatString;
202 FormatString = NULL;
246 FormatString = HiiGetString (gShellDriver1HiiHandle, STRING_TOKEN (STR_DRIVERS_ITEM_LINE_SFO), Language);
258 FormatString = HiiGetString (gShellDriver1HiiHandle, STRING_TOKEN (STR_DRIVERS_ITEM_LINE), Language);
291 FormatString,
317 SHELL_FREE_NON_NULL(FormatString);
  /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,
XenStore.c     [all...]
  /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);
  /external/libcxx/utils/google-benchmark/src/
console_reporter.cc 49 FormatString("%-*s %13s %13s %10s\n", static_cast<int>(name_field_width_),
64 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 21 -Xep:FormatString:ERROR \
  /device/linaro/bootloader/edk2/MdePkg/Library/BasePrintLib/
PrintLibInternal.h 108 @param FormatString Null-terminated format string.
120 IN CONST CHAR8 *FormatString,
  /external/clang/include/clang/Basic/
DiagnosticIDs.h 140 unsigned getCustomDiagID(Level L, StringRef FormatString);
  /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 
  /tools/tradefederation/core/
error_prone_rules.mk 22 -Xep:FormatString:ERROR \
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
DiagnosticIDs.h 164 unsigned getCustomDiagID(Level L, StringRef FormatString);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
DiagnosticIDs.h 164 unsigned getCustomDiagID(Level L, StringRef FormatString);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
DiagnosticIDs.h 164 unsigned getCustomDiagID(Level L, StringRef FormatString);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
DiagnosticIDs.h 164 unsigned getCustomDiagID(Level L, StringRef FormatString);

Completed in 610 milliseconds

12 3 4