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

<<11121314151617181920>>

  /external/bison/po/
Makevars 13 --flag=_:1:pass-c-format\
14 --flag=N_:1:pass-c-format\
15 --flag=error:3:c-format --flag=error_at_line:5:c-format\
18 --flag=asprintf:2:c-format\
19 --flag=complain:1:c-format --flag=complain_at:2:c-format\
20 --flag=fatal:1:c-format --flag=fatal_at:2:c-format\
21 --flag=warn:1:c-format --flag=warn_at:2:c-format
    [all...]
  /external/bison/runtime-po/
Makevars 13 --flag=_:1:pass-c-format\
14 --flag=N_:1:pass-c-format\
15 --flag=error:3:c-format --flag=error_at_line:5:c-format\
18 --flag=asprintf:2:c-format\
19 --flag=complain:1:c-format --flag=complain_at:2:c-format\
20 --flag=fatal:1:c-format --flag=fatal_at:2:c-format\
21 --flag=warn:1:c-format --flag=warn_at:2:c-format
    [all...]
  /external/chromium/chrome/common/extensions/
extension_error_utils.h 14 static std::string FormatErrorMessage(const std::string& format,
17 static std::string FormatErrorMessage(const std::string& format,
21 static std::string FormatErrorMessage(const std::string& format,
  /external/clang/test/Sema/
variadic-block.c 8 long (^addthem)(const char *, ...) = ^long (const char *format, ...){
15 va_start(argp, format);
16 for (p = format; *p; p++) switch (*p) {
  /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/icu4c/test/cintltst/
cmsgtst.h 13 /* C API TEST FOR MESSAGE FORMAT */
24 /* The function used to test the Message format API*/
35 * Test format and parse sequence and roundtrip
  /external/icu4c/test/intltest/
dadrfmt.h 22 #include "unicode/format.h"
44 // Format *fromCal, const FormatFieldsSet &toSet, Format *toCal,
  /external/jpeg/
rdgif.c 8 * This file contains routines to read input images in GIF format.
17 * "The Graphics Interchange Format(c) is the Copyright property of
27 * The module selection routine for GIF format input.
  /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/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/lit/lit/ExampleTests/
lit.cfg 11 # testFormat: The test format to use to interpret tests.
22 # target_triple: Used by ShTest format for XFAIL checks.
25 # available_features: Used by ShTest format for REQUIRES checks.
  /external/qemu/distrib/jpeg-6b/
rdgif.c 8 * This file contains routines to read input images in GIF format.
17 * "The Graphics Interchange Format(c) is the Copyright property of
27 * The module selection routine for GIF format input.
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_GetRGB.3 3 SDL_GetRGB \- Get RGB values from a pixel in the specified pixel format\&.
11 Get RGB component values from a pixel stored in the specified pixel format\&.
13 This function uses the entire 8-bit [0\&.\&.255] range when converting color components from pixel formats with less than 8-bits per RGB component (e\&.g\&., a completely white pixel in 16-bit RGB565 format would return [0xff, 0xff, 0xff] not [0xf8, 0xfc, 0xf8])\&.
SDL_GetRGBA.3 3 SDL_GetRGBA \- Get RGBA values from a pixel in the specified pixel format\&.
11 Get RGBA component values from a pixel stored in the specified pixel format\&.
13 This function uses the entire 8-bit [0\&.\&.255] range when converting color components from pixel formats with less than 8-bits per RGB component (e\&.g\&., a completely white pixel in 16-bit RGB565 format would return [0xff, 0xff, 0xff] not [0xf8, 0xfc, 0xf8])\&.
  /external/skia/bench/
TimerData.cpp 47 const char* format = formatString.c_str(); local
48 fWallStr.appendf(format, timer->fWall);
49 fCpuStr.appendf(format, timer->fCpu);
50 fTruncatedWallStr.appendf(format, timer->fTruncatedWall);
51 fTruncatedCpuStr.appendf(format, timer->fTruncatedCpu);
52 fGpuStr.appendf(format, timer->fGpu);
77 const char* format = fNormalTimeFormat.c_str(); local
79 fWallStr.appendf(format, printMin ? fWallMin : fWallSum / repeatDraw);
81 fCpuStr.appendf(format, printMin ? fCpuMin : fCpuSum / repeatDraw);
83 fTruncatedWallStr.appendf(format,
    [all...]
  /external/skia/src/ports/
SkDebug_nacl.cpp 27 void SkDebugf(const char format[], ...) {
31 va_start(args, format);
33 vsnprintf(buffer + strlen(kLogPrefix), kBufferSize, format, args);
  /libcore/luni/src/main/java/java/security/
AlgorithmParametersSpi.java 48 * {@code byte[]} using the default decoding format for parameters. The
49 * default encoding format is ASN.1.
61 * {@code byte[]} using the specified decoding format.
65 * @param format
66 * the name of the decoding format.
71 protected abstract void engineInit(byte[] params, String format)
92 * Returns the parameters in their default encoding format. The default
93 * encoding format is ASN.1.
103 * Returns the parameters in the specified encoding format.
105 * @param format
    [all...]
  /external/icu4c/samples/translit/answers/
main_2.cpp 55 // Format the date in default locale
57 defFmt->format(cal->getTime(status), str, status);
58 check(status, "DateFormat::format");
63 // Format the date for Greece
65 fmt->format(cal->getTime(status), str, status);
66 check(status, "DateFormat::format");
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
VertexBuffer.java 102 * when interleaving is used. By default the format is
121 * Should have the same format and size as {@link Type#Position}.
130 * Should have the same format and size as {@link Type#Normal}.
190 * Should have the same format and size as {@link Type#Tangent}.
228 * Specifies format of the data stored in the buffer.
230 * an {@link Format#UnsignedShort} formatted buffer should use the
232 * For the {@link Format#Half} type, {@link ByteBuffer}s should
235 public static enum Format {
287 Format(int componentSize){
307 * derived from components * format.getComponentSize(
313 protected Format format; field in class:VertexBuffer
    [all...]
  /bootable/recovery/etc/META-INF/com/google/android/
update-script 5 format BOOT:
6 format SYSTEM:
  /dalvik/dx/tests/074-dex-form35c-edge-case/
info.txt 2 an edge case of instruction format 35c works, where a reference
4 the instruction has to be rewritten to use a different format.
  /device/generic/goldfish/opengl/system/renderControl_enc/
renderControl.attrib 36 len pixels (((glUtilsPixelBitSize(format, type) * width) >> 3) * height)
40 len pixels (((glUtilsPixelBitSize(format, type) * width) >> 3) * height)
  /external/icu4c/extra/uconv/unicode/
uwmsg.h 23 /* Format a message and print it's output to a given file stream */
26 /* format an error message */
  /external/libsepol/include/sepol/
debug.h 23 * particular format. Passing NULL here
27 __attribute__ ((format(printf, 3, 4)))
  /external/smack/src/org/xbill/DNS/
FormattedTime.java 6 * Routines for converting time values to and from YYYYMMDDHHMMSS format.
36 format(Date date) { method in class:FormattedTime
41 sb.append(w4.format(c.get(Calendar.YEAR)));
42 sb.append(w2.format(c.get(Calendar.MONTH)+1));
43 sb.append(w2.format(c.get(Calendar.DAY_OF_MONTH)));
44 sb.append(w2.format(c.get(Calendar.HOUR_OF_DAY)));
45 sb.append(w2.format(c.get(Calendar.MINUTE)));
46 sb.append(w2.format(c.get(Calendar.SECOND)));

Completed in 743 milliseconds

<<11121314151617181920>>