HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 176 - 200 of 4486) sorted by null

1 2 3 4 5 6 78 91011>>

  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dop.java 29 /** {@code non-null;} the instruction format */
30 private final InsnFormat format; field in class:Dop
44 * @param format {@code non-null;} the instruction format
49 public Dop(int opcode, int family, InsnFormat format,
59 if (format == null) {
60 throw new NullPointerException("format == null");
69 this.format = format;
100 * Gets the instruction format
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
Dop.java 40 /** {@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,
74 if (format == null) {
75 throw new NullPointerException("format == null");
81 this.format = format;
111 * Gets the instruction format
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyPairGenerator1.java 96 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/
format-strings.cpp 20 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, ...) __attribute__((__format__ (__printf__, 1, 2)))
62 const char * const format = fmt; local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
Dop.java 40 /** {@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,
74 if (format == null) {
75 throw new NullPointerException("format == null");
81 this.format = format;
111 * Gets the instruction format
    [all...]
  /external/dropbear/
dbutil.h 36 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/
DeviceTables.cpp 24 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/
err.h 138 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/JavaScriptCore/docs/
make-bytecode-docs.pl 22 my $format = $_;
23 $format =~ s|.* /\* ||;
32 print OUTPUT "<h2><code>${opcode}</code></h2>\n<p><b>Format: </b><code>\n${format}\n</code></p>\n<p>\n${doc}\n</p>\n";
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerTexture.cpp 51 bool LayerTexture::isValid(const IntSize& size, unsigned format)
53 return m_token && size == m_size && format == m_format && m_textureManager->hasTexture(m_token);
56 bool LayerTexture::reserve(const IntSize& size, unsigned format)
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/
ewk_util.cpp 38 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);
  /libcore/support/src/test/java/libcore/java/io/
NullPrintStream.java 36 public PrintStream format(String format, Object... args) { return this; } method in class:NullPrintStream
37 public PrintStream format(Locale l, String format, Object... args) { return this; } method in class:NullPrintStream
38 public PrintStream printf(String format, Object... args) { return this; }
39 public PrintStream printf(Locale l, String format, Object... args) { return this; }
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyPairGenerator1.java 97 private String format; field in class:MyKeyPairGenerator1.PubKey
103 this.format = "test1";
112 return format;
123 private String format; field in class:MyKeyPairGenerator1.PrivKey
129 this.format = "test1";
138 return format;
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
AdbWrapper.java 54 private void display(String format, Object...args) {
55 mMonitor.log(format, args);
58 private void displayError(String format, Object...args) {
59 mMonitor.logError(format, args);
97 displayError(String.format(
143 displayError(String.format(
  /libcore/support/src/test/java/tests/support/
Support_DecimalFormat.java 42 DecimalFormat format = (DecimalFormat) NumberFormat local
47 t_FormatWithField(0, format, number, text, NumberFormat.Field.CURRENCY,
49 t_FormatWithField(1, format, number, text, NumberFormat.Field.INTEGER,
51 t_FormatWithField(2, format, number, text,
53 t_FormatWithField(3, format, number, text,
55 t_FormatWithField(4, format, number, text, NumberFormat.Field.FRACTION,
59 t_FormatWithField(5, format, number, text, NumberFormat.Field.SIGN, 0,
61 t_FormatWithField(6, format, number, text, NumberFormat.Field.EXPONENT,
63 t_FormatWithField(7, format, number, text,
65 t_FormatWithField(8, format, number, text
175 DecimalFormat format = new DecimalFormat("###0.##\\u2030"); local
    [all...]
  /external/icu4c/i18n/unicode/
choicfmt.h 18 * 07/22/98 stephen Removed operator!= (implemented in Format)
29 * \brief C++ API: Choice Format.
35 #include "unicode/format.h"
153 * fmt.format(x, str);
240 * Clones this Format object. The caller owns the
246 virtual Format* clone(void) const;
249 * Returns true if the given Format objects are semantically equal.
256 virtual UBool operator==(const Format& other) const;
297 * parsed with that format,and should be in
301 * @param formatsToCopy The format strings you want to use for each limit
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...]
  /frameworks/support/volley/src/com/android/volley/
VolleyLog.java 32 public static void v(String format, Object... args) {
34 Log.v(TAG, buildMessage(format, args));
38 public static void d(String format, Object... args) {
39 Log.d(TAG, buildMessage(format, args));
42 public static void e(String format, Object... args) {
43 Log.e(TAG, buildMessage(format, args));
46 public static void wtf(String format, Object... args) {
47 Log.wtf(TAG, buildMessage(format, args));
50 public static void wtf(Throwable tr, String format, Object... args) {
51 Log.wtf(TAG, buildMessage(format, args), tr)
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
Support_DecimalFormat.java 43 DecimalFormat format = (DecimalFormat) NumberFormat local
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, number, text
152 DecimalFormat format = new DecimalFormat("###0.##\\u2030"); local
    [all...]
  /external/v8/src/arm/
disasm-arm.cc 104 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) {
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 registe
    [all...]
  /frameworks/base/media/java/android/media/
MediaFormat.java 24 * Encapsulates the information describing the format of media data,
27 * The format of the media data is specified as string/value pairs.
33 * <tr><td>{@link #KEY_MIME}</td><td>String</td><td>The type of the format.</td></tr>
70 * A key describing the sample rate of an audio format.
76 * A key describing the number of channels in an audio format.
82 * A key describing the width of the content in a video format.
88 * A key describing the height of the content in a video format.
106 * A key describing the color format of the content in a video format.
109 public static final String KEY_COLOR_FORMAT = "color-format";
268 MediaFormat format = new MediaFormat(); local
286 MediaFormat format = new MediaFormat(); local
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
CachedFrameManager.java 44 public Frame newFrame(FrameFormat format) {
45 Frame result = findAvailableFrame(format, Frame.NO_BINDING, 0);
47 result = super.newFrame(format);
54 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) {
55 Frame result = findAvailableFrame(format, bindingType, bindingId);
57 result = super.newBoundFrame(format, bindingType, bindingId);
130 private Frame findAvailableFrame(FrameFormat format, int bindingType, long bindingId) {
131 // Look for a frame that is compatible with the requested format
135 // Check that format is compatible
136 if (frame.getFormat().isReplaceableBy(format)) {
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
stdio-write.c 67 printf (const char *format, ...)
72 va_start (args, format);
73 retval = vfprintf (stdout, format, args);
82 fprintf (FILE *stream, const char *format, ...)
87 va_start (args, format);
88 retval = vfprintf (stream, format, args);
97 vprintf (const char *format, va_list args)
99 return vfprintf (stdout, format, args);
105 vfprintf (FILE *stream, const char *format, va_list args)
108 CALL_WITH_SIGPIPE_EMULATION (int, vfprintf (stream, format, args), ret == EOF
    [all...]
  /tools/build/gradle/src/main/groovy/com/android/build/gradle/
AndroidLogger.groovy 36 logger.log(LogLevel.ERROR, String.format(s, objects))
39 logger.log(LogLevel.ERROR, String.format(s, objects), throwable)
45 logger.log(LogLevel.WARN, String.format(s, objects))
50 logger.log(LogLevel.INFO, String.format(s, objects))
55 logger.log(LogLevel.INFO, String.format(s, objects))
  /external/webkit/Source/JavaScriptCore/assembler/
SH4Assembler.h 1573 const char *format = 0; local
    [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
TextureUtil.java 9 import com.jme3.texture.Image.Format;
15 public static int convertTextureFormat(Format fmt){
44 throw new UnsupportedOperationException("Unsupported depth format: " + fmt);
47 throw new UnsupportedOperationException("Unsupported format: " + fmt);
49 throw new UnsupportedOperationException("Unrecognized format: " + fmt);
132 Image.Format fmt = img.getFormat();
146 int format = -1; local
152 format = GLES20.GL_ALPHA;
156 format = GLES20.GL_LUMINANCE;
160 format = GLES20.GL_LUMINANCE_ALPHA
    [all...]

Completed in 1612 milliseconds

1 2 3 4 5 6 78 91011>>