HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 51 - 75 of 1999) sorted by null

1 23 4 5 6 7 8 91011>>

  /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...]
  /external/v8/src/arm/
disasm-arm.cc 102 int FormatVFPRegister(Instr* instr, const char* format);
103 int FormatVFPinstruction(Instr* instr, const char* format);
113 void Format(Instr* instr, const char* format);
293 int Decoder::FormatRegister(Instr* instr, const char* format) {
294 ASSERT(format[0] == 'r');
295 if (format[1] == 'n') { // 'rn: Rn register
299 } else if (format[1] == 'd') { // 'rd: Rd register
303 } else if (format[1] == 's') { // 'rs: Rs register
307 } else if (format[1] == 'm') { // 'rm: Rm registe
    [all...]
  /frameworks/base/libs/ui/
PixelFormat.cpp 18 #include <pixelflinger/format.h>
37 ssize_t bytesPerPixel(PixelFormat format)
40 status_t err = getPixelFormatInfo(format, &info);
44 ssize_t bitsPerPixel(PixelFormat format)
47 status_t err = getPixelFormatInfo(format, &info);
51 status_t getPixelFormatInfo(PixelFormat format, PixelFormatInfo* info)
53 if (format < 0)
59 // YUV format from the HAL are handled here
60 switch (format) {
77 info->format = format
    [all...]
  /dalvik/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/bluetooth/glib/glib/
gmessages.h 46 /* calculate a string size, guaranteed to fit format + args.
48 gsize g_printf_string_upper_bound (const gchar* format,
99 const gchar *format,
103 const gchar *format,
158 #define g_error(format...) G_STMT_START { \
161 format); \
165 #define g_message(format...) g_log (G_LOG_DOMAIN, \
167 format)
168 #define g_critical(format...) g_log (G_LOG_DOMAIN, \
170 format)
    [all...]
gerror.c 36 const gchar *format,
45 error->message = g_strdup_vprintf (format, args);
54 * @format: printf()-style format for error message
55 * @Varargs: parameters for message format
58 * and a message formatted with @format.
65 const gchar *format,
71 g_return_val_if_fail (format != NULL, NULL);
74 va_start (args, format);
75 error = g_error_new_valist (domain, code, format, args)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/baudio/
SDL_beaudio.cc 98 const media_raw_audio_format &format)
156 media_raw_audio_format format; local
157 Uint16 test_format = SDL_FirstAudioFormat(spec->format);
159 /* Parse the audio format and fill the Be raw audio format */
160 memset(&format, '\0', sizeof (media_raw_audio_format));
161 format.byte_order = B_MEDIA_LITTLE_ENDIAN;
162 format.frame_rate = (float) spec->freq;
163 format.channel_count = spec->channels; /* !!! FIXME: support > 2? */
166 spec->format = test_format
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
gt.h 193 GT_0trace(struct GT_Mask mask, SmBits class, String format)
199 GT_1trace(struct GT_Mask mask, SmBits class, String format, ...)
205 GT_2trace(struct GT_Mask mask, SmBits class, String format, ...)
211 GT_3trace(struct GT_Mask mask, SmBits class, String format, ...)
217 GT_4trace(struct GT_Mask mask, SmBits class, String format, ...)
223 GT_5trace(struct GT_Mask mask, SmBits class, String format, ...)
229 GT_6trace(struct GT_Mask mask, SmBits class, String format, ...)
243 extern Int _GT_trace(struct GT_Mask * mask, String format, ...);
278 #define GT_0trace( mask, class, format )
279 #define GT_1trace( mask, class, format, arg1
    [all...]
  /external/dropbear/
cli-main.c 32 static void cli_dropbear_exit(int exitcode, const char* format, va_list param);
33 static void cli_dropbear_log(int priority, const char* format, va_list param);
82 static void cli_dropbear_exit(int exitcode, const char* format, va_list param) {
88 format);
93 cli_opts.remoteport, format);
106 const char* format, va_list param) {
110 vsnprintf(printbuf, sizeof(printbuf), format, param);
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
AudioFileFormat.java 28 private AudioFormat format; field in class:AudioFileFormat
34 AudioFormat format,
38 this.format = format;
43 AudioFormat format,
46 this.format = format;
51 AudioFormat format,
55 this.format = format;
    [all...]
  /dalvik/vm/analysis/
RegisterMap.h 29 * Format enumeration for RegisterMap data area.
49 * Size of (format==FormatNone): 1 byte
50 * Size of (format==FormatCompact8): 4 + (1 + regWidth) * numEntries
51 * Size of (format==FormatCompact16): 4 + (2 + regWidth) * numEntries
55 u1 format; /* enum RegisterMapFormat; MUST be first entry */ member in struct:RegisterMap
67 * Get the format.
70 return pMap->format & ~(kRegMapFormatOnHeap);
74 * Set the format.
76 INLINE void dvmRegisterMapSetFormat(RegisterMap* pMap, RegisterMapFormat format)
78 pMap->format &= kRegMapFormatOnHeap
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
Output.java 46 * @param format The format string.
47 * @param args The arguments for the format string.
49 * @see String#format(String, Object...)
51 public void write(String format, Object... args) {
53 mWriter.write(String.format(format, args));
  /external/webkit/WebKit/android/plugins/
ANPLogInterface.cpp 32 static void anp_log(ANPLogType logType, const char format[], ...) {
34 va_start(args, format);
51 LOG_PRI_VA(priority, "plugin", format, args);
  /frameworks/base/graphics/java/android/graphics/
PixelFormat.java 25 /** System chooses a format that supports translucency (many alpha bits) */
29 * System chooses a format that supports transparency
34 /** System chooses an opaque format (no alpha bits required) */
85 public static native void getPixelFormatInfo(int format, PixelFormat info);
86 public static boolean formatHasAlpha(int format) {
87 switch (format) {
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x501/
Name.java 109 * the format requested
111 * @param format
112 * Name format requested
114 * the format requested
116 public String getName(String format) {
121 if (X500Principal.RFC1779.equals(format)) {
124 rfc1779String = getName0(format);
128 } else if (X500Principal.RFC2253.equals(format)) {
131 rfc2253String = getName0(format);
135 } else if (X500Principal.CANONICAL.equals(format)) {
    [all...]
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
MessageFormatTest.java 37 import java.text.Format;
56 private void checkSerialization(MessageFormat format) {
60 out.writeObject(format);
65 assertTrue("Not equal: " + format.toPattern(), format.equals(read));
67 fail("Format: " + format.toPattern() + " caused IOException: " + e);
69 fail("Format: " + format.toPattern()
88 MessageFormat format = new MessageFormat local
111 MessageFormat format = new MessageFormat( local
193 MessageFormat format = new MessageFormat("test"); local
339 MessageFormat format = new MessageFormat("test"); local
358 MessageFormat format = new MessageFormat("'{'choice'}'{0}"); local
454 MessageFormat format = new MessageFormat("{1,number,integer}"); local
520 MessageFormat format = new MessageFormat(pattern, Locale.US); local
1044 MessageFormat format = new MessageFormat("date is {0,date,MMM d, yyyy}"); local
1089 MessageFormat format = new MessageFormat("date {0,date}"); local
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JDKECDSAAlgParameters.java 26 String format)
29 if (format == null)
34 if (format.equals("ASN.1"))
64 String format)
67 throw new IOException("Unknown parameters format in IV parameters object");
  /external/icu4c/test/cintltst/
cdtdptst.h 15 /* INDEPTH TEST FOR DATE FORMAT */
53 void tryPat994(UDateFormat* format, const char* pat, const char* s, UDate expected);
  /external/oprofile/libutil/
fscanf.c 5 int fscanf(FILE* stream, const char* format, int* value)
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxmodes_c.h 36 extern SDL_Rect **CGX_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags);
  /external/webkit/WebKit/chromium/src/
WebPageSerializer.cpp 62 return String::format("<META http-equiv=\"Content-Type\" content=\"text/html; charset=%s\">",
68 return String::format("\n<!-- saved from url=(%04d)%s -->\n",
77 targetDeclaration = String::format(" target=\"%s\"", baseTarget.utf8().data());
78 return String::format("<BASE href=\".\"%s>", targetDeclaration.utf8().data());
  /packages/apps/Calendar/src/com/android/calendar/
Navigator.java 19 import android.text.format.Time;
  /system/vold/
Fat.h 28 static int format(const char *fsPath, unsigned int numSectors);
  /dalvik/libcore/security/src/main/java/java/security/
KeyRep.java 44 // Key encoding format
45 private final String format; field in class:KeyRep
58 * @param format
59 * the format of the key (obtained by {@link Key#getFormat()}).
64 * if {@code type, algorithm, format or encoded} is {@code null}
68 String algorithm, String format, byte[] encoded) {
71 this.format = format;
79 if(this.format == null) {
88 * Resolves and returns the {@code Key} object. Three {@link Type}|format
    [all...]
  /external/guava/src/com/google/common/base/
CaseFormat.java 65 * Converts the specified {@code String s} from this format to the specified
66 * {@code format}. A "best effort" approach is taken; if {@code s} does not
67 * conform to the assumed format, then the behavior of this method is
70 public String to(CaseFormat format, String s) {
71 if (format == null) {
79 if (format == this) {
86 switch (format) {
92 switch (format) {
98 switch (format) {
113 out.append(format.normalizeFirstWord(s.substring(i, j)))
    [all...]

Completed in 1795 milliseconds

1 23 4 5 6 7 8 91011>>