HomeSort by relevance Sort by last modified time
    Searched refs:Format (Results 251 - 275 of 1058) sorted by null

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java 22 import com.android.ide.common.api.IAttributeInfo.Format;
64 /** Map from format name (lower case) to the uppercase version */
65 private Map<String, Format> mFormatNames = new HashMap<String, Format>(10);
68 * Map of all (constant, value) pairs for attributes of format enum or flag.
138 // Pre-compute the set of format names such that we don't have to compute the uppercase
139 // version of the same format string names again and again
140 for (Format f : Format.values()) {
211 String xmlName = String.format("%1$s_%2$s", //$NON-NLS-1
510 Format format = mFormatNames.get(f); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/osmesa/
osmesa.c 73 GLenum format; /*< User-specified context format */ member in struct:osmesa_context
204 if (osmesa->format != OSMESA_RGBA &&
205 osmesa->format != OSMESA_BGRA &&
206 osmesa->format != OSMESA_ARGB) return NULL;
302 if (osmesa->format != OSMESA_RGBA &&
303 osmesa->format != OSMESA_BGRA &&
304 osmesa->format != OSMESA_ARGB) return (swrast_tri_func) NULL;
367 bytesPerRow = rowlength * _mesa_get_format_bytes(osmesa->srb->Base.Format);
410 /* Given the user-provided format and type, figure out which MESA_FORMAT_
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
readpix.c 71 if (_mesa_get_format_datatype(rb->Format) != GL_UNSIGNED_NORMALIZED)
74 if (!((type == GL_UNSIGNED_SHORT && rb->Format == MESA_FORMAT_Z16) ||
92 _mesa_unpack_uint_z_row(rb->Format, width, map, (GLuint *)dst);
94 ASSERT(type == GL_UNSIGNED_SHORT && rb->Format == MESA_FORMAT_Z16);
107 * Read pixels for format=GL_DEPTH_COMPONENT.
151 _mesa_unpack_float_z_row(rb->Format, width, map, depthValues);
169 * Read pixels for format=GL_STENCIL_INDEX.
201 _mesa_unpack_ubyte_stencil_row(rb->Format, width, map, stencil);
228 GLenum format, GLenum type,
239 if (rb->Format == MESA_FORMAT_RGBA8888_REV &
    [all...]
  /external/mesa3d/src/mesa/drivers/osmesa/
osmesa.c 73 GLenum format; /*< User-specified context format */ member in struct:osmesa_context
204 if (osmesa->format != OSMESA_RGBA &&
205 osmesa->format != OSMESA_BGRA &&
206 osmesa->format != OSMESA_ARGB) return NULL;
302 if (osmesa->format != OSMESA_RGBA &&
303 osmesa->format != OSMESA_BGRA &&
304 osmesa->format != OSMESA_ARGB) return (swrast_tri_func) NULL;
367 bytesPerRow = rowlength * _mesa_get_format_bytes(osmesa->srb->Base.Format);
410 /* Given the user-provided format and type, figure out which MESA_FORMAT_
    [all...]
  /external/mesa3d/src/mesa/main/
readpix.c 71 if (_mesa_get_format_datatype(rb->Format) != GL_UNSIGNED_NORMALIZED)
74 if (!((type == GL_UNSIGNED_SHORT && rb->Format == MESA_FORMAT_Z16) ||
92 _mesa_unpack_uint_z_row(rb->Format, width, map, (GLuint *)dst);
94 ASSERT(type == GL_UNSIGNED_SHORT && rb->Format == MESA_FORMAT_Z16);
107 * Read pixels for format=GL_DEPTH_COMPONENT.
151 _mesa_unpack_float_z_row(rb->Format, width, map, depthValues);
169 * Read pixels for format=GL_STENCIL_INDEX.
201 _mesa_unpack_ubyte_stencil_row(rb->Format, width, map, stencil);
228 GLenum format, GLenum type,
239 if (rb->Format == MESA_FORMAT_RGBA8888_REV &
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_renderbuffer.c 72 rb->Format = MESA_FORMAT_RGB888;
84 rb->Format = MESA_FORMAT_RGBA8888_REV;
86 rb->Format = MESA_FORMAT_RGBA8888;
91 rb->Format = MESA_FORMAT_SIGNED_RGBA_16;
98 rb->Format = MESA_FORMAT_S8;
102 rb->Format = MESA_FORMAT_Z16;
105 rb->Format = MESA_FORMAT_X8_Z24;
108 rb->Format = MESA_FORMAT_Z32;
112 rb->Format = MESA_FORMAT_Z24_S8;
115 /* unsupported format */
    [all...]
s_stencil.c 58 * For example, if the format is Z24+S8, the position of the stencil bits
62 get_stencil_offset(gl_format format)
66 GLint bpp = _mesa_get_format_bytes(format);
69 assert(_mesa_get_format_bits(format, GL_STENCIL_BITS) == 8);
71 _mesa_pack_ubyte_stencil_row(format, 1, &one, pixel);
301 if (rb->Format == MESA_FORMAT_S8) {
310 const GLint bpp = _mesa_get_format_bytes(rb->Format);
315 _mesa_unpack_ubyte_stencil_row(rb->Format, 1, src, &stencil[i]);
332 _mesa_get_pack_ubyte_stencil_func(rb->Format);
354 const GLint stencilOffset = get_stencil_offset(rb->Format);
    [all...]
s_clear.c 50 const GLuint pixelSize = _mesa_get_format_bytes(rb->Format);
79 _mesa_pack_float_rgba_row(rb->Format, 1, clearColor, &pixel); \
81 _mesa_pack_colormask(rb->Format, colorMask, &pixelMask); \
107 _mesa_pack_float_rgba_row(rb->Format, 1, clearColor, pixel); \
109 _mesa_pack_colormask(rb->Format, colorMask, pixelMask); \
  /external/mesa3d/src/mesa/swrast/
s_renderbuffer.c 72 rb->Format = MESA_FORMAT_RGB888;
84 rb->Format = MESA_FORMAT_RGBA8888_REV;
86 rb->Format = MESA_FORMAT_RGBA8888;
91 rb->Format = MESA_FORMAT_SIGNED_RGBA_16;
98 rb->Format = MESA_FORMAT_S8;
102 rb->Format = MESA_FORMAT_Z16;
105 rb->Format = MESA_FORMAT_X8_Z24;
108 rb->Format = MESA_FORMAT_Z32;
112 rb->Format = MESA_FORMAT_Z24_S8;
115 /* unsupported format */
    [all...]
s_stencil.c 58 * For example, if the format is Z24+S8, the position of the stencil bits
62 get_stencil_offset(gl_format format)
66 GLint bpp = _mesa_get_format_bytes(format);
69 assert(_mesa_get_format_bits(format, GL_STENCIL_BITS) == 8);
71 _mesa_pack_ubyte_stencil_row(format, 1, &one, pixel);
301 if (rb->Format == MESA_FORMAT_S8) {
310 const GLint bpp = _mesa_get_format_bytes(rb->Format);
315 _mesa_unpack_ubyte_stencil_row(rb->Format, 1, src, &stencil[i]);
332 _mesa_get_pack_ubyte_stencil_func(rb->Format);
354 const GLint stencilOffset = get_stencil_offset(rb->Format);
    [all...]
s_clear.c 50 const GLuint pixelSize = _mesa_get_format_bytes(rb->Format);
79 _mesa_pack_float_rgba_row(rb->Format, 1, clearColor, &pixel); \
81 _mesa_pack_colormask(rb->Format, colorMask, &pixelMask); \
107 _mesa_pack_float_rgba_row(rb->Format, 1, clearColor, pixel); \
109 _mesa_pack_colormask(rb->Format, colorMask, pixelMask); \
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table.cc 126 case Format::FORMAT_1:
128 case Format::FORMAT_2:
130 case Format::FORMAT_3:
132 case Format::FORMAT_4:
134 case Format::FORMAT_5:
138 throw IllegalArgumentException("Invalid index subtable format");
180 // Unknown format and unable to process.
182 throw IllegalArgumentException("Invalid Index Subtable Format");
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder.cpp 65 SkImageDecoder::Format SkImageDecoder::getFormat() const {
73 const char* SkImageDecoder::GetFormatName(Format format) {
74 switch (format) {
76 return "Unknown Format";
96 SkDEBUGFAIL("Invalid format type!");
98 return "Unknown Format";
265 Format* format) {
271 if (SkImageDecoder::DecodeStream(stream, bm, pref, mode, format)) {
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table.cc 126 case Format::FORMAT_1:
128 case Format::FORMAT_2:
130 case Format::FORMAT_3:
132 case Format::FORMAT_4:
134 case Format::FORMAT_5:
138 throw IllegalArgumentException("Invalid index subtable format");
180 // Unknown format and unable to process.
182 throw IllegalArgumentException("Invalid Index Subtable Format");
  /external/skia/src/images/
SkImageDecoder.cpp 65 SkImageDecoder::Format SkImageDecoder::getFormat() const {
73 const char* SkImageDecoder::GetFormatName(Format format) {
74 switch (format) {
76 return "Unknown Format";
96 SkDEBUGFAIL("Invalid format type!");
98 return "Unknown Format";
265 Format* format) {
271 if (SkImageDecoder::DecodeStream(stream, bm, pref, mode, format)) {
    [all...]
  /external/vixl/src/a64/
debugger-a64.cc 77 // Format: wn or xn with 0 <= n < 32 or a name in the aliases list.
102 // Format: sn or dn with 0 <= n < 32.
120 // Format: Alphanumeric string starting with a letter.
143 // Format: 0x... with up to 16 hexadecimal digits.
162 // Format: n.
178 // Format: .ln
205 template<typename T> class Format : public FormatToken {
207 Format(const char* fmt, char type_code) : fmt_(fmt), type_code_(type_code) {}
327 PrintCommand(Token* name, Token* target, FormatToken* format)
328 : DebugCommand(name), target_(target), format_(format) {}
335 FormatToken* format() { return format_; } function in class:vixl::PrintCommand
364 FormatToken* format() { return format_; } function in class:vixl::ExamineCommand
1190 Token* format = FormatToken::Tokenize(dot + 1); local
1348 FormatToken* format = new Format<uint32_t>("%08" PRIx32, 'i'); local
1419 FormatToken* format = NULL; local
1506 FormatToken* format = NULL; local
    [all...]
  /external/chromium_org/content/common/gpu/media/
v4l2_video_device.cc 32 media::VideoFrame::Format V4L2Device::V4L2PixFmtToVideoFrameFormat(
51 media::VideoFrame::Format format) {
52 switch (format) {
81 gfx::Size V4L2Device::CodedSizeFromV4L2Format(struct v4l2_format format) {
84 media::VideoFrame::Format frame_format = media::VideoFrame::UNKNOWN;
88 if (V4L2_TYPE_IS_MULTIPLANAR(format.type) &&
89 format.fmt.pix_mp.num_planes > 0) {
91 base::checked_cast<int>(format.fmt.pix_mp.plane_fmt[0].bytesperline);
93 base::checked_cast<int>(format.fmt.pix_mp.plane_fmt[0].sizeimage)
    [all...]
  /external/chromium_org/media/base/
video_decoder_config.cc 21 VideoFrame::Format format,
28 Initialize(codec, profile, format, coded_size, visible_rect, natural_size,
58 VideoFrame::Format format,
80 "Media.VideoPixelFormat", format, VideoFrame::FORMAT_MAX + 1);
85 format_ = format;
103 (format() == config.format()) &&
117 << " format: " << format(
140 VideoFrame::Format VideoDecoderConfig::format() const { function in class:media::VideoDecoderConfig
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_context.c 68 cl->Format = GL_RGBA;
92 cl->Format = GL_RGBA;
140 cl->Format = GL_RGBA;
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLCaps.h 28 typedef GrGLStencilBuffer::Format StencilFormat;
137 * Call to note that a color config / stencil format pair passed
144 const GrGLStencilBuffer::Format& format);
147 * Call to check whether color config / stencil format pair has already
152 const GrGLStencilBuffer::Format& format) const;
209 * Depending on the ES extensions present the BGRA external format may
253 /// Does ReadPixels support the provided format/type combo?
255 GrGLenum format,
    [all...]
  /external/lldb/source/Interpreter/
OptionGroupFormat.cpp 27 OptionGroupFormat::OptionGroupFormat (lldb::Format default_format,
45 { LLDB_OPT_SET_1, false, "format" ,'f', required_argument, NULL, 0, eArgTypeFormat , "Specify a format to be used for display."},
46 { LLDB_OPT_SET_2, false, "gdb-format",'G', required_argument, NULL, 0, eArgTypeGDBFormat, "Specify a format using a GDB format specifier string."},
47 { LLDB_OPT_SET_3, false, "size" ,'s', required_argument, NULL, 0, eArgTypeByteSize , "The size in bytes to use when displaying with the selected format."},
125 Format format = eFormatDefault; local
128 while (ParserGDBFormatLetter (interpreter, gdb_format_cstr[0], format, byte_size)
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_context.c 68 cl->Format = GL_RGBA;
92 cl->Format = GL_RGBA;
140 cl->Format = GL_RGBA;
  /external/skia/src/gpu/gl/
GrGLCaps.h 28 typedef GrGLStencilBuffer::Format StencilFormat;
137 * Call to note that a color config / stencil format pair passed
144 const GrGLStencilBuffer::Format& format);
147 * Call to check whether color config / stencil format pair has already
152 const GrGLStencilBuffer::Format& format) const;
209 * Depending on the ES extensions present the BGRA external format may
253 /// Does ReadPixels support the provided format/type combo?
255 GrGLenum format,
    [all...]
  /ndk/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) {

Completed in 1642 milliseconds

<<11121314151617181920>>