HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 151 - 175 of 3271) sorted by null

1 2 3 4 5 67 8 91011>>

  /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/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/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...]
  /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...]
  /system/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...]
  /external/webkit/Source/JavaScriptCore/assembler/
SH4Assembler.h 1573 const char *format = 0; local
    [all...]
  /external/valgrind/main/coregrind/
m_options.c 111 Char* VG_(expand_file_name)(Char* option_name, Char* format)
120 if (VG_STREQ(format, "")) {
126 // If 'format' starts with a '~', abort -- the user probably expected the
130 if (format[0] == '~') {
141 // If 'format' starts with a '/', do not prefix with startup dir.
142 if (format[0] != '/') {
147 len = j + VG_(strlen)(format) + 10;
149 if (format[0] != '/') {
160 while (format[i]) {
161 if (format[i] != '%')
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
TypeFormatter.java 45 public String format(String typeName) { method in class:TypeFormatter
72 return format(typeName.substring(1)) + "[]";
79 public String format(List<String> typeNames) { method in class:TypeFormatter
82 types.add(format(type)); method
84 return format(types, ", ");
88 return format(new ArrayList<DexAnnotation>(annotations), "\n") + "\n";
91 private String format(List<?> elements, String separator) { method in class:TypeFormatter
  /external/webkit/Source/JavaScriptCore/wtf/
StringExtras.h 40 inline int snprintf(char* buffer, size_t count, const char* format, ...)
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)
58 int result = _vsnprintf(buffer, count, format, args);
70 #define vsnprintf(buffer, count, format, args) wtf_vsnprintf(buffer, count, format, args)
  /frameworks/base/core/java/android/text/format/
Formatter.java 17 package android.text.format;
76 value = String.format("%.2f", result);
79 value = String.format("%.1f", result);
81 value = String.format("%.2f", result);
85 value = String.format("%.0f", result);
87 value = String.format("%.2f", result);
90 value = String.format("%.0f", result);
98 * Returns a string in the canonical IP format ###.###.###.### from a packed integer containing
99 * the IP address. The IP address is expected to be in little-endian format (LSB first). That
103 * @return string with canonical IP address format
    [all...]
  /frameworks/base/media/mtp/
MtpDatabase.h 34 MtpObjectFormat format,
45 MtpObjectFormat format,
49 MtpObjectFormat format,
53 MtpObjectFormat format,
60 virtual MtpObjectPropertyList* getSupportedObjectProperties(MtpObjectFormat format) = 0;
80 uint32_t format, uint32_t property,
102 MtpObjectFormat format) = 0;
  /external/qemu/distrib/sdl-1.2.12/src/audio/dma/
SDL_dmaaudio.c 250 static int DMA_ReopenAudio(_THIS, const char *audiodev, int format, int stereo,
280 /* Set the audio format */
281 value = format;
283 (value != format) ) {
284 SDL_SetError("Couldn't set audio format");
311 int format; local
331 SDL_SetError("Couldn't get audio format list");
335 /* Try for a closest match on audio format */
336 format = 0;
337 for ( test_format = SDL_FirstAudioFormat(spec->format);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/mint/
SDL_mintaudio_gsxb.c 204 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 & (1<<15))
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/nto/
SDL_nto_audio.c 126 cpars->format.format = SND_PCM_SFMT_S16_LE;
127 cpars->format.interleave = 1;
128 cpars->format.rate = DEFAULT_CPARAMS_RATE;
129 cpars->format.voices = DEFAULT_CPARAMS_VOICES;
350 int format; local
384 /* Try for a closest match on audio format */
385 format = 0;
386 /* can't use format as SND_PCM_SFMT_U8 = 0 in nto */
389 for (test_format=SDL_FirstAudioFormat(spec->format); !found ;
    [all...]
  /external/icu4c/test/intltest/
caltztst.cpp 136 // 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->setTimeZone(tz)
    [all...]

Completed in 460 milliseconds

1 2 3 4 5 67 8 91011>>