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

<<11121314151617181920>>

  /external/clang/test/CodeGen/
2002-08-02-UnionTest.c 6 int printf(const char * restrict format, ...);
  /external/clang/test/Sema/
attr-sentinel.c 42 void (*e) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (1,1)));
45 void (*b) (int arg, const char * format, ...) __attribute__ ((__sentinel__)); // expected-note {{function has been explicitly marked sentinel here}}
46 void (*z) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (2))); // expected-note {{function has been explicitly marked sentinel here}}
49 void (*y) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (5))); // expected-note {{function has been explicitly marked sentinel here}}
predefined-function.c 3 char *funk(int format);
  /external/clang/test/SemaCXX/
printf-block.cpp 3 int (^block) (int, const char *,...) __attribute__((__format__(__printf__,2,3))) = ^ __attribute__((__format__(__printf__,2,3))) (int arg, const char *format,...) {return 5;};
17 block(n, "%s %s", hncs, n); // expected-warning{{cannot pass non-POD object of type 'HasNoCStr' to variadic block; expected type from format string was 'char *'}} expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
  /external/compiler-rt/BlocksRuntime/tests/
dispatch_call_Block_with_release.c 12 void callsomething(const char *format, int argument) {
  /external/icu4c/i18n/
windtfmt.h 21 #include "unicode/format.h"
29 * \brief C++ API: Format dates using Windows API.
49 virtual Format *clone(void) const;
53 UnicodeString &format(Calendar &cal, UnicodeString &appendTo, FieldPosition &pos) const;
55 UnicodeString& format(UDate date, UnicodeString& appendTo) const;
60 * Set the calendar to be used by this date format. Initially, the default
69 * Set the calendar to be used by this date format. Initially, the default
130 inline UnicodeString &Win32DateFormat::format(UDate date, UnicodeString& appendTo) const { function in class:Win32DateFormat
131 return DateFormat::format(date, appendTo);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlenderFactory.java 8 import com.jme3.texture.Image.Format;
21 * @param format
22 * the texture format
25 public static TextureBlender createTextureBlender(Format format) {
26 switch (format) {
70 LOGGER.log(Level.WARNING, "Image type not yet supported for blending: {0}. Returning a blender that does not change the texture.", format);
78 throw new IllegalStateException("Unknown image format type: " + format);
  /external/jsilver/src/com/google/streamhtmlparser/
ExternalState.java 76 return String.format("ExternalState: %s", name);
  /external/libselinux/src/
callbacks.h 15 extern int __attribute__ ((format(printf, 2, 3)))
  /external/libsepol/include/sepol/
debug.h 23 * particular format. Passing NULL here
27 __attribute__ ((format(printf, 3, 4)))
  /external/libsepol/src/
handle.h 12 __attribute__ ((format(printf, 3, 4)))
  /external/llvm/autoconf/m4/
c_printf_a.m4 2 # Determine if the printf() functions have the %a format character.
6 [AC_CACHE_CHECK([if printf has the %a format character],[llvm_cv_c_printf_a],
29 AC_DEFINE([HAVE_PRINTF_A],[1],[Define to have the %a format string])
  /external/llvm/lib/Support/
BranchProbability.cpp 16 #include "llvm/Support/Format.h"
22 OS << N << " / " << D << " = " << format("%g%%", ((double)N / D) * 100.0);
  /external/llvm/projects/sample/autoconf/m4/
c_printf_a.m4 2 # Determine if the printf() functions have the %a format character.
6 [AC_CACHE_CHECK([if printf has the %a format character],[llvm_cv_c_printf_a],
29 AC_DEFINE([HAVE_PRINTF_A],[1],[Define to have the %a format string])
  /external/llvm/utils/
GetSourceVersion 6 echo " the exact format of the revision string depends on the source "
22 git log -1 --pretty=format:%H
  /external/qemu/android/
multitouch-screen.h 82 * format, type Format and type GL enums, as used in glTexImage2D() or
83 * glReadPixels(), describing the pixel format.
86 * In the first implementation, ydir is always -1 (bottom to top), format and
94 int format,
  /external/qemu/distrib/sdl-1.2.15/src/audio/dsp/
SDL_dspaudio.c 166 int format; local
202 SDL_SetError("Couldn't get audio format list");
207 /* Try for a closest match on audio format */
208 format = 0;
209 for ( test_format = SDL_FirstAudioFormat(spec->format);
210 ! format && test_format; ) {
212 fprintf(stderr, "Trying format 0x%4.4x\n", test_format);
217 format = AFMT_U8;
222 format = AFMT_S16_LE;
227 format = AFMT_S16_BE
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/
SDL_ps3yuv_c.h 37 extern SDL_Overlay *PS3_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display);
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11modes_c.h 36 extern SDL_Rect **X11_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags);
  /external/skia/legacy/src/core/
SkMask.cpp 61 static int maskFormatToShift(SkMask::Format format) {
62 SkASSERT((unsigned)format < SK_ARRAY_COUNT(gMaskFormatToShift));
63 SkASSERT(SkMask::kBW_Format != format);
64 return gMaskFormatToShift[format];
  /external/skia/src/core/
SkMask.cpp 61 static int maskFormatToShift(SkMask::Format format) {
62 SkASSERT((unsigned)format < SK_ARRAY_COUNT(gMaskFormatToShift));
63 SkASSERT(SkMask::kBW_Format != format);
64 return gMaskFormatToShift[format];
  /external/srtp/crypto/kernel/
err.c 95 err_report(int priority, char *format, ...) {
100 va_start(args, format);
102 vfprintf(err_file, format, args);
138 vsyslog(syslogpri, format, args);
  /external/valgrind/main/coregrind/
pub_core_libcprint.h 65 extern void VG_(err_config_error) ( Char* format, ... );
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
date-format-xparb.js 18 Date.prototype.dateFormat = function(format) {
19 if (Date.formatFunctions[format] == null) {
20 Date.createNewFormat(format);
22 var func = Date.formatFunctions[format];
26 Date.createNewFormat = function(format) {
27 var funcName = "format" + Date.formatFunctions.count++;
28 Date.formatFunctions[format] = funcName;
32 for (var i = 0; i < format.length; ++i) {
33 ch = format.charAt(i);
109 Date.parseDate = function(input, format) {
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
date-format-xparb.js 18 Date.prototype.dateFormat = function(format) {
19 if (Date.formatFunctions[format] == null) {
20 Date.createNewFormat(format);
22 var func = Date.formatFunctions[format];
26 Date.createNewFormat = function(format) {
27 var funcName = "format" + Date.formatFunctions.count++;
28 Date.formatFunctions[format] = funcName;
32 for (var i = 0; i < format.length; ++i) {
33 ch = format.charAt(i);
109 Date.parseDate = function(input, format) {
    [all...]

Completed in 2348 milliseconds

<<11121314151617181920>>