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

1 2 3 4 5 6 7 891011>>

  /dalvik/vm/analysis/
VerifySubs.h 60 void dvmLogVerifyFailure(const Method* meth, const char* format, ...)
62 __attribute__ ((format(printf, 2, 3)))
  /external/apache-http/src/org/apache/http/client/entity/
UrlEncodedFormEntity.java 57 super(URLEncodedUtils.format(parameters, encoding),
71 super(URLEncodedUtils.format(parameters, HTTP.DEFAULT_CONTENT_CHARSET),
  /external/e2fsprogs/lib/et/
com_err.h 31 COM_ERR_ATTR((format(printf, 3, 4)));
35 COM_ERR_ATTR((format(printf, 3, 0)));
  /external/e2fsprogs/util/
gcc-wall-cleanup 18 /zero-length format string/d
  /external/openssl/crypto/bio/
b_print.c 137 const char *format, va_list args);
139 /* format read states */
149 /* format flags - Bits */
175 const char *format,
192 ch = *format++;
204 ch = *format++;
210 ch = *format++;
214 ch = *format++;
218 ch = *format++;
222 ch = *format++
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_yuv_sw_c.h 29 extern SDL_Overlay *SDL_CreateYUV_SW(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.12/src/video/directfb/
SDL_DirectFB_yuv.h 29 extern SDL_Overlay *DirectFB_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fb3dfx.c 56 Uint32 format; local
67 /* Set the destination pixel format */
69 bpp = dst->format->BitsPerPixel;
70 format = dst->pitch | ((bpp+((bpp==8) ? 0 : 8)) << 13);
79 tdfx_out32(DSTFORMAT, format);
115 /* Set the source and destination pixel format */
117 bpp = src->format->BitsPerPixel;
120 bpp = dst->format->BitsPerPixel;
144 tdfx_out32(SRCCOLORKEYMIN, src->format->colorkey);
145 tdfx_out32(SRCCOLORKEYMAX, src->format->colorkey)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/nanox/
SDL_nxmodes.c 31 SDL_Rect ** NX_ListModes (_THIS, SDL_PixelFormat * format, Uint32 flags)
36 if (SDL_Visual.bpp == format -> BitsPerPixel) {
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_phyuv_c.h 42 long format; member in struct:private_yuvhwdata
56 extern SDL_Overlay* ph_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface* display);
  /external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
SDL_gsyuv_c.h 29 extern SDL_Overlay *GS_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5yuv_c.h 30 extern SDL_Overlay *DX5_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11yuv_c.h 31 extern SDL_Overlay *X11_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/skia/src/images/
SkImageDecoder_libpvjpeg.cpp 94 TPvJpgDecOutputFmt format; local
95 format.iColorFormat = TPV_COLORFMT_RGB16;
96 format.iCropped.topLeftX = 0;
97 format.iCropped.topLeftY = 0;
98 format.iCropped.bottomRightX = width - 1;
99 format.iCropped.bottomRightY = height - 1;
100 format.iOutputPitch = bitmap->rowBytes() >> 1;
101 status = codec->SetOutput(&format);
  /frameworks/base/libs/ui/
GraphicBufferAllocator.cpp 66 rec.w, rec.h, rec.format, rec.usage);
78 status_t GraphicBufferAllocator::alloc(uint32_t w, uint32_t h, PixelFormat format,
89 err = mAllocDev->alloc(mAllocDev, w, h, format, usage, handle, stride);
91 err = sw_gralloc_handle_t::alloc(w, h, format, usage, handle, stride);
95 w, h, format, usage, err, strerror(-err));
103 rec.format = format;
106 rec.size = h * stride[0] * bytesPerPixel(format);
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
ustdxept.cpp 42 msgbuf.format (fmt, what(), m_Arg.cdata());
44 try { msgbuf.format (fmt, what(), m_Arg.cdata()); } catch (...) {}
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
DateUtils.java 32 * Returns timestamp given by param in KML format ie yyyy-mm-ddThh:mm:ssZ,
42 return String.format("%tY-%tm-%tdT%tH:%tM:%tSZ", c, c, c, c, c, c);
54 * Returns timestamp in following format: yyyy-mm-dd-hh-mm-ss
59 return String.format("%tY-%tm-%td-%tH-%tM-%tS", c, c, c, c, c, c);
  /packages/wallpapers/Basic/src/com/android/wallpaper/fall/
FallView.java 36 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
37 super.surfaceChanged(holder, format, w, h);
  /dalvik/libcore/sql/src/main/java/java/sql/
Date.java 21 * A class which can consume and produce dates in SQL {@code Date} format.
24 * format only deals with year, month and day values. There are no values for
171 * Produces a string representation of the date in SQL format
173 * @return a string representation of the date in SQL format - {@code
180 format((getYear() + 1900), 4, sb); method
182 format((getMonth() + 1), 2, sb); method
184 format(getDate(), 2, sb);
192 * Private method to format the time
194 private void format(int date, int digits, StringBuilder sb) { method in class:Date
204 * format
    [all...]
Time.java 24 * format and parse the time's representation as a String in JDBC escape format.
178 * Formats the {@code Time} as a String in JDBC escape format: {@code
182 * format: {@code HH:mm:ss}
188 format(getHours(), 2, sb);
190 format(getMinutes(), 2, sb);
192 format(getSeconds(), 2, sb);
200 * Private method to format the time
202 private void format(int date, int digits, StringBuilder sb) { method in class:Time
212 * JDBC escape format: {@code hh:mm:ss}
    [all...]
  /external/bison/lib/
error.h 27 /* The __-protected variants of `format' and `printf' attributes
30 # define __format__ format
39 /* Print a message with `fprintf (stderr, FORMAT, ...)';
  /external/bluetooth/glib/glib/gnulib/
printf-parse.h 1 /* Parse printf format string.
52 /* A parsed format string. */
63 /* Parses the format string. Fills in the number N of directives, and fills
65 to the end of the format string. Also fills in the arg_type fields of the
72 int printf_parse (const char *format, char_directives *d, arguments *a);
  /external/dbus/tools/
dbus-launch.h 44 void verbose (const char *format, ...);
  /external/icu4c/layout/
NonContextualGlyphSubstProc.cpp 38 switch (SWAPW(header->table.format))
  /external/mtpd/
mtpd.h 43 void log_print(int level, char *format, ...);

Completed in 1797 milliseconds

1 2 3 4 5 6 7 891011>>