HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 101 - 125 of 4596) sorted by null

1 2 3 45 6 7 8 91011>>

  /cts/tests/tests/jni/libjnitest/
helper.h 46 * @param format printf format string
50 char *failure(const char *format, ...) __attribute__((format(printf, 1, 2)));
  /cts/tools/vm-tests-tf/src/dot/junit/format/
AllTests.java 17 package dot.junit.format;
35 suite.addTestSuite(dot.junit.format.f1.Test_f1.class);
  /dalvik/dx/src/com/android/dx/io/instructions/
PackedSwitchPayloadDecodedInstruction.java 37 public PackedSwitchPayloadDecodedInstruction(InstructionCodec format,
39 super(format, opcode, 0, null, 0, 0L);
  /dalvik/vm/
Init.h 66 int dvmFprintf(FILE* fp, const char* format, ...)
68 __attribute__ ((format(printf, 2, 3)))
  /device/generic/goldfish/opengl/system/GLESv1_enc/
GLEncoderUtils.cpp 20 size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pack)
23 return ctx->pixelDataSize(width, height, format, type, pack);
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
PackedSwitchPayloadDecodedInstruction.java 37 public PackedSwitchPayloadDecodedInstruction(InstructionCodec format,
39 super(format, opcode, 0, null, 0, 0L);
  /external/e2fsprogs/intl/
vasnwprintf.h 39 extern wchar_t * asnwprintf (wchar_t *resultbuf, size_t *lengthp, const wchar_t *format, ...);
40 extern wchar_t * vasnwprintf (wchar_t *resultbuf, size_t *lengthp, const wchar_t *format, va_list args);
  /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/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/graphics/java/android/graphics/
ImageFormat.java 28 * RGB format used for pictures encoded as RGB_565. See
34 * <p>Android YUV format.</p>
36 * <p>This format is exposed to software decoders and applications.</p>
38 * <p>YV12 is a 4:2:0 YCrCb planar format comprised of a WxH Y plane followed
41 * <p>This format assumes
57 * <p>This format is guaranteed to be supported for camera preview images since
76 * YCbCr format, used for video. Whether this format is supported by the
83 * YCrCb format used for images, which uses the NV21 encoding format. Thi
    [all...]
  /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/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/webkit/Source/JavaScriptCore/wtf/
Assertions.cpp 31 #pragma GCC diagnostic ignored "-Wmissing-format-attribute"
103 static void vprintf_stderr_common(const char* format, va_list args)
106 if (strstr(format, "%@")) {
107 CFStringRef cfFormat = CFStringCreateWithCString(NULL, format, kCFStringEncodingUTF8);
125 int size = vsnprintf(0, 0, format, args);
128 vsnprintf(buffer.data(), size, format, args);
132 LOG_PRI_VA(ANDROID_LOG_DEBUG, "WebKit", format, args);
144 if (_vsnprintf(buffer, size, format, args) != -1) {
169 vfprintf(stdout, format, args);
171 vfprintf(stderr, format, args)
    [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...]
  /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...]

Completed in 1566 milliseconds

1 2 3 45 6 7 8 91011>>