HomeSort by relevance Sort by last modified time
    Searched full:format (Results 126 - 150 of 13920) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/openssh/
log.h 59 __attribute__((format(printf, 1, 2)));
60 void error(const char *, ...) __attribute__((format(printf, 1, 2)));
62 __attribute__((format(printf, 1, 2)));
63 void logit(const char *, ...) __attribute__((format(printf, 1, 2)));
64 void verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
65 void debug(const char *, ...) __attribute__((format(printf, 1, 2)));
66 void debug2(const char *, ...) __attribute__((format(printf, 1, 2)));
67 void debug3(const char *, ...) __attribute__((format(printf, 1, 2)));
72 __attribute__((format(printf, 2, 3)));
  /external/qemu-pc-bios/bochs/bios/
rombios.h 43 #define printf(format, p...) bios_printf(BIOS_PRINTF_SCREEN, format, ##p)
49 # define BX_DEBUG(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p)
51 # define BX_DEBUG(format, p...)
53 #define BX_INFO(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p)
54 #define BX_PANIC(format, p...) bios_printf(BIOS_PRINTF_DEBHALT, format, ##p)
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
utilities.h 30 int ComputePixelSize(GLenum format, GLenum type);
31 GLsizei ComputePitch(GLsizei width, GLenum format, GLenum type, GLint alignment);
32 GLsizei ComputeCompressedPitch(GLsizei width, GLenum format);
33 GLsizei ComputeCompressedSize(GLsizei width, GLsizei height, GLenum format);
34 bool IsCompressed(GLenum format);
37 bool CheckTextureFormatType(GLenum format, GLenum type);
66 D3DFORMAT ConvertRenderbufferFormat(GLenum format);
75 GLenum ConvertBackBufferFormat(D3DFORMAT format);
76 GLenum ConvertDepthStencilFormat(D3DFORMAT format);
  /external/chromium/base/allocator/
unittest_utils.cc 10 inline int snprintf(char* buffer, size_t count, const char* format, ...) {
13 va_start(args, format);
14 result = _vsnprintf(buffer, count, format, args);
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_Color.3 3 SDL_Color \- Format independent color description
30 \fBSDL_Color\fR describes a color in a format independent way\&. You can convert a \fBSDL_Color\fR to a pixel value for a certain pixel format using \fI\fBSDL_MapRGB\fP\fR\&.
  /external/skia/legacy/src/ports/
SkDebug_brew.cpp 19 void SkDebugf(const char format[], ...) {
22 va_start(args, format);
23 VSNPRINTF(buffer, kBufferSize, format, args);
  /external/skia/src/ports/
SkDebug_brew.cpp 19 void SkDebugf(const char format[], ...) {
22 va_start(args, format);
23 VSNPRINTF(buffer, kBufferSize, format, args);
  /libcore/luni/src/test/java/libcore/java/text/
OldDateFormatTest.java 46 public StringBuffer format(Date date, StringBuffer toAppendTo, method in class:OldDateFormatTest.MockDateFormat
71 DateFormat format = DateFormat.getInstance(); local
72 DateFormat clone = (DateFormat) format.clone();
73 assertTrue("Clone and parent are not equaled", format.equals(clone));
76 format.setCalendar(Calendar.getInstance());
77 assertTrue("Clone and parent are not equaled", format.equals(clone));
84 * java.text.DateFormat#format(java.util.Date) Test of method
85 * java.text.DateFormat#format(java.util.Date).
89 DateFormat format = DateFormat.getDateTimeInstance( local
92 String dtf = format.format(current)
107 DateFormat format = DateFormat.getDateTimeInstance( local
127 DateFormat format = DateFormat.getInstance(); local
207 DateFormat format = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT, Locale.US); local
471 DateFormat format = DateFormat.getInstance(); local
    [all...]
  /hardware/samsung_slsi/exynos5/original-kernel-headers/linux/
v4l2-subdev.h 31 * enum v4l2_subdev_format_whence - Media bus format type
32 * @V4L2_SUBDEV_FORMAT_TRY: try format, for negotiation only
33 * @V4L2_SUBDEV_FORMAT_ACTIVE: active format, applied to the device
41 * struct v4l2_subdev_format - Pad-level media bus format
42 * @which: format type (from enum v4l2_subdev_format_whence)
44 * @format: media bus format (format code and frame size)
49 struct v4l2_mbus_framefmt format; member in struct:v4l2_subdev_format
55 * @which: format type (from enum v4l2_subdev_format_whence
    [all...]
  /packages/apps/DeskClock/res/values/
attrs.xml 26 <attr name="targetDrawables" format="reference"/>
29 <attr name="targetDescriptions" format="reference"/>
32 <attr name="directionDescriptions" format="reference"/>
35 <attr name="handleDrawable" format="reference"/>
38 <attr name="outerRingDrawable" format="reference"/>
41 <attr name="pointDrawable" format="reference"/>
44 <attr name="innerRadius" format="dimension"/>
47 <attr name="outerRadius" format="dimension"/>
51 <attr name="hitRadius" format="dimension"/>
55 <attr name="glowRadius" format="dimension"/
    [all...]
  /packages/apps/Settings/res/values/
attrs.xml 19 <attr name="state_encrypted" format="boolean" />
22 <attr name="icon" format="reference" />
48 <attr name="emptyColor" format="color" />
50 <attr name="minTickWidth" format="dimension" />
55 <attr name="optimalWidth" format="dimension" />
57 <attr name="optimalWidthWeight" format="float" />
61 <attr name="sweepDrawable" format="reference" />
66 <attr name="neighborMargin" format="dimension" />
67 <attr name="labelSize" format="dimension" />
68 <attr name="labelTemplate" format="reference" /
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
Assertions.cpp 31 #pragma GCC diagnostic ignored "-Wmissing-format-attribute"
103 static void vprintf_stderr_common(const char* format, va_list args)
106 if (strstr(format, "%@")) {
107 CFStringRef cfFormat = CFStringCreateWithCString(NULL, format, kCFStringEncodingUTF8);
125 int size = vsnprintf(0, 0, format, args);
128 vsnprintf(buffer.data(), size, format, args);
132 LOG_PRI_VA(ANDROID_LOG_DEBUG, "WebKit", format, args);
144 if (_vsnprintf(buffer, size, format, args) != -1) {
169 vfprintf(stdout, format, args);
171 vfprintf(stderr, format, args)
    [all...]
  /external/clang/test/Sema/
format-strings-scanf.c 22 scanf("%0d", i); // expected-warning{{zero field width in scanf format string is unused}}
23 scanf("%00d", i); // expected-warning{{zero field width in scanf format string is unused}}
24 scanf("%d%[asdfasdfd", i, s); // expected-warning{{no closing ']' for '%[' in scanf format string}}
32 scanf("%d", i, i); // expected-warning{{data argument not used by format string}}
33 scanf("%*d", i); // // expected-warning{{data argument not used by format string}}
34 scanf("%*d", i); // // expected-warning{{data argument not used by format string}}
52 // format string is somewhere else, point to it in a note.
56 const char kFormat1[] = "%00d"; // expected-note{{format string is defined here}}}
57 scanf(kFormat1, i); // expected-warning{{zero field width in scanf format string is unused}}
58 scanf("%00d", i); // expected-warning{{zero field width in scanf format string is unused}
    [all...]
format-strings-enum-fixed-type.cpp 19 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has type 'TestEnum'}}
20 printf("%hhd", Constant); // expected-warning{{format specifies type 'char'}}
29 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has type 'TestEnum'}}
30 printf("%lld", Constant); // expected-warning{{format specifies type 'long long'}}
37 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has type 'LongEnum'}}
38 printf("%u", LongConstant); // expected-warning{{format specifies type 'unsigned int'}}
49 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has type 'ShortEnum'}}
50 printf("%hhd", ShortConstant); // expected-warning{{format specifies type 'char'}}
59 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has type 'ShortEnum'}}
60 printf("%lld", ShortConstant); // expected-warning{{format specifies type 'long long'}
    [all...]
  /development/samples/HoneycombGallery/res/values/
attrs.xml 19 <attr name="listDragShadowBackground" format="reference" />
20 <attr name="menuIconCamera" format="reference" />
21 <attr name="menuIconToggle" format="reference" />
22 <attr name="menuIconShare" format="reference" />
  /device/google/accessory/demokit/app/res/values/
attrs.xml 4 <attr name="vertical" format="boolean" />
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
ASTTreeParser.stg 38 _first_<enclosingTreeLevel> ||= <root.el.label; format="label">.tree<\n>
40 _first_<enclosingTreeLevel> ||= <root.el.label; format="label"><\n>
74 tree_for_<label> = <terminalOptions.node; format="constantPath">.new( <label; format="label"> )
76 tree_for_<label> = @adaptor.copy_node( <label; format="label"> )
82 _first_<treeLevel> ||= <label; format="label"><\n>
91 <addToList(elem={<label; format="label">},...)>
100 tree_for_<label> = <terminalOptions.node; format="constantPath">.new( <label; format="label"> )
102 tree_for_<label> = @adaptor.copy_node( <label; format="label">
    [all...]
  /external/clang/lib/
CMakeLists.txt 19 add_subdirectory(Format)
  /external/clang/lib/Format/
CMakeLists.txt 6 Format.cpp
  /external/clang/test/CodeGen/
2002-06-25-FWriteInterfaceFailure.c 5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
2006-01-13-Includes.c 4 int printf(const char * restrict format, ...);
  /external/eigen/doc/snippets/
IOFormat.cpp 11 std::cout << m1.format(CommaInitFmt) << sep;
12 std::cout << m1.format(CleanFmt) << sep;
13 std::cout << m1.format(OctaveFmt) << sep;
14 std::cout << m1.format(HeavyFmt) << sep;
  /external/giflib/
Android.mk 9 LOCAL_CFLAGS += -Wno-format -DHAVE_CONFIG_H
  /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/css/
WCSSPropertyNames.in 1 -wap-input-format

Completed in 1067 milliseconds

1 2 3 4 56 7 8 91011>>