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

1 2 3 4 5 6 78 91011>>

  /external/giflib/
Android.mk 9 LOCAL_CFLAGS += -Wno-format -DHAVE_CONFIG_H
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
Platform.java 41 * Format the template with args, only supports the placeholder
44 static String format(String template, Object... args) { method in class:Platform
45 return String.format(template, args);
  /external/harfbuzz_ng/util/
hb-shape.cc 36 format (parser) {}
52 fail (false, "Unknown output format `%s'; supported formats are: %s",
61 if (!format.show_glyph_names)
63 if (!format.show_clusters)
65 if (!format.show_positions)
79 format.serialize_buffer_of_text (buffer, line_no, text, text_len, font, gs);
88 format.serialize_message (line_no, "msg: all shapers failed", gs);
97 format.serialize_buffer_of_glyphs (buffer, line_no, text, text_len, font,
111 format_options_t format; member in struct:output_buffer_t
  /external/libvpx/libvpx/tools/
gen_authors.sh 9 $(git log --pretty=format:"%aN <%aE>" | sort | uniq)
  /external/webkit/Source/WebCore/svg/
SVGAltGlyphElement.idl 31 attribute DOMString format
  /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/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;
  /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.
36 #include "unicode/format.h"
154 * fmt.format(x, str);
243 * Clones this Format object. The caller owns the
249 virtual Format* clone(void) const;
252 * Returns true if the given Format objects are semantically equal.
259 virtual UBool operator==(const Format& other) const;
300 * parsed with that format,and should be in
304 * @param formatsToCopy The format strings you want to use for each limit
663 ChoiceFormat::format(const Formattable& obj, function in class:ChoiceFormat
672 ChoiceFormat::format(double number, function in class:ChoiceFormat
678 ChoiceFormat::format(int32_t number, function in class:ChoiceFormat
    [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";
270 MediaFormat format = new MediaFormat(); local
288 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...]
  /external/webkit/Source/JavaScriptCore/assembler/
SH4Assembler.h 1573 const char *format = 0; local
    [all...]

Completed in 591 milliseconds

1 2 3 4 5 6 78 91011>>