Searched refs:format (Results 101 - 125 of 1654) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DZeroRegisterDecodedInstruction.java28 public ZeroRegisterDecodedInstruction(InstructionCodec format, int opcode, argument
30 super(format, opcode, index, indexType, target, literal);
/external/giflib/
H A DAndroid.mk9 LOCAL_CFLAGS += -Wno-format -DHAVE_CONFIG_H
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DPlatform.java44 static String format(String template, Object... args) { method in class:Platform
45 return String.format(template, args);
/external/libvpx/tools/
H A Dgen_authors.sh9 $(git log --pretty=format:"%aN <%aE>" | sort | uniq)
/external/webkit/Source/WebCore/svg/
H A DSVGAltGlyphElement.idl31 attribute DOMString format
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyKeyPairGenerator1.java96 private String format; field in class:MyKeyPairGenerator1.PubKey
102 this.format = "test1";
111 return format;
122 private String format; field in class:MyKeyPairGenerator1.PrivKey
128 this.format = "test1";
137 return format;
/external/clang/test/SemaCXX/
H A Dformat-strings.cpp20 printf("%ls", "foo"); // expected-warning{{format specifies type 'wchar_t *' but the argument has type 'const char *'}}
28 int scanf(const char *, ...) __attribute__((format(scanf, 2, 3)));
29 int printf(const char *, ...) __attribute__((format(printf, 2, 3)));
33 static int printf_static(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
39 foo.printf("%d", i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
40 Foo::printf_static("%d", i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
42 printf(foo.gettext("%d"), i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
43 printf(Foo::gettext_static("%d"), i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
46 // Test handling __null for format string literal checking.
48 int test_null_format(const char *format,
62 const char * const format = fmt; local
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDop.java40 /** {@code non-null;} the instruction format */
41 private final InsnFormat format; field in class:Dop
56 * @param format {@code non-null;} the instruction format
60 public Dop(int opcode, int family, int nextOpcode, InsnFormat format, argument
74 if (format == null) {
75 throw new NullPointerException("format == null");
81 this.format = format;
111 * Gets the instruction format
[all...]
/external/dropbear/
H A Ddbutil.h36 extern void (*_dropbear_exit)(int exitcode, const char* format, va_list param);
37 extern void (*_dropbear_log)(int priority, const char* format, va_list param);
39 void dropbear_exit(const char* format, ...);
40 void dropbear_close(const char* format, ...);
41 void dropbear_log(int priority, const char* format, ...);
44 void dropbear_trace(const char* format, ...);
/external/icu4c/layout/
H A DDeviceTables.cpp24 le_uint16 format = SWAPW(deltaFormat) - 1; local
27 if (ppem >= start && ppem <= SWAPW(endSize) && format < FORMAT_COUNT) {
29 le_uint16 bits = fieldBits[format];
34 le_uint16 field = (word >> shift) & fieldMasks[format];
38 if ((field & fieldSignBits[format]) != 0) {
39 result |= ~ fieldMasks[format];
/external/srtp/crypto/include/
H A Derr.h138 err_report(int priority, char *format, ...);
158 #define debug_print(mod, format, arg) \
159 if (mod.on) err_report(err_level_debug, ("%s: " format "\n"), mod.name, arg)
160 #define debug_print2(mod, format, arg1,arg2) \
161 if (mod.on) err_report(err_level_debug, ("%s: " format "\n"), mod.name, arg1,arg2)
166 #define debug_print(mod, format, arg)
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DLayerTexture.cpp51 bool LayerTexture::isValid(const IntSize& size, unsigned format) argument
53 return m_token && size == m_size && format == m_format && m_textureManager->hasTexture(m_token);
56 bool LayerTexture::reserve(const IntSize& size, unsigned format) argument
61 if (size == m_size && format == m_format && m_textureManager->hasTexture(m_token))
64 m_textureId = m_textureManager->requestTexture(m_token, size, format);
67 m_format = format;
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_util.cpp38 cairo_format_t format; local
60 format = cairo_image_surface_get_format(surface);
61 if (format != CAIRO_FORMAT_ARGB32 && format != CAIRO_FORMAT_RGB24) {
62 ERR("unknown surface format %d, expected %d or %d.",
63 format, CAIRO_FORMAT_ARGB32, CAIRO_FORMAT_RGB24);
89 evas_object_image_alpha_set(image, format == CAIRO_FORMAT_ARGB32);
/external/icu4c/i18n/unicode/
H A Dchoicfmt.h35 #include "unicode/format.h"
153 * fmt.format(x, str);
297 * parsed with that format,and should be in
301 * @param formatsToCopy The format strings you want to use for each limit.
315 * @param formats Array of format string
355 using NumberFormat::format;
368 virtual UnicodeString& format(double number,
382 virtual UnicodeString& format(int32_t number,
397 virtual UnicodeString& format(int64_t number,
415 virtual UnicodeString& format(cons
661 ChoiceFormat::format(const Formattable& obj, function in class:ChoiceFormat
670 ChoiceFormat::format(double number, function in class:ChoiceFormat
676 ChoiceFormat::format(int32_t number, function in class:ChoiceFormat
[all...]
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DSupport_DecimalFormat.java43 DecimalFormat format = (DecimalFormat) NumberFormat
48 t_FormatWithField(0, format, number, text, NumberFormat.Field.CURRENCY,
50 t_FormatWithField(1, format, number, text, NumberFormat.Field.INTEGER,
52 t_FormatWithField(2, format, number, text,
54 t_FormatWithField(3, format, number, text,
56 t_FormatWithField(4, format, number, text, NumberFormat.Field.FRACTION,
60 t_FormatWithField(5, format, number, text, NumberFormat.Field.SIGN, 0,
62 t_FormatWithField(6, format, number, text, NumberFormat.Field.EXPONENT,
64 t_FormatWithField(7, format, number, text,
66 t_FormatWithField(8, format, numbe
[all...]
/external/v8/src/arm/
H A Ddisasm-arm.cc104 int FormatVFPRegister(Instruction* instr, const char* format);
106 int FormatVFPinstruction(Instruction* instr, const char* format);
117 void Format(Instruction* instr, const char* format);
322 int Decoder::FormatRegister(Instruction* instr, const char* format) { argument
323 ASSERT(format[0] == 'r');
324 if (format[1] == 'n') { // 'rn: Rn register
328 } else if (format[1] == 'd') { // 'rd: Rd register
332 } else if (format[1] == 's') { // 'rs: Rs register
336 } else if (format[1] == 'm') { // 'rm: Rm register
340 } else if (format[
371 FormatVFPRegister(Instruction* instr, const char* format) argument
405 FormatVFPinstruction(Instruction* instr, const char* format) argument
426 FormatOption(Instruction* instr, const char* format) argument
651 Format(Instruction* instr, const char* format) argument
[all...]
/external/webkit/Source/JavaScriptCore/assembler/
H A DSH4Assembler.h1573 const char *format = 0; local
1577 format = " BRK\n";
1580 format = " NOP\n";
1583 format =" *RTS\n";
1586 format = " SETS\n";
1589 format = " SETT\n";
1592 format = " CLRT\n";
1595 format = " FSCHG\n";
1598 if (format) {
1599 printfStdoutInstr(format);
2030 printfStdoutInstr(const char* format, ...) argument
2040 vprintfStdoutInstr(const char* format, va_list args) argument
[all...]
/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
H A DTextureUtil.java44 throw new UnsupportedOperationException("Unsupported depth format: " + fmt);
47 throw new UnsupportedOperationException("Unsupported format: " + fmt);
49 throw new UnsupportedOperationException("Unrecognized format: " + fmt);
146 int format = -1;
152 format = GLES20.GL_ALPHA;
156 format = GLES20.GL_LUMINANCE;
160 format = GLES20.GL_LUMINANCE_ALPHA;
164 format = GLES20.GL_LUMINANCE_ALPHA;
168 format = GLES20.GL_LUMINANCE;
172 format
[all...]
/external/jmonkeyengine/engine/src/android/com/jme3/asset/
H A DAndroidImageInfo.java23 protected Format format; field in class:AndroidImageInfo
46 return format;
69 format = Image.Format.Alpha8;
72 format = Image.Format.ARGB4444;
75 format = Image.Format.RGBA8;
78 format = Image.Format.RGB565;
82 // as renderer doesn't check format
84 format = null;
/external/webkit/Source/JavaScriptCore/wtf/
H A DStringExtras.h40 inline int snprintf(char* buffer, size_t count, const char* format, ...) argument
44 va_start(args, format);
45 result = _vsnprintf(buffer, count, format, args);
56 inline double wtf_vsnprintf(char* buffer, size_t count, const char* format, va_list args) argument
58 int result = _vsnprintf(buffer, count, format, args);
70 #define vsnprintf(buffer, count, format, args) wtf_vsnprintf(buffer, count, format, args)
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio_gsxb.c204 Uint16 test_format = SDL_FirstAudioFormat(spec->format);
207 resolution = spec->format & 0x00ff;
208 format_signed = ((spec->format & 0x8000)!=0);
209 format_bigendian = ((spec->format & 0x1000)!=0);
211 DEBUG_PRINT((DEBUG_NAME "asked: %d bits, ",spec->format & 0x00ff));
212 DEBUG_PRINT(("signed=%d, ", ((spec->format & 0x8000)!=0)));
213 DEBUG_PRINT(("big endian=%d, ", ((spec->format & 0x1000)!=0)));
224 spec->format = test_format;
225 resolution = spec->format & 0xff;
226 format_signed = (spec->format
[all...]
/external/icu4c/test/intltest/
H A Dcaltztst.cpp136 // Tries to mimic the Java Date.toString() format.
148 DateFormat* format = getDateFormat(); local
149 if (format == 0)
154 format->format(d, str);
155 releaseDateFormat(format);
164 DateFormat* format = getDateFormat(); local
165 if (format == 0)
170 TimeZone* save = format->getTimeZone().clone();
171 format
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DRawHeightMap.java63 private int format; field in class:RawHeightMap
88 this.format = FORMAT_8BIT;
91 public RawHeightMap(String filename, int size, int format, boolean swapxy) throws Exception { argument
98 setup(new FileInputStream(filename), size, format, swapxy);
104 public RawHeightMap(InputStream stream, int size, int format, boolean swapxy) throws Exception { argument
105 setup(stream, size, format, swapxy);
108 public RawHeightMap(URL resource, int size, int format, boolean swapxy) throws Exception { argument
117 setup(resource.openStream(), size, format, swapxy);
123 private void setup(InputStream stream, int size, int format, boolean swapxy) throws Exception { argument
133 this.format
[all...]
/external/mdnsresponder/mDNSCore/
H A DmDNSDebug.h34 // warning: `#' flag used with `%s' printf format (for %#s -- pascal string format)
35 // warning: repeated `#' flag in format (for %##s -- DNS name string format)
36 // warning: double format, pointer arg (arg 2) (for %.4a, %.16a, %#a -- IP address formats)
61 #define IS_A_PRINTF_STYLE_FUNCTION(F,A) __attribute__ ((format(printf,F,A)))
119 extern void LogMsg_(const char *format, ...) IS_A_PRINTF_STYLE_FUNCTION(1,2);
120 extern void LogOperation_(const char *format, ...) IS_A_PRINTF_STYLE_FUNCTION(1,2);
121 extern void LogSPS_(const char *format, ...) IS_A_PRINTF_STYLE_FUNCTION(1,2);
122 extern void LogInfo_(const char *format,
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A Dutilities.h30 int ComputePixelSize(GLenum format, GLenum type);
31 GLsizei ComputePitch(GLsizei width, GLenum format, GLenum type, GLint alignment);
32 GLsizei ComputeCompressedPitch(GLsizei width, GLenum format);
33 GLsizei ComputeCompressedSize(GLsizei width, GLsizei height, GLenum format);
34 bool IsCompressed(GLenum format);
37 bool CheckTextureFormatType(GLenum format, GLenum type);
66 D3DFORMAT ConvertRenderbufferFormat(GLenum format);
75 GLenum ConvertBackBufferFormat(D3DFORMAT format);
76 GLenum ConvertDepthStencilFormat(D3DFORMAT format);

Completed in 389 milliseconds

1234567891011>>