HomeSort by relevance Sort by last modified time
    Searched refs:Format (Results 76 - 100 of 1402) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/icu/icu4c/source/data/brkitr/rules/
word.txt 36 $Format = [\p{Word_Break = Format}];
76 # Rules 4 Ignore Format and Extend characters,
80 $KatakanaEx = $Katakana ($Extend | $Format | $ZWJ)*;
81 $Hebrew_LetterEx = $Hebrew_Letter ($Extend | $Format | $ZWJ)*;
82 $ALetterEx = $ALetterPlus ($Extend | $Format | $ZWJ)*;
83 $Single_QuoteEx = $Single_Quote ($Extend | $Format | $ZWJ)*;
84 $Double_QuoteEx = $Double_Quote ($Extend | $Format | $ZWJ)*;
85 $MidNumLetEx = $MidNumLet ($Extend | $Format | $ZWJ)*;
86 $MidLetterEx = $MidLetter ($Extend | $Format | $ZWJ)*
    [all...]
word_POSIX.txt 36 $Format = [\p{Word_Break = Format}];
76 # Rules 4 Ignore Format and Extend characters,
80 $KatakanaEx = $Katakana ($Extend | $Format | $ZWJ)*;
81 $Hebrew_LetterEx = $Hebrew_Letter ($Extend | $Format | $ZWJ)*;
82 $ALetterEx = $ALetterPlus ($Extend | $Format | $ZWJ)*;
83 $Single_QuoteEx = $Single_Quote ($Extend | $Format | $ZWJ)*;
84 $Double_QuoteEx = $Double_Quote ($Extend | $Format | $ZWJ)*;
85 $MidNumLetEx = $MidNumLet ($Extend | $Format | $ZWJ)*;
86 $MidLetterEx = $MidLetter ($Extend | $Format | $ZWJ)*
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkStrUtil.inl 51 inline tcu::Format::Enum<VkPipelineCacheHeaderVersion> getPipelineCacheHeaderVersionStr (VkPipelineCacheHeaderVersion value) { return tcu::Format::Enum<VkPipelineCacheHeaderVersion>(getPipelineCacheHeaderVersionName, value); }
52 inline tcu::Format::Enum<VkResult> getResultStr (VkResult value) { return tcu::Format::Enum<VkResult>(getResultName, value); }
53 inline tcu::Format::Enum<VkStructureType> getStructureTypeStr (VkStructureType value) { return tcu::Format::Enum<VkStructureType>(getStructureTypeName, value); }
54 inline tcu::Format::Enum<VkSystemAllocationScope> getSystemAllocationScopeStr (VkSystemAllocationScope value) { return tcu::Format::Enum<VkSystemAllocationScope>(getSystemAllocationScopeName, value); }
55 inline tcu::Format::Enum<VkInternalAllocationType> getInternalAllocationTypeStr (VkInternalAllocationType value) { return tcu::Format::Enum<VkInternalAllocationType>(getInternalAllocationTypeName, value);
    [all...]
vkStrUtilImpl.inl     [all...]
  /external/swiftshader/src/Renderer/
Surface.hpp 51 enum Format : unsigned char
91 FORMAT_G16R16, // D3D format
98 FORMAT_A16B16G16R16, // D3D format
247 Format format; member in struct:sw::Surface::Buffer
254 Surface(int width, int height, int depth, Format format, void *pixels, int pitch, int slice);
255 Surface(Resource *texture, int width, int height, int depth, Format format, bool lockable, bool renderTarget, int pitchP = 0);
258 static Surface *create(int width, int height, int depth, Format format, void *pixels, int pitch, int slice)
    [all...]
Blitter.hpp 48 Format sourceFormat;
49 Format destFormat;
78 void clear(void* pixel, sw::Format format, Surface *dest, const SliceRect &dRect, unsigned int rgbaMask);
83 bool fastClear(void* pixel, sw::Format format, Surface *dest, const SliceRect &dRect, unsigned int rgbaMask);
85 bool read(Float4 &color, Pointer<Byte> element, Format format);
86 bool write(Float4 &color, Pointer<Byte> element, Format format, const Blitter::Options& options)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/properties/
ValueCompleterTest.java 23 import com.android.ide.common.api.IAttributeInfo.Format;
41 String property, EnumSet<Format> formats, String[] values,
60 EnumSet.of(Format.REFERENCE), null,
66 EnumSet.of(Format.DIMENSION, Format.ENUM),
74 EnumSet.of(Format.DIMENSION, Format.ENUM),
82 EnumSet.of(Format.DIMENSION, Format.ENUM),
91 EnumSet.of(Format.DIMENSION)
    [all...]
  /external/gemmlowp/internal/
compute.h 32 typedef KernelFormat<KernelLhsFormat, KernelRhsFormat> Format;
52 depth = RoundUp<Format::kDepth>(depth);
71 start_row, start_col, Format::kRows, Format::kCols);
79 assert(rows % Format::kRows == 0);
80 assert(cols % Format::kCols == 0);
81 assert(depth % Format::kDepth == 0);
83 for (int c = 0; c < cols; c += Format::kCols) {
84 for (int r = 0; r < rows; r += Format::kRows) {
  /external/pdfium/xfa/fxfa/parser/
cxfa_measurement.cpp 40 wsMeasure.Format(L"%.8gmm", GetValue());
43 wsMeasure.Format(L"%.8gpt", GetValue());
46 wsMeasure.Format(L"%.8gin", GetValue());
49 wsMeasure.Format(L"%.8gcm", GetValue());
52 wsMeasure.Format(L"%.8gmp", GetValue());
55 wsMeasure.Format(L"%.8gpc", GetValue());
58 wsMeasure.Format(L"%.8gem", GetValue());
61 wsMeasure.Format(L"%.8g%%", GetValue());
64 wsMeasure.Format(L"%.8g", GetValue());
  /external/swiftshader/src/OpenGL/libGL/
utilities.h 43 int ComputePixelSize(GLenum format, GLenum type);
44 GLsizei ComputePitch(GLsizei width, GLenum format, GLenum type, GLint alignment);
45 GLsizei ComputeCompressedPitch(GLsizei width, GLenum format);
46 GLsizei ComputeCompressedSize(GLsizei width, GLsizei height, GLenum format);
47 bool IsCompressed(GLenum format);
48 bool IsDepthTexture(GLenum format);
49 bool IsStencilTexture(GLenum format);
53 bool CheckTextureFormatType(GLenum format, GLenum type);
75 sw::Format ConvertRenderbufferFormat(GLenum format);
    [all...]
  /external/swiftshader/src/OpenGL/libGLES_CM/
utilities.h 33 bool IsCompressed(GLenum format);
34 bool IsDepthTexture(GLenum format);
35 bool IsStencilTexture(GLenum format);
39 bool CheckTextureFormatType(GLenum format, GLenum type);
66 sw::Format ConvertRenderbufferFormat(GLenum format);
74 GLuint GetAlphaSize(sw::Format colorFormat);
75 GLuint GetRedSize(sw::Format colorFormat);
76 GLuint GetGreenSize(sw::Format colorFormat);
77 GLuint GetBlueSize(sw::Format colorFormat)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
Debug.c 86 IN CHAR8 *Format,
102 Format - String to use for the print, followed by Print arguments.
127 EfiDebugVPrintWorker (ErrorLevel, Format, Marker, sizeof (Buffer), Buffer);
143 IN CHAR8 *Format,
156 Format - String to use for the print, followed by Print arguments.
169 VA_START (Marker, Format);
170 EfiDebugVPrint (ErrorLevel, Format, Marker);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/
Debug.c 77 IN CHAR8 *Format,
91 Format - String to use for the print, followed by Print arguments.
107 EfiDebugVPrintWorker (ErrorLevel, Format, Marker, sizeof (Buffer), Buffer);
123 IN CHAR8 *Format,
139 Format - String to use for the print, followed by Print arguments.
141 ... - VAR args for Format
151 VA_START (Marker, Format);
152 EfiDebugVPrint (ErrorLevel, Format, Marker);
  /external/icu/icu4c/source/i18n/unicode/
msgfmt.h 15 * 07/22/98 stephen Removed operator!= (defined in Format)
31 #include "unicode/format.h"
59 * <p><code>MessageFormat</code> differs from the other <code>Format</code>
71 * <p>An argument might not specify any format type. In this case,
77 * Format object is created, cached and used.
83 * <p>After construction, a custom Format object can be set for
99 * (or using a custom Format object if one was set).
155 * a <code>Format</code> instance for the format element. The following
156 * table shows how the values map to Format instances. Combinations no
    [all...]
selfmt.h 40 * object provided to the format method is a string that's matched
50 * <p>The main use case for the select format is gender based inflection.
119 * the form of the participle, uses a select format based on argument 1:</p>
149 * the <code>format</code> method matches no other keyword.
169 * msgFmt->format(args1, 2, result, ignore, status);
185 class U_I18N_API SelectFormat : public Format {
211 * Sets the pattern used by this select format.
215 * @param pattern the pattern for this select format
224 using Format::format;
    [all...]
  /external/protobuf/src/google/protobuf/io/
gzip_stream.h 1 // Protocol Buffers - Google's data interchange format
57 // Format key for constructor
58 enum Format {
65 // Simpler zlib stream format.
69 // buffer_size and format may be -1 for default of 64kB and GZIP format
72 Format format = AUTO,
91 Format format_;
112 // Format key for constructo
123 Format format; member in struct:google::protobuf::io::GzipOutputStream::Options
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldFormatTest.java 22 import java.text.Format;
29 private class MockFormat extends Format {
31 public StringBuffer format(Object obj, StringBuffer toAppendTo, method in class:OldFormatTest.MockFormat
50 * java.text.Format#clone() Test of method java.text.Format#clone().
55 Format fm = new MockFormat();
56 Format fmc = (Format) fm.clone();
62 assertEquals("", mf.format(""));
63 assertTrue("It calls an abstract metod format", true)
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
gzip_stream.h 1 // Protocol Buffers - Google's data interchange format
58 // Format key for constructor
59 enum Format {
66 // Simpler zlib stream format.
70 // buffer_size and format may be -1 for default of 64kB and GZIP format
73 Format format = AUTO,
92 Format format_;
112 // Format key for constructo
123 Format format; member in struct:google::protobuf::io::GzipOutputStream::Options
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
gzip_stream.h 1 // Protocol Buffers - Google's data interchange format
58 // Format key for constructor
59 enum Format {
66 // Simpler zlib stream format.
70 // buffer_size and format may be -1 for default of 64kB and GZIP format
73 Format format = AUTO,
92 Format format_;
112 // Format key for constructo
123 Format format; member in struct:google::protobuf::io::GzipOutputStream::Options
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
gzip_stream.h 1 // Protocol Buffers - Google's data interchange format
57 // Format key for constructor
58 enum Format {
65 // Simpler zlib stream format.
69 // buffer_size and format may be -1 for default of 64kB and GZIP format
72 Format format = AUTO,
91 Format format_;
112 // Format key for constructo
123 Format format; member in struct:google::protobuf::io::GzipOutputStream::Options
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
gzip_stream.h 1 // Protocol Buffers - Google's data interchange format
58 // Format key for constructor
59 enum Format {
66 // Simpler zlib stream format.
70 // buffer_size and format may be -1 for default of 64kB and GZIP format
73 Format format = AUTO,
92 Format format_;
112 // Format key for constructo
123 Format format; member in struct:google::protobuf::io::GzipOutputStream::Options
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/
Print.c 24 VSPrint, Print, SPrint format specification has the follwoing form
67 IN CONST CHAR_W *Format,
74 SPrint function to process format and place the results in Buffer.
78 Buffer - Wide char buffer to print the results of the parsing of Format into.
83 Format - Format string see file header for more details.
85 ... - Vararg list consumed by processing Format.
96 VA_START (Marker, Format);
97 Return = VSPrint (Buffer, BufferSize, Format, Marker);
115 VSPrint function to process format and place the results in Buffer. Since a
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/
Debug.c 85 IN CHAR8 *Format,
101 Format - String to use for the print, followed by Print arguments.
114 VA_START (Marker, Format);
115 EfiDebugVPrintWorker (ErrorLevel, Format, Marker, sizeof (Buffer), Buffer);
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
format_conversion.h 32 /// @brief Load SIMD packed pixels in SOA format and converts to
33 /// SOA RGBA32_FLOAT format.
78 /// Format template arg
81 template<SWR_FORMAT Format>
84 if (FormatTraits<Format>::isNormalized(Component))
86 if (FormatTraits<Format>::GetType(Component) == SWR_TYPE_UNORM)
91 if (FormatTraits<Format>::GetType(Component) == SWR_TYPE_SNORM)
97 else if (FormatTraits<Format>::GetBPC(Component) < 32)
99 if (FormatTraits<Format>::GetType(Component) == SWR_TYPE_UINT)
101 int iMax = (1 << FormatTraits<Format>::GetBPC(Component)) - 1
    [all...]
  /external/v8/src/wasm/
wasm-result.cc 30 void ErrorThrower::Format(i::Handle<i::JSFunction> constructor,
31 const char* format, va_list args) {
36 base::OS::VSNPrintF(buffer, 255, format, args);
49 void ErrorThrower::TypeError(const char* format, ...) {
52 va_start(arguments, format);
53 Format(isolate_->type_error_function(), format, arguments);
57 void ErrorThrower::RangeError(const char* format, ...) {
60 va_start(arguments, format);
61 Format(isolate_->range_error_function(), format, arguments)
    [all...]

Completed in 821 milliseconds

1 2 34 5 6 7 8 91011>>