/toolchain/binutils/binutils-2.25/gold/ |
fileread.h | 485 enum Format 567 // Return the format of the unconverted input file. 568 Format 569 format() const function in class:gold::Input_file 605 // Format of unconverted input file. 606 Format format_;
|
/external/pdfium/fpdfsdk/javascript/ |
PublicMethods.cpp | 344 swTemp.Format(L"%d/%d/%d %d:%d:%d", nMonth, nDay, nYear, nHour, nMin, nSec); 349 const CFX_WideString& format, 353 if (format.IsEmpty() || value.IsEmpty()) 372 while (i < format.GetLength()) { 376 FX_WCHAR c = format.GetAt(i); 397 int remaining = format.GetLength() - i - 1; 399 if (remaining == 0 || format.GetAt(i + 1) != c) { 441 } else if (remaining == 1 || format.GetAt(i + 2) != c) { 485 } else if (remaining == 2 || format.GetAt(i + 3) != c) { 513 } else if (remaining == 3 || format.GetAt(i + 4) != c) [all...] |
/external/protobuf/gtest/include/gtest/internal/ |
gtest-internal.h | 312 // Format of IEEE floating-point: 566 return String::Format("%s:", file_name); 569 return String::Format("%s(%d):", file_name, line); 571 return String::Format("%s:%d:", file_name, line); 684 String::Format("%s%s%s/%d", prefix, prefix[0] == '\0' ? "" : "/", 687 String::Format("TypeParam = %s", GetTypeName<Type>().c_str()).c_str(), [all...] |
/external/fonttools/Lib/fontTools/ |
merge.py | 352 # TODO Handle format=14. 355 # TODO Better handle format-4 and format-12 coexisting in same font. 356 # TODO Insert both a format-4 and format-12 if needed. 358 assert all(t.format in [4, 12] for t,_ in cmapTables) 359 format = max(t.format for t,_ in cmapTables) 360 cmapTable = module.cmap_classes[format](format) [all...] |
/external/spirv-llvm/lib/SPIRV/libSPIRV/ |
SPIRVType.h | 346 SPIRVWord Format; 351 Desc.MS, Desc.Sampled), Desc.Format); 354 MS(0), Sampled(0), Format(0){} 357 Arrayed(Arr), MS(Comp), Sampled(Mult), Format(F){} 412 return Desc.Sampled == 0 && Desc.Format == 0; 438 Desc.Arrayed, Desc.MS, Desc.Sampled, Desc.Format, Acc) 449 assert(Desc.Format == 0); // For OCL only
|
/prebuilts/go/darwin-x86/src/time/ |
format_test.go | 29 if f.time.Format(RFC3339) != f.formattedValue { 32 t.Errorf(" have=%+v", f.time.Format(RFC3339)) 39 format string 70 result := time.Format(test.format) 80 test := FormatTest{"single digit format", "3:4:5", "4:5:6"} 81 result := time.Format(test.format) 104 result := time.Format("2006.01.02") 114 t.Errorf("(jan 1 %d).Format(\"2006.01.02\") = %q, want %q", y, result, want [all...] |
/prebuilts/go/linux-x86/src/time/ |
format_test.go | 29 if f.time.Format(RFC3339) != f.formattedValue { 32 t.Errorf(" have=%+v", f.time.Format(RFC3339)) 39 format string 70 result := time.Format(test.format) 80 test := FormatTest{"single digit format", "3:4:5", "4:5:6"} 81 result := time.Format(test.format) 104 result := time.Format("2006.01.02") 114 t.Errorf("(jan 1 %d).Format(\"2006.01.02\") = %q, want %q", y, result, want [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
d3d10_1.h | 254 DXGI_FORMAT Format; 517 DXGI_FORMAT Format, 665 DXGI_FORMAT Format); 714 DXGI_FORMAT *Format, 944 DXGI_FORMAT Format, 949 DXGI_FORMAT Format, [all...] |
dxva2api.h | 291 D3DFORMAT Format; [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
TestMessageFormat.java | 14 package android.icu.dev.test.format; 20 import java.text.Format; 108 errln("Number format creation failed for " + locale[i].getDisplayName()); 113 form.format(myNumber, buffer, pos); 118 errln("Number format parse failed."); 131 assertEquals("ChoiceFormat.format", formats[1], cf.format(1)); 137 // {sfb} use double format in pattern, so result will match (not strictly necessary) 216 form.format(testArgs, result, fieldpos); 217 assertEquals("format", testResultStrings[i], result.toString()) [all...] |
IntlTestDecimalFormatAPI.java | 11 * Port From: JDK 1.4b1 : java.text.Format.IntlTestDecimalFormatAPI 12 * Source File: java/text/format/IntlTestDecimalFormatAPI.java 17 @summary test International Decimal Format API 20 package android.icu.dev.test.format; 23 import java.text.Format; 42 * Problem 2: decF4.format(8.88885) does not return 8.8889 as expected. 43 * You must run decF4.format(new BigDecimal(Double.valueOf(8.88885))) in 65 String str = dec.format(number); 74 str = dec.format(number); 87 str = dec.format(bignumber); [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
TestMessageFormat.java | 13 package com.ibm.icu.dev.test.format; 19 import java.text.Format; 107 errln("Number format creation failed for " + locale[i].getDisplayName()); 112 form.format(myNumber, buffer, pos); 117 errln("Number format parse failed."); 130 assertEquals("ChoiceFormat.format", formats[1], cf.format(1)); 136 // {sfb} use double format in pattern, so result will match (not strictly necessary) 215 form.format(testArgs, result, fieldpos); 216 assertEquals("format", testResultStrings[i], result.toString()) [all...] |
IntlTestDecimalFormatAPI.java | 10 * Port From: JDK 1.4b1 : java.text.Format.IntlTestDecimalFormatAPI 11 * Source File: java/text/format/IntlTestDecimalFormatAPI.java 16 @summary test International Decimal Format API 19 package com.ibm.icu.dev.test.format; 22 import java.text.Format; 41 * Problem 2: decF4.format(8.88885) does not return 8.8889 as expected. 42 * You must run decF4.format(new BigDecimal(Double.valueOf(8.88885))) in 64 String str = dec.format(number); 73 str = dec.format(number); 86 str = dec.format(bignumber); [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
d3d11_screen.h | 307 pipe_format format = dxgi_to_pipe_format[dxgi_format]; local 308 if(!format) 311 int support = format_support[format]; 321 if(screen->is_format_supported(screen, format, PIPE_BUFFER, 0, PIPE_BIND_VERTEX_BUFFER)) 324 if(screen->is_format_supported(screen, format, PIPE_BUFFER, 0, PIPE_BIND_STREAM_OUTPUT)) 327 if(screen->is_format_supported(screen, format, PIPE_TEXTURE_1D, 0, PIPE_BIND_SAMPLER_VIEW)) 329 if(screen->is_format_supported(screen, format, PIPE_TEXTURE_2D, 0, PIPE_BIND_SAMPLER_VIEW)) 331 if(screen->is_format_supported(screen, format, PIPE_TEXTURE_CUBE, 0, PIPE_BIND_SAMPLER_VIEW)) 333 if(screen->is_format_supported(screen, format, PIPE_TEXTURE_3D, 0, PIPE_BIND_SAMPLER_VIEW)) 344 if(util_format_is_depth_or_stencil(format)) [all...] |
/device/linaro/bootloader/edk2/DuetPkg/ |
CreateBootDisk.bat | 49 @echo Format %EFI_BOOT_DISK% ...
52 @format /v:%DISK_LABEL% /q %EFI_BOOT_DISK% < FormatCommandInput.txt > NUL
86 @echo Format %EFI_BOOT_DISK% ...
88 @format /FS:FAT /v:%DISK_LABEL% /q %EFI_BOOT_DISK% < FormatCommandInput.txt > NUL
107 @echo Format %EFI_BOOT_DISK% ...
109 @format /FS:FAT32 /v:%DISK_LABEL% /q %EFI_BOOT_DISK% < FormatCommandInput.txt > NUL
|
/device/linaro/bootloader/edk2/Nt32Pkg/Sec/ |
SecMain.c | 124 CHAR8 *Format,
132 va_start (Marker, Format);
134 _vsnprintf (Buffer, sizeof (Buffer), Format, Marker);
509 CHAR8 *Format;
525 } else if (ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
529 AsciiBSPrint (PrintBuffer, BYTES_PER_RECORD, Format, Marker);
[all...] |
/external/mesa3d/src/mesa/drivers/x11/ |
xm_buffer.c | 198 ZPixmap, 0, /* format, offset */ 346 xrb->Base.Base.Format = MESA_FORMAT_XRGB8888; 349 xrb->Base.Base.Format = MESA_FORMAT_ARGB8888; 352 xrb->Base.Base.Format = MESA_FORMAT_RGBA8888_REV; 355 xrb->Base.Base.Format = MESA_FORMAT_RGB565; 358 _mesa_warning(ctx, "Bad pixel format in xmesa_new_renderbuffer"); 359 xrb->Base.Base.Format = MESA_FORMAT_ARGB8888; 470 _mesa_format_row_stride(xrb->Base.Base.Format, 477 ZPixmap, /* format */
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/ |
Print.c | 24 VSPrint, Print, SPrint format specification has the follwoing form
122 fmt - Format string
377 Fmt - Format string
441 IN CONST CHAR_W *Format,
448 SPrint function to process format and place the results in Buffer.
452 Buffer - Wide char buffer to print the results of the parsing of Format into.
457 Format - Format string see file header for more details.
459 ... - Vararg list consumed by processing Format.
470 VA_START (Marker, Format);
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/ |
ReportStatusCodeLib.c | 369 by ErrorLevel, Marker, and Format. If type GUID in Data is
371 Format from the optional data area of the status code buffer specified by Data.
374 the Format. If the DEBUG() information could be extracted from Data, then
380 If Format is NULL, then ASSERT().
384 @param Marker Pointer to the variable argument list associated with Format.
385 @param Format Pointer to a Null-terminated ASCII format string of a
389 specified by ErrorLevel, Marker, and Format.
400 OUT CHAR8 **Format
408 ASSERT (Format != NULL); [all...] |
/external/pdfium/core/fxcrt/ |
fx_basic_bstring_unittest.cpp | 1023 str.Format("%5d", 1); 1029 str.Format("%d", 1); 1035 str.Format("%*d", 5, 1); 1041 str.Format("%-1d", 1); 1047 str.Format("%0d", 1); 1053 str.Format("%1048576d", 1); 1061 str.Format("%.2f", 1.12345); 1067 str.Format("%.*f", 3, 1.12345); 1073 str.Format("%f", 1.12345); 1079 str.Format("%-1f", 1.12345) [all...] |
fx_basic_wstring_unittest.cpp | 862 str.Format(L"%5d", 1); 868 str.Format(L"%d", 1); 874 str.Format(L"%*d", 5, 1); 880 str.Format(L"%-1d", 1); 886 str.Format(L"%0d", 1); 892 str.Format(L"%1048576d", 1); 900 str.Format(L"%.2f", 1.12345); 906 str.Format(L"%.*f", 3, 1.12345); 912 str.Format(L"%f", 1.12345); 918 str.Format(L"%-1f", 1.12345) [all...] |
/external/swiftshader/src/OpenGL/libGL/ |
Texture.h | 79 virtual sw::Format getInternalFormat(GLenum target, GLint level) const = 0; 93 void setImage(GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, Image *image); 94 void subImage(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, Image *image); 96 void subImageCompressed(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels, Image *image); 128 virtual sw::Format getInternalFormat(GLenum target, GLint level) const; 131 void setImage(GLint level, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels); 132 void setCompressedImage(GLint level, GLenum format, GLsizei width, GLsizei height, GLsizei imageSize, const void *pixels); 133 void subImage(GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels); 134 void subImageCompressed(GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels); 135 void copyImage(GLint level, GLenum format, GLint x, GLint y, GLsizei width, GLsizei height, Framebuffer *source) [all...] |
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
SetTheory.cpp | 18 #include "llvm/Support/Format.h" 142 // (sequence "Format", From, To) Generate a sequence of records by name. 146 throw "Bad args to (sequence \"Format\", From, To): " + 148 std::string Format; 150 Format = SI->getValue(); 152 throw "Format must be a string: " + Expr->getAsString(); 176 OS << format(Format.c_str(), unsigned(From));
|
/external/toolchain-utils/cros_utils/ |
tabulator.py | 37 Format(), 40 Format()), 42 Format()), 46 Format()), 509 """Class that represents color in RGBA format.""" 551 class Format(object): 552 """A class that represents the format of a column.""" 573 cell.string_value = '{0:.2f}'.format(cell.value) 605 class PValueFormat(Format): 619 class StorageFormat(Format) [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/FwVol/ |
FwVol.h | 312 Report the information for a new discoveried FV in unknown format.
314 If the EFI_PEI_FIRMWARE_VOLUME_PPI has not been installed for specifical FV format, but
315 the FV in this FV format has been discoveried, then the information of this FV
317 Also a notification would be installed for unknown FV format guid, if EFI_PEI_FIRMWARE_VOLUME_PPI
334 Find the FV information according to FV format guid.
336 This routine also will remove the FV information found by given FV format guid from
340 @param Format Point to given FV format guid
341 @param FvInfo On return, the pointer of FV information buffer in given FV format guid
351 IN EFI_GUID *Format,
[all...] |