HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 201 - 225 of 8082) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
Android22Workaround.java 6 public static void glVertexAttribPointer(int location, int components, int format, boolean normalize, int stride, int offset){
9 format,
  /external/mesa3d/src/gallium/auxiliary/translate/
translate.c 52 boolean translate_is_output_format_supported(enum pipe_format format)
54 return translate_generic_is_output_format_supported(format);
  /external/oprofile/libutil++/
stream_util.cpp 19 format(stream.flags()),
28 stream.flags(format);
  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_audio_c.h 27 extern Uint16 SDL_FirstAudioFormat(Uint16 format);
  /external/qemu/distrib/sdl-1.2.15/src/video/nanox/
SDL_nxmodes_c.h 31 extern SDL_Rect ** NX_ListModes (_THIS, SDL_PixelFormat * format, Uint32 flags) ;
  /frameworks/base/libs/hwui/
RenderBuffer.h 32 * Creates a new render buffer in the specified format and dimensions.
33 * The format must be one of the formats allowed by glRenderbufferStorage().
35 RenderBuffer(GLenum format, uint32_t width, uint32_t height):
36 mFormat(format), mWidth(width), mHeight(height), mAllocated(false) {
55 * Returns the format of this render buffer.
124 * Returns the number of bits per component in the specified format.
125 * The format must be one of the formats allowed by glRenderbufferStorage().
127 static uint32_t formatSize(GLenum format) {
128 switch (format) {
145 * Indicates whether the specified format represents a stencil buffer
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
LogAbortException.java 24 public LogAbortException(String format, Object... args) {
25 mFormat = format;
  /system/core/include/sysutils/
NetlinkListener.h 37 NetlinkListener(int socket, int format);
39 NetlinkListener(int socket, int format = NETLINK_FORMAT_ASCII);
  /external/qemu/android/utils/
debug.c 18 dprint( const char* format, ... )
21 va_start( args, format );
23 vfprintf( stdout, format, args );
29 dprintn( const char* format, ... )
32 va_start( args, format );
33 vfprintf( stdout, format, args );
38 dprintnv( const char* format, va_list args )
40 vfprintf( stdout, format, args );
45 dwarning( const char* format, ... )
48 va_start( args, format );
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
DateFormatTest.java 17 package android.text.format.cts;
24 import android.text.format.DateFormat;
84 assertEquals("D", DateFormat.format("MMMMM", c));
85 assertEquals("December", DateFormat.format("MMMM", c));
86 assertEquals("Dec", DateFormat.format("MMM", c));
87 assertEquals("12", DateFormat.format("MM", c));
88 assertEquals("12", DateFormat.format("M", c));
94 assertEquals("D", DateFormat.format("LLLLL", c));
95 assertEquals("December", DateFormat.format("LLLL", c));
96 assertEquals("Dec", DateFormat.format("LLL", c))
155 String format = "MM\/dd\/yy"; local
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
CertificateStub.java 38 String format; field in class:CertificateStub
43 public CertificateStub(String format, Principal guarantor, Principal principal, PublicKey key){
44 this.format = format;
75 return format;
  /external/bison/lib/
obstack_printf.c 36 obstack_printf (struct obstack *obs, const char *format, ...)
41 va_start (args, format);
42 result = obstack_vprintf (obs, format, args);
54 obstack_vprintf (struct obstack *obs, const char *format, va_list args)
71 str = vasnprintf (base, &len, format, args);
  /external/chromium/base/
string_util_posix.h 33 const char* format, va_list arguments) {
34 return ::vsnprintf(buffer, size, format, arguments);
46 const wchar_t* format, va_list arguments) {
53 DCHECK(IsWprintfFormatPortable(format));
54 return ::vswprintf(buffer, size, format, arguments);
  /external/chromium_org/base/strings/
string_util_posix.h 33 const char* format, va_list arguments) {
34 return ::vsnprintf(buffer, size, format, arguments);
46 const wchar_t* format, va_list arguments) {
47 DCHECK(IsWprintfFormatPortable(format));
48 return ::vswprintf(buffer, size, format, arguments);
  /external/chromium_org/ppapi/proxy/
flash_clipboard_resource.cc 26 // These functions assume the format is valid.
27 bool PPVarToClipboardString(int32_t format,
30 if (format == PP_FLASH_CLIPBOARD_FORMAT_PLAINTEXT ||
31 format == PP_FLASH_CLIPBOARD_FORMAT_HTML) {
48 PP_Var ClipboardStringToPPVar(int32_t format,
50 if (format == PP_FLASH_CLIPBOARD_FORMAT_PLAINTEXT ||
51 format == PP_FLASH_CLIPBOARD_FORMAT_HTML) {
78 // Check to see if the format has already been registered.
79 uint32_t format = clipboard_formats_.GetFormatID(format_name); local
80 if (format != PP_FLASH_CLIPBOARD_FORMAT_INVALID
    [all...]
  /external/chromium_org/ppapi/tests/
test_image_data.h 30 // Subtests used by tests above; pass in a pixel format.
31 std::string SubTestFormatSupported(PP_ImageDataFormat format);
32 std::string SubTestInvalidSize(PP_ImageDataFormat format);
33 std::string SubTestHugeSize(PP_ImageDataFormat format);
34 std::string SubTestInitToZero(PP_ImageDataFormat format);
35 std::string SubTestIsImageData(PP_ImageDataFormat format);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
formats.h 50 * Max number of bytes for any non-compressed pixel format below, or for
286 _mesa_get_format_name(gl_format format);
289 _mesa_get_format_bytes(gl_format format);
292 _mesa_get_format_bits(gl_format format, GLenum pname);
295 _mesa_get_format_max_bits(gl_format format);
298 _mesa_get_format_datatype(gl_format format);
301 _mesa_get_format_base_format(gl_format format);
304 _mesa_get_format_block_size(gl_format format, GLuint *bw, GLuint *bh);
307 _mesa_is_format_compressed(gl_format format);
310 _mesa_is_format_packed_depth_stencil(gl_format format);
    [all...]
  /external/mesa3d/src/mesa/main/
formats.h 50 * Max number of bytes for any non-compressed pixel format below, or for
286 _mesa_get_format_name(gl_format format);
289 _mesa_get_format_bytes(gl_format format);
292 _mesa_get_format_bits(gl_format format, GLenum pname);
295 _mesa_get_format_max_bits(gl_format format);
298 _mesa_get_format_datatype(gl_format format);
301 _mesa_get_format_base_format(gl_format format);
304 _mesa_get_format_block_size(gl_format format, GLuint *bw, GLuint *bh);
307 _mesa_is_format_compressed(gl_format format);
310 _mesa_is_format_packed_depth_stencil(gl_format format);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/nds/
sound9.c 27 void SoundSystemInit(u32 rate,u32 buffersize,u8 channel,u8 format)
31 if(format == 8)
33 else if(format == 16)
38 soundsystem->format = format;
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
CertificateStub.java 39 String format; field in class:CertificateStub
44 public CertificateStub(String format, Principal guarantor, Principal principal, PublicKey key){
45 this.format = format;
76 return format;
  /external/llvm/lib/MC/
MCInstPrinter.cpp 15 #include "llvm/Support/Format.h"
69 return format("%" PRId64, Value);
76 return format("-0x%" PRIx64, -Value);
78 return format("0x%" PRIx64, Value);
82 return format("-0%" PRIx64 "h", -Value);
84 return format("-%" PRIx64 "h", -Value);
87 return format("0%" PRIx64 "h", Value);
89 return format("%" PRIx64 "h", Value);
98 return format("0x%" PRIx64, Value);
101 return format("0%" PRIx64 "h", Value)
    [all...]
  /external/llvm/utils/testgen/
mc-bundling-x86-gen.py 30 '''.format(BUNDLE_SIZE_POW2).lstrip()
36 print(' .bundle_lock{0}'.format(' align_to_end' if align_to_end else ''))
37 print(' .rept {0}'.format(len))
50 print(ALIGNTO.format(2 * BUNDLE_SIZE))
51 print('INSTRLEN_{0}_OFFSET_{1}:'.format(instlen, offset))
53 print(NOPFILL.format(offset))
62 print('# CHECK: {0:x}: nop'.format(inst_orig_offset))
64 print('# CHECK: {0:x}: nop'.format(nop_split_offset))
65 print('# CHECK: {0:x}: incl'.format(adjusted_offset))
67 print('# CHECK: {0:x}: incl'.format(inst_orig_offset)
    [all...]
  /frameworks/av/media/libstagefright/omx/
SoftVideoDecoderOMXComponent.cpp 83 def.format.video.cMIMEType = const_cast<char *>(mimeType);
84 def.format.video.pNativeRender = NULL;
86 def.format.video.nBitrate = 0;
87 def.format.video.xFramerate = 0;
88 def.format.video.bFlagErrorConcealment = OMX_FALSE;
89 def.format.video.eCompressionFormat = mCodingType;
90 def.format.video.eColorFormat = OMX_COLOR_FormatUnused;
91 def.format.video.pNativeWindow = NULL;
105 def.format.video.cMIMEType = const_cast<char *>("video/raw");
106 def.format.video.pNativeRender = NULL
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
ChoiceFormatTest.java 49 formattedString = cf.format(Double.NEGATIVE_INFINITY);
50 assertTrue("a) Incorrect format returned: " + formattedString,
52 formattedString = cf.format(0.5d);
53 assertTrue("b) Incorrect format returned: " + formattedString,
55 formattedString = cf.format(1d);
56 assertTrue("c) Incorrect format returned: " + formattedString,
58 formattedString = cf.format(1.5d);
59 assertTrue("d) Incorrect format returned: " + formattedString,
61 formattedString = cf.format(2d);
62 assertTrue("e) Incorrect format returned: " + formattedString
358 ChoiceFormat format = new ChoiceFormat("1#one|2#two|3#three"); local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/baudio/
SDL_beaudio.cc 98 const media_raw_audio_format &format)
156 media_raw_audio_format format; local
157 Uint16 test_format = SDL_FirstAudioFormat(spec->format);
159 /* Parse the audio format and fill the Be raw audio format */
160 memset(&format, '\0', sizeof (media_raw_audio_format));
161 format.byte_order = B_MEDIA_LITTLE_ENDIAN;
162 format.frame_rate = (float) spec->freq;
163 format.channel_count = spec->channels; /* !!! FIXME: support > 2? */
166 spec->format = test_format
    [all...]

Completed in 727 milliseconds

1 2 3 4 5 6 7 891011>>