HomeSort by relevance Sort by last modified time
    Searched refs:Format (Results 626 - 650 of 1259) sorted by null

<<21222324252627282930>>

  /prebuilts/gradle-plugin/com/android/tools/build/gradle-api/2.4.0-alpha3/
gradle-api-2.4.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-api/2.4.0-alpha5/
gradle-api-2.4.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-api/2.4.0-alpha6/
gradle-api-2.4.0-alpha6.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-api/2.5.0-alpha-preview-01/
gradle-api-2.5.0-alpha-preview-01.jar 
  /system/vold/fs/
Ext4.cpp 168 status_t Format(const std::string& source, unsigned long numSectors,
Vfat.cpp 172 status_t Format(const std::string& source, unsigned long numSectors) {
192 SLOGE("Filesystem format failed due to logwrap error");
201 SLOGE("Format failed (unknown exit code %d)", rc);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/Include/
PeiLib.h 1112 IN CONST CHAR8 *Format,
1119 AvSPrint function to process format and place the results in Buffer. Since a
1125 StartOfBuffer - Ascii buffer to print the results of the parsing of Format into.
1130 FormatString - Ascii format string see file header for more details.
1132 Marker - Vararg list consumed by processing Format.
1145 IN CONST CHAR8 *Format,
1152 ASPrint function to process format and place the results in Buffer.
1156 Buffer - Ascii buffer to print the results of the parsing of Format into.
1161 Format - Ascii format string see file header for more details.
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Pei/
OhciUrb.c 357 Ed->Word0.Format = Value;
422 return Ed->Word0.Format;
  /external/deqp/executor/
xeTestCaseResult.hpp 245 enum Format
261 Image (void) : Item(TYPE_IMAGE), width(0), height(0), format(FORMAT_LAST), compression(COMPRESSION_LAST) {}
268 Format format; member in class:xe::ri::Image
  /external/icu/icu4c/source/i18n/unicode/
smpdtfmt.h 33 * \brief C++ API: Format and parse dates in a language-independent manner.
399 * generation, it should match the 12-hour-cycle format preferred by the locale (h or K); it should not match
400 * a 24-hour-cycle format (H or k). Use hh for zero padding.</td>
407 * generation, it should match the 24-hour-cycle format preferred by the locale (H or k); it should not match a
408 * 12-hour-cycle format (h or K). Use HH for zero padding.</td>
460 * <td>The <i>short specific non-location format</i>.
461 * Where that is unavailable, falls back to the <i>short localized GMT format</i> ("O").</td>
466 * <td>The <i>long specific non-location format</i>.
467 * Where that is unavailable, falls back to the <i>long localized GMT format</i> ("OOOO").</td>
473 * <td>The <i>ISO8601 basic format</i> with hours, minutes and optional seconds fields
    [all...]
  /external/llvm/test/MC/Sparc/
sparc-relocations.s 4 ! CHECK-OBJ: Format: ELF64-sparc
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_parse.py 104 class Format:
105 '''Describe a pixel format.'''
121 '''Make up a short norm for a format, suitable to be used as suffix in
231 '''Parse the format descrition in CSV format in terms of the
232 Channel and Format classes above.'''
301 format = Format(name, layout, block_width, block_height, channels, swizzles, colorspace)
302 formats.append(format)
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/
d3d10_1.idl 99 DXGI_FORMAT Format;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
dxgi_native.cpp 474 pipe_format format = dxgi_to_pipe_format[enum_format]; local
475 if(parent->configs_by_pipe_format.count(format))
487 desc[i].Format = enum_format;
509 DXGI_FORMAT dxgi_format = pModeToMatch->Format;
510 enum pipe_format format = dxgi_to_pipe_format[dxgi_format]; local
512 if(!parent->configs_by_pipe_format.count(format))
518 format = parent->configs[0]->color_format;
519 dxgi_format = pipe_to_dxgi_format[format];
524 closest_match->Format = dxgi_format;
964 enum pipe_format format = dxgi_to_pipe_format[desc.BufferDesc.Format] local
    [all...]
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 1 // Protocol Buffers - Google's data interchange format
50 ZeroCopyInputStream* sub_stream, Format format, int buffer_size)
51 : format_(format), sub_stream_(sub_stream), zerror_(Z_OK), byte_count_(0) {
78 z_stream* zcontext, GzipInputStream::Format format) {
80 switch (format) {
194 : format(GZIP),
228 // default to GZIP format
230 if (options.format == ZLIB)
    [all...]
  /external/swiftshader/src/D3D9/
Direct3DSurface9.cpp 79 Direct3DSurface9::Direct3DSurface9(Direct3DDevice9 *device, Unknown *container, int width, int height, D3DFORMAT format, D3DPOOL pool, D3DMULTISAMPLE_TYPE multiSample, unsigned int quality, bool lockableOverride, unsigned long usage) : Direct3DResource9(device, D3DRTYPE_SURFACE, pool, memoryUsage(width, height, format)), Surface(getParentResource(container), width, height, sampleCount(multiSample, quality), translateFormat(format), isLockable(pool, usage, lockableOverride), (usage & D3DUSAGE_RENDERTARGET) || (usage & D3DUSAGE_DEPTHSTENCIL)), container(container), width(width), height(height), format(format), pool(pool), multiSample(multiSample), quality(quality), lockable(isLockable(pool, usage, lockableOverride)), usage(usage)
320 description->Format = format;
332 sw::Format Direct3DSurface9::translateFormat(D3DFORMAT format)
334 switch(format)
    [all...]
Direct3DSwapChain9.cpp 153 sw::Format format = backBuffer[0]->getInternalFormat(); local
164 frameBuffer->flip(window, source, format, stride);
187 frameBuffer->blit(window, source, sourceRect ? &sRect : 0, destRect ? &dRect : 0, format, stride);
333 presentParameters->BackBufferFormat = displayMode.Format;
  /libcore/ojluni/src/main/java/java/text/
NumberFormat.java 65 * <code>NumberFormat</code> helps you to format and parse numbers for any locale.
68 * digits used, or whether the number format is even decimal.
71 * To format a number for the current Locale, use one of the factory
75 * myString = NumberFormat.getInstance().format(myNumber);
79 * more efficient to get the format and use it multiple times so that
86 * output.println(nf.format(myNumber[i]) + "; ");
90 * To format a number for a different Locale, specify it in the
104 * normal number format. Use <code>getIntegerInstance</code> to get an
105 * integer number format. Use <code>getCurrencyInstance</code> to get the
106 * currency number format. And use <code>getPercentInstance</code> to get
234 public StringBuffer format(Object number, method in class:NumberFormat
288 public final String format(double number) { method in class:NumberFormat
302 public final String format(long number) { method in class:NumberFormat
319 public abstract StringBuffer format(double number, method in class:NumberFormat
335 public abstract StringBuffer format(long number, method in class:NumberFormat
840 DecimalFormat format = new DecimalFormat(numberPatterns[entry], symbols); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddcdrm.h 125 /* CDROM_READ_TOC_EX.Format constants */
134 UCHAR Format : 4;
148 /* CDROM_SUB_Q_DATA_FORMAT.Format constants */
155 UCHAR Format;
usbcamdi.h 115 PVOID Format);
122 PVOID Format,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
ProcessOptions.c 521 CHAR16 *Format;
555 Format = L"-%ld";
557 Format = L"%ld";
562 Format = L"%ld";
566 Format = L"%lx";
573 UnicodeSPrint (FormattedNumber, BufferSize, Format, Value);
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
otBase.py 454 def writeStruct(self, format, values):
455 data = struct.pack(*(format,) + values)
647 if hasattr(self, "Format"):
648 attrs = attrs + [("Format", self.Format)]
705 return self.converters[self.Format]
708 return self.convertersByName[self.Format][name]
711 self.Format = reader.readUShort()
712 assert self.Format != 0, (self, reader.pos, len(reader.data))
715 writer.writeUShort(self.Format)
    [all...]
  /external/googletest/googletest/include/gtest/
gtest-printers.h 257 // FormatForComparison<ToPrint, OtherOperand>::Format(value) formats a
261 // format the value. In particular, when the value is a C string
263 // want to format the C string as a string, since we know it is
275 static ::std::string Format(const ToPrint& value) {
284 static ::std::string Format(const ToPrint* value) {
285 return FormatForComparison<const ToPrint*, OtherOperand>::Format(value);
296 static ::std::string Format(CharType* value) { \
315 static ::std::string Format(CharType* value) { \
342 // of the other operand may affect the format. This allows us to
351 return FormatForComparison<T1, T2>::Format(value)
    [all...]
  /external/libunwind_llvm/src/
Unwind-EHABI.cpp 58 } Format;
73 Descriptor::Format format,
92 switch (format) {
169 Descriptor::Format format = local
170 static_cast<Descriptor::Format>((*unwindingData & 0x0f000000) >> 24);
178 ProcessDescriptors(state, ucbp, context, format, lsda,
228 // by format:
229 Descriptor::Format format local
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest-printers.h 257 // FormatForComparison<ToPrint, OtherOperand>::Format(value) formats a
261 // format the value. In particular, when the value is a C string
263 // want to format the C string as a string, since we know it is
275 static ::std::string Format(const ToPrint& value) {
284 static ::std::string Format(const ToPrint* value) {
285 return FormatForComparison<const ToPrint*, OtherOperand>::Format(value);
296 static ::std::string Format(CharType* value) { \
315 static ::std::string Format(CharType* value) { \
342 // of the other operand may affect the format. This allows us to
351 return FormatForComparison<T1, T2>::Format(value)
    [all...]

Completed in 1046 milliseconds

<<21222324252627282930>>