/external/vixl/src/aarch64/ |
debugger-aarch64.cc | 86 // Format: wn or xn with 0 <= n < 32 or a name in the aliases list. 113 // Format: sn or dn with 0 <= n < 32. 131 // Format: Alphanumeric string starting with a letter. 156 // Format: 0x... with up to 16 hexadecimal digits. 175 // Format: n. 191 // Format: .ln 225 class Format : public FormatToken { 227 Format(const char* fmt, char type_code) : fmt_(fmt), type_code_(type_code) {} 372 PrintCommand(Token* name, Token* target, FormatToken* format) 373 : DebugCommand(name), target_(target), format_(format) {} 380 FormatToken* format() { return format_; } function in class:vixl::aarch64::PrintCommand 409 FormatToken* format() { return format_; } function in class:vixl::aarch64::ExamineCommand 1155 Token* format = FormatToken::Tokenize(dot + 1); local 1367 FormatToken* format = new Format<uint32_t>("%08" PRIx32, 'i'); local 1437 FormatToken* format = NULL; local 1535 FormatToken* format = NULL; local [all...] |
/device/linaro/bootloader/edk2/DuetPkg/Library/DxeCoreReportStatusCodeLibFromHob/ |
ReportStatusCodeLib.c | 202 by ErrorLevel, Marker, and Format. If type GUID in Data is
204 Format from the optional data area of the status code buffer specified by Data.
207 the Format. If the DEBUG() information could be extracted from Data, then
213 If Format is NULL, then ASSERT().
217 @param Marker Pointer to the variable argument list associated with Format.
218 @param Format Pointer to a Null-terminated ASCII format string of a
222 specified by ErrorLevel, Marker, and Format.
233 OUT CHAR8 **Format
241 ASSERT (Format != NULL); [all...] |
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/ |
ReportStatusCodeLib.c | 132 by ErrorLevel, Marker, and Format. If type GUID in Data is
134 Format from the optional data area of the status code buffer specified by Data.
137 the Format. If the DEBUG() information could be extracted from Data, then
143 If Format is NULL, then ASSERT().
147 @param Marker Pointer to the variable argument list associated with Format.
148 @param Format Pointer to a Null-terminated ASCII format string of a
152 specified by ErrorLevel, Marker, and Format.
163 OUT CHAR8 **Format
171 ASSERT (Format != NULL); [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/ |
Dhcp4Option.c | 18 /// A list of the format of DHCP Options sorted by option tag
112 Binary search the DhcpOptionFormats array to find the format
117 @return The point to the option's format, NULL if not found.
151 Validate whether a single DHCP option is valid according to its format.
153 @param[in] Format The option's format
163 IN DHCP_OPTION_FORMAT *Format,
174 switch (Format->Type) {
208 if (((Format->MinOccur != -1) && (Occur < Format->MinOccur)) || [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
IntlTestSimpleDateFormatAPI.java | 17 * Port From: JDK 1.4b1 : java.text.Format.IntlTestSimpleDateFormatAPI 18 * Source File: java/text/format/IntlTestSimpleDateFormatAPI.java 21 package android.icu.dev.test.format; 24 import java.text.Format; 37 * @summary test International Simple Date Format API 68 Format clone = (Format) def.clone(); 70 errln("ERROR: Format clone or equals failed"); 73 // ======= Test various format() methods 75 logln("Testing various format() methods") [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
IntlTestSimpleDateFormatAPI.java | 16 * Port From: JDK 1.4b1 : java.text.Format.IntlTestSimpleDateFormatAPI 17 * Source File: java/text/format/IntlTestSimpleDateFormatAPI.java 20 package com.ibm.icu.dev.test.format; 23 import java.text.Format; 36 * @summary test International Simple Date Format API 67 Format clone = (Format) def.clone(); 69 errln("ERROR: Format clone or equals failed"); 72 // ======= Test various format() methods 74 logln("Testing various format() methods") [all...] |
/external/mesa3d/src/gallium/state_trackers/nine/ |
device9ex.h | 116 D3DFORMAT Format, 128 D3DFORMAT Format, 138 D3DFORMAT Format,
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
intel_fbo.c | 99 GLint bpp = _mesa_get_format_bytes(rb->Format); 125 __func__, rb->Name, _mesa_get_format_name(rb->Format), 144 rb->Name, _mesa_get_format_name(rb->Format)); 162 /* Use the same format-choice logic as for textures. 197 assert(rb->Format != MESA_FORMAT_NONE); 207 _mesa_get_format_name(rb->Format), width, height); 212 irb->mt = intel_miptree_create_for_renderbuffer(intel, rb->Format, 221 * Called via glRenderbufferStorageEXT() to set the format and allocate 229 rb->Format = intel_renderbuffer_format(ctx, internalFormat); 250 switch (image->format) { [all...] |
/external/swiftshader/src/Renderer/ |
Sampler.hpp | 133 Format textureFormat : BITS(FORMAT_LAST); 197 Format externalTextureFormat; 198 Format internalTextureFormat;
|
/prebuilts/ndk/r11/sources/android/support/tests/minitest/ |
minitest.cc | 73 #define MINITEST_STRING_OPERATOR_LL_(ParamType, Format) \ 76 ::snprintf(buf, sizeof(buf), Format, v); \ 126 internal::String Format(const char* format, ...) { 129 va_start(args, format); 135 len = vsnprintf(&result[0], result.size(), format, args2);
|
/prebuilts/ndk/r13/sources/android/support/tests/minitest/ |
minitest.cc | 73 #define MINITEST_STRING_OPERATOR_LL_(ParamType, Format) \ 76 ::snprintf(buf, sizeof(buf), Format, v); \ 126 internal::String Format(const char* format, ...) { 129 va_start(args, format); 135 len = vsnprintf(&result[0], result.size(), format, args2);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
TextAttributeDescriptor.java | 23 import com.android.ide.common.api.IAttributeInfo.Format; 181 EnumSet<Format> formats_list = info.getFormats(); 194 for (Format f : formats_list) {
|
/device/linaro/bootloader/edk2/MdePkg/Include/Library/ |
UefiLib.h | 494 @param Iso639Language Specifies the supported language code format. If it is TRUE, then
495 Language and SupportedLanguages follow ISO 639-2 language code format.
496 Otherwise, they follow the RFC 4646 language code format.
587 @param Iso639Language Specifies the supported language code format. If it is TRUE,
588 then Language and SupportedLanguages follow ISO 639-2 language code format.
589 Otherwise, they follow RFC 4646 language code format.
756 contains a set of language codes in the format
759 in ISO 639-2 format. If FALSE, then all language
760 codes are assumed to be in RFC 4646 language format
763 language codes in the format specified by Iso639Language. [all...] |
/external/swiftshader/src/OpenGL/common/ |
Image.hpp | 44 sw::Format ConvertFormatType(GLenum format, GLenum type); 45 sw::Format SelectInternalFormat(GLenum format, GLenum type); 46 GLsizei ComputePitch(GLsizei width, GLenum format, GLenum type, GLint alignment); 47 GLsizei ComputeCompressedSize(GLsizei width, GLsizei height, GLenum format); 48 size_t ComputePackingOffset(GLenum format, GLenum type, GLsizei width, GLsizei height, GLint alignment, GLint skipImages, GLint skipRows, GLint skipPixels); 54 Image(Texture *parentTexture, GLsizei width, GLsizei height, GLenum format, GLenum type) 55 : sw::Surface(parentTexture->getResource(), width, height, 1, SelectInternalFormat(format, type), true, true), 56 width(width), height(height), format(format), type(type), internalFormat(SelectInternalFormat(format, type)), depth(1) 197 const GLenum format; member in class:egl::Image [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/BaseReportStatusCodeLibNull/ |
BaseReportStatusCodeLib.c | 106 by ErrorLevel, Marker, and Format. If type GUID in Data is
108 Format from the optional data area of the status code buffer specified by Data.
111 the Format. If the DEBUG() information could be extracted from Data, then
117 If Format is NULL, then ASSERT().
121 @param Marker The pointer to the variable argument list associated with Format.
122 @param Format The pointer to a Null-terminated ASCII format string of a
126 specified by ErrorLevel, Marker, and Format.
137 OUT CHAR8 **Format
143 ASSERT (Format != NULL); [all...] |
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/ |
StepChartExampleActivity.java | 29 import java.text.Format;
105 mySimpleXYPlot.setRangeValueFormat(new Format() {
107 public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos) {
|
/external/google-breakpad/src/testing/gtest/src/ |
gtest-death-test.cc | 180 // Generates a textual description of a given exit code, in the format 275 DeathTestAbort(::testing::internal::String::Format( \ 295 DeathTestAbort(::testing::internal::String::Format( \ 514 // in the format specified by wait(2). On Windows, this is the 714 const String filter_flag = String::Format("--%s%s=%s.%s", 718 const String internal_flag = String::Format( 737 String command_line = String::Format("%s %s \"%s\"", [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
choicfmt.h | 20 * 07/22/98 stephen Removed operator!= (implemented in Format) 31 * \brief C++ API: Choice Format. 38 #include "unicode/format.h" 156 * fmt.format(x, str); 245 * Clones this Format object. The caller owns the 251 virtual Format* clone(void) const; 254 * Returns true if the given Format objects are semantically equal. 261 virtual UBool operator==(const Format& other) const; 302 * parsed with that format,and should be in 306 * @param formatsToCopy The format strings you want to use for each limit [all...] |
compactdecimalformat.h | 35 * 'Hits: 1,200,000,000'. The format will be appropriate for the given language, 90 * Clone this Format object polymorphically. The caller owns the 96 virtual Format* clone() const; 99 * Return TRUE if the given Format objects are semantically equal. 103 * @return TRUE if the given Format objects are semantically equal. 106 virtual UBool operator==(const Format& other) const; 109 using DecimalFormat::format; 112 * Format a double or long number using base-10 representation. 122 virtual UnicodeString& format(double number, 127 * Format a double or long number using base-10 representation [all...] |
/external/mesa3d/src/intel/isl/ |
gen_format_layout.py | 66 % for format in formats: 67 [ISL_FORMAT_${format.name}] = { 68 .format = ISL_FORMAT_${format.name}, 69 .name = "ISL_FORMAT_${format.name}", 70 .bpb = ${format.bpb}, 71 .bw = ${format.bw}, 72 .bh = ${format.bh}, 73 .bd = ${format.bd}, 76 <% channel = getattr(format, mask, None) %>\ [all...] |
/external/pdfium/core/fpdfdoc/ |
cpdf_pagelabel.cpp | 58 wsNumPortion.Format(L"%d", num); 117 wsLabel->Format(L"%d", nPage + 1);
|
/external/pdfium/fpdfsdk/javascript/ |
util.cpp | 152 strSegment.Format(c_strFormat.c_str(), params[iIndex].ToInt(pRuntime)); 155 strSegment.Format(c_strFormat.c_str(), 159 strSegment.Format(c_strFormat.c_str(), 163 strSegment.Format(L"%S", c_strFormat.c_str()); 199 swResult.Format(L"D:%04d%02d%02d%02d%02d%02d", jsDate.GetYear(pRuntime), 205 swResult.Format(L"%04d.%02d.%02d %02d:%02d:%02d", 212 swResult.Format(L"%04d/%02d/%02d %02d:%02d:%02d", 233 // Convert PDF-style format specifiers to wcsftime specifiers. Remove any 266 sValue.Format(L"%d", cTableAd[i].iValue);
|
/external/skia/src/gpu/vk/ |
GrVkStencilAttachment.cpp | 17 const Format& format, 21 : GrStencilAttachment(gpu, desc.fWidth, desc.fHeight, format.fStencilBits, desc.fSamples) 23 , fFormat(format) 33 const Format& format) { 36 imageDesc.fFormat = format.fInternalFormat; 52 format.fInternalFormat, 59 GrVkStencilAttachment* stencil = new GrVkStencilAttachment(gpu, format, imageDesc,
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
Device.hpp | 61 egl::Image *createDepthStencilSurface(unsigned int width, unsigned int height, sw::Format format, int multiSampleDepth, bool discard); 62 egl::Image *createRenderTarget(unsigned int width, unsigned int height, sw::Format format, int multiSampleDepth, bool lockable);
|
/prebuilts/go/darwin-x86/src/time/ |
example_test.go | 61 // Parse a time value from a string in the standard Unix format. 67 // time.Time's Stringer method is useful without any format. 68 fmt.Println("default format:", t) 71 fmt.Println("Unix format:", t.Format(time.UnixDate)) 74 fmt.Println("Same, in UTC:", t.UTC().Format(time.UnixDate)) 77 // layout string used in the format. 79 // The layout string used by the Parse function and Format method 90 // Most uses of Format and Parse use constant layout strings such as 96 got := t.Format(layout [all...] |