/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/Unicode/ |
SPrint.c | 24 VSPrint, Print, SPrint format specification has the follwoing form
65 IN CONST CHAR8 *Format,
72 Process format and place the results in Buffer for narrow chars.
76 Buffer - Narrow char buffer to print the results of the parsing of Format into.
78 Format - Format string
79 ... - Vararg list consumed by processing Format.
90 VA_START (Marker, Format);
91 Return = AvSPrint (Buffer, BufferSize, Format, Marker);
110 Process format and place the results in Buffer for narrow chars. [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/Ascii/ |
SPrint.c | 24 VSPrint, Print, SPrint format specification has the follwoing form
64 IN CONST CHAR16 *Format,
71 Process format and place the results in Buffer for wide chars.
75 Buffer - Wide char buffer to print the results of the parsing of Format into.
77 Format - Format string
78 ... - Vararg list consumed by processing Format.
89 VA_START (Marker, Format);
90 Return = UnicodeVSPrint (Buffer, BufferSize, Format, Marker);
108 Process format and place the results in Buffer for wide chars. [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/Unicode/ |
SPrint.c | 24 VSPrint, Print, SPrint format specification has the follwoing form
65 IN CONST CHAR8 *Format,
72 Process format and place the results in Buffer for narrow chars.
76 Buffer - Narrow char buffer to print the results of the parsing of Format into.
78 Format - Format string
79 ... - Vararg list consumed by processing Format.
90 VA_START (Marker, Format);
91 Return = AvSPrint (Buffer, BufferSize, Format, Marker);
110 Process format and place the results in Buffer for narrow chars. [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
ValueCompleter.java | 25 import static com.android.ide.common.api.IAttributeInfo.Format.BOOLEAN; 26 import static com.android.ide.common.api.IAttributeInfo.Format.DIMENSION; 27 import static com.android.ide.common.api.IAttributeInfo.Format.ENUM; 28 import static com.android.ide.common.api.IAttributeInfo.Format.FLAG; 29 import static com.android.ide.common.api.IAttributeInfo.Format.FLOAT; 30 import static com.android.ide.common.api.IAttributeInfo.Format.INTEGER; 31 import static com.android.ide.common.api.IAttributeInfo.Format.REFERENCE; 32 import static com.android.ide.common.api.IAttributeInfo.Format.STRING; 37 import com.android.ide.common.api.IAttributeInfo.Format; 66 EnumSet<Format> formats = info.getFormats() [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
TestAttributeInfo.java | 26 private final EnumSet<Format> mFormats; 36 public TestAttributeInfo(String name, EnumSet<Format> formats, String definedBy, 63 public @NonNull EnumSet<Format> getFormats() {
|
/external/v8/src/arm64/ |
disasm-arm64.cc | 89 Format(instr, mnemonic, form); 136 Format(instr, mnemonic, form); 174 Format(instr, mnemonic, form); 209 Format(instr, mnemonic, form); 220 // The immediate encoded in the instruction is not in the expected format. 221 Format(instr, "unallocated", "(LogicalImmediate)"); 252 Format(instr, mnemonic, form); 332 Format(instr, mnemonic, form); 347 Format(instr, mnemonic, form); 363 Format(instr, mnemonic, form) [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxePrintLibPrint2Protocol/ |
PrintLib.c | 66 format string.
68 @param AsciiFormat TRUE if Format is an ASCII string. FALSE if Format is a Unicode string.
69 @param Format Null-terminated format string.
70 @param VaListMarker VA_LIST style variable argument list consumed by processing Format.
71 @param BaseListMarker BASE_LIST style variable argument list consumed by processing Format.
80 IN CONST CHAR8 *Format,
93 ASSERT (Format != NULL);
99 ASSERT (AsciiStrSize (Format) != 0); [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/Print/ |
Print.c | 24 AvSPrint format specification has the follwoing form
109 IN CONST CHAR8 *Format,
116 ASPrint function to process format and place the results in Buffer.
120 Buffer - Ascii buffer to print the results of the parsing of Format into.
125 Format - Ascii format string see file header for more details.
127 ... - Vararg list consumed by processing Format.
138 VA_START(Marker, Format);
139 Return = AvSPrint(Buffer, BufferSize, Format, Marker);
157 AvSPrint function to process format and place the results in Buffer. Since a [all...] |
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/HalRuntimeServicesExampleLib/ |
ReportStatusCode.c | 37 CHAR8 *Format;
75 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
82 Format,
93 Format = (CHAR8 *) (((UINT64 *) (DebugInfo + 1)) + 12);
95 CharCount = AsciiVSPrint (Buffer, EFI_STATUS_CODE_DATA_MAX_SIZE, Format, Marker);
|
/external/gemmlowp/standalone/ |
neon-gemm-kernel-benchmark.cc | 152 // following format (the struct names here are defined below in this file): 159 // The LHS format, KernelSideFormat<CellFormat<3, 4>, 3>, means: 175 // The RHS format, KernelSideFormat<CellFormat<5, 4>, 2>, means: 272 Format; 461 Format; 579 Format; 826 Format; [all...] |
/external/deqp/framework/opengl/ |
gluStrUtil.inl | [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/ |
AttributeInfoTest.java | 23 import com.android.ide.common.api.IAttributeInfo.Format; 55 AttributeInfo info = new AttributeInfo("test", EnumSet.noneOf(Format.class)); 62 AttributeInfo info = new AttributeInfo("test", Format.STRING_SET); 69 AttributeInfo info = new AttributeInfo("test", Format.BOOLEAN_SET); 80 AttributeInfo info = new AttributeInfo("test", Format.INTEGER_SET); 95 AttributeInfo info = new AttributeInfo("test", Format.FLOAT_SET); 115 AttributeInfo info = new AttributeInfo("test", Format.DIMENSION_SET); 127 // Since we allow resources even when not specified in format, don't assert 133 AttributeInfo info = new AttributeInfo("test", Format.COLOR_SET); 146 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.FRACTION)) [all...] |
/libcore/ojluni/src/main/java/sun/invoke/util/ |
Wrapper.java | 29 // wrapperType primitiveType char zero emptyArray format 30 BOOLEAN( Boolean.class, boolean.class, 'Z', (Boolean)false, new boolean[0], Format.unsigned( 1)), 32 BYTE ( Byte.class, byte.class, 'B', (Byte)(byte)0, new byte[0], Format.signed( 8)), 33 SHORT ( Short.class, short.class, 'S', (Short)(short)0, new short[0], Format.signed( 16)), 34 CHAR (Character.class, char.class, 'C', (Character)(char)0, new char[0], Format.unsigned(16)), 35 INT ( Integer.class, int.class, 'I', (Integer)/*(int)*/0, new int[0], Format.signed( 32)), 36 LONG ( Long.class, long.class, 'J', (Long)(long)0, new long[0], Format.signed( 64)), 37 FLOAT ( Float.class, float.class, 'F', (Float)(float)0, new float[0], Format.floating(32)), 38 DOUBLE ( Double.class, double.class, 'D', (Double)(double)0, new double[0], Format.floating(64)), 39 OBJECT ( Object.class, Object.class, 'L', null, new Object[0], Format.other( 1)) 49 private final int format; field in class:Wrapper 81 static int format(int kind, int size, int slots) { method in class:Wrapper.Format [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
dtitvfmt.h | 21 * \brief C++ API: Format and parse date interval in a language-independent manner. 51 * For example, the date interval format from "Jan 11, 2008" to "Jan 18,. 2008" 112 * supported. And the interval format will be fall back to fall-back 175 * formatting: time zone, calendar type, pattern, date format symbols, 184 * the format style. 191 * Locale provides the timezone, calendar, and format symbols information. 200 * DateTime format. 216 * dtIntervalFmt->format(dtInterval, dateIntervalUnicodeString, pos, status); 222 class U_I18N_API DateIntervalFormat : public Format { 233 * @param skeleton the skeleton on which interval format based [all...] |
tmutfmt.h | 17 * \brief C++ API: Format and parse duration in single time unit 58 * Format or parse a TimeUnitAmount, using plural rules for the units where available. 66 * // create time unit format instance 67 * TimeUnitFormat* format = new TimeUnitFormat(Locale("en"), status); 68 * // format a time unit amount 73 * formatted = ((Format*)format)->format(formattable, formatted, status); 75 * ((Format*)format)->parseObject(formatted, result, status) [all...] |
/external/icu/icu4c/source/test/testdata/break_rules/ |
sentence.txt | 15 Format = [\p{Sentence_Break = Format}]; 28 ExtFmt = [Extend Format]; 39 # SB5: ignore Format and Extend characters.
|
/external/swiftshader/src/OpenGL/libGL/ |
Renderbuffer.h | 54 virtual sw::Format getInternalFormat() const = 0; 80 virtual sw::Format getInternalFormat() const; 102 virtual sw::Format getInternalFormat() const; 111 // is called. The specific concrete type depends on whether the internal format is 125 virtual sw::Format getInternalFormat() const; 131 GLenum format; member in class:gl::RenderbufferStorage 132 sw::Format internalFormat; 158 sw::Format getInternalFormat() const; 177 Colorbuffer(GLsizei width, GLsizei height, GLenum format, GLsizei samples);
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/ |
PVRTShader.cpp | 116 @Input Format shader binary format 125 const GLenum Format, 133 // and if (more then 0) find given Format among them 144 if(listFormats[i] == (int) Format) { 145 glShaderBinary(1, pObject, Format, ShaderData, (GLint)Size); 167 @Input Format shader binary format, or 0 for source shader 180 const GLenum Format, 195 if(Format && pszBinFile && uiDefArraySize == 0 [all...] |
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/Pei/ |
SerialStatusCodeWorker.c | 49 CHAR8 *Format;
72 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
79 Format,
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/ |
SerialStatusCodeWorker.c | 47 CHAR8 *Format;
70 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
77 Format,
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/StatusCodeHandler/Pei/ |
SerialStatusCodeWorker.c | 52 CHAR8 *Format;
75 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
82 Format,
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/ |
SerialStatusCodeWorker.c | 48 CHAR8 *Format;
71 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
78 Format,
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/StatusCodeHandler/Smm/ |
SerialStatusCodeWorker.c | 48 CHAR8 *Format;
71 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
78 Format,
|
/external/compiler-rt/lib/scudo/ |
scudo_utils.cpp | 28 extern int VSNPrintf(char *buff, int buff_length, const char *format, 35 FORMAT(1, 2) 36 void dieWithMessage(const char *Format, ...) { 40 va_start(Args, Format); 41 __sanitizer::VSNPrintf(Message, sizeof(Message), Format, Args);
|
/external/flatbuffers/tests/FlatBuffers.Test/ |
Assert.cs | 38 get { return string.Format("Expected {0} but saw {1}", _expected, _actual); } 57 get { return string.Format("Expected {0} at index {1} but saw {2}", _expected, _index, _actual); } 72 get { return string.Format("Expected exception of type {0}", _expected); }
|