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

1 2 3 4 5 6 7 891011>>

  /external/libcxxabi/src/
abort_message.cpp 30 void abort_message(const char* format, ...)
37 va_start(list, format);
38 vfprintf(stderr, format, list);
46 va_start(list2, format);
47 vasprintf(&buffer, format, list2);
53 va_start(list2, format);
54 vasprintf(&buffer, format, list2);
  /external/lldb/include/lldb/Core/
Error.h 162 /// Log the error given a formatted string \a format. If the this
170 /// @param[in] format
171 /// A printf style format string.
175 /// format string \a format.
178 PutToLog (Log *log, const char *format, ...) __attribute__ ((format (printf, 3, 4)));
183 /// Log the error given a formatted string \a format only if the
191 /// @param[in] format
192 /// A printf style format string
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpDate.java 32 * Most websites serve cookies in the blessed format. Eagerly create the parser to ensure such
44 /** If we fail to parse a date in a non-standard format, try each of these formats in sequence. */
60 /* RI bug 6641315 claims a cookie of this format was once served by www.yahoo.com */
75 DateFormat format = BROWSER_COMPATIBLE_DATE_FORMATS[i]; local
76 if (format == null) {
77 format = new SimpleDateFormat(BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS[i], Locale.US);
78 BROWSER_COMPATIBLE_DATE_FORMATS[i] = format;
81 return format.parse(value);
90 public static String format(Date value) { method in class:HttpDate
91 return STANDARD_DATE_FORMAT.get().format(value)
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/
keyboard_overlay_data.js 92 'format': 'smaller',
154 'format': 'right',
158 'format': 'left',
220 'format': 'right',
224 'format': 'left',
287 'format': 'left',
342 'format': 'right',
347 'format': 'left',
385 'format': 'smaller'
388 'format': 'smaller
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
AlgorithmParametersSpi.java 17 protected boolean isASN1FormatString(String format)
19 return format == null || format.equals("ASN.1");
59 String format)
61 if (isASN1FormatString(format))
115 String format)
118 if (isASN1FormatString(format) || format.equalsIgnoreCase("X.509"))
124 throw new IOException("Unknown parameter format " + format);
    [all...]
  /external/chromium_org/media/audio/
audio_parameters.h 33 enum Format {
37 AUDIO_LAST_FORMAT // Only used for validation of format.
57 AudioParameters(Format format, ChannelLayout channel_layout,
60 AudioParameters(Format format, ChannelLayout channel_layout,
63 AudioParameters(Format format, ChannelLayout channel_layout,
67 void Reset(Format format, ChannelLayout channel_layout
91 Format format() const { return format_; } function in class:media::AudioParameters
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
Assertions.cpp 32 #pragma GCC diagnostic ignored "-Wmissing-format-attribute"
79 static void vprintf_stderr_common(const char* format, va_list args)
82 if (strstr(format, "%@")) {
83 CFStringRef cfFormat = CFStringCreateWithCString(NULL, format, kCFStringEncodingUTF8);
112 asl_vlog(0, 0, ASL_LEVEL_NOTICE, format, copyOfArgs);
119 __android_log_vprint(ANDROID_LOG_WARN, "WebKit", format, args);
130 if (_vsnprintf(buffer, size, format, args) != -1) {
141 vfprintf(stderr, format, args);
149 static void vprintf_stderr_with_prefix(const char* prefix, const char* format, va_list args)
152 size_t formatLength = strlen(format);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_surface.c 36 unsigned flags, unsigned format,
40 int ret, cpp = _mesa_get_format_bytes(format);
46 .format = format,
50 .pitch = _mesa_format_row_stride(format, width),
62 if (_mesa_get_format_bits(format, GL_DEPTH_BITS))
70 get_format_blocksy(format, height) * s->pitch,
82 dst->format = src->format;
  /external/chromium_org/tools/gyp/test/make_global_settings/ar/
gyptest-make_global_settings_ar.py 18 elif test.format == 'make':
20 elif test.format == 'ninja':
33 if test.format == 'make':
39 elif test.format == 'ninja':
44 if test.format == 'make':
46 elif test.format == 'ninja':
60 if test.format == 'make':
62 elif test.format == 'ninja':
106 if test.format == 'ninja':
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
util.c 31 static int perf_gtk__error(const char *format, va_list args)
37 vasprintf(&msg, format, args) < 0) {
39 vfprintf(stderr, format, args);
57 static int perf_gtk__warning_info_bar(const char *format, va_list args)
62 vasprintf(&msg, format, args) < 0) {
64 vfprintf(stderr, format, args);
78 static int perf_gtk__warning_statusbar(const char *format, va_list args)
83 vasprintf(&msg, format, args) < 0) {
85 vfprintf(stderr, format, args);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_surface.c 36 unsigned flags, unsigned format,
40 int ret, cpp = _mesa_get_format_bytes(format);
46 .format = format,
50 .pitch = _mesa_format_row_stride(format, width),
62 if (_mesa_get_format_bits(format, GL_DEPTH_BITS))
70 get_format_blocksy(format, height) * s->pitch,
82 dst->format = src->format;
  /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));
  /device/generic/goldfish/camera/fake-pipeline2/
Base.h 39 uint32_t format; member in struct:android::StreamBuffer
49 int32_t format; member in struct:android::Stream
56 int32_t format; member in struct:android::ReprocessStream
  /external/chromium_org/cc/test/
test_texture.h 17 size_t TextureSizeBytes(const gfx::Size& size, ResourceFormat format);
22 void Reallocate(const gfx::Size& size, ResourceFormat format);
26 ResourceFormat format; member in struct:cc::TestTexture
  /external/chromium_org/ppapi/c/
ppb_image_data.h 86 PP_ImageDataFormat format; member in struct:PP_ImageDataDesc
110 * GetNativeImageDataFormat() returns the browser's preferred format for
111 * image data. The browser uses this format internally for painting. Other
115 * @return A <code>PP_ImageDataFormat</code> containing the preferred format.
119 * IsImageDataFormatSupported() determines if the given image data format is
125 * @param[in] format The image data format.
128 * image data format is supported by the browser.
130 PP_Bool (*IsImageDataFormatSupported)(PP_ImageDataFormat format);
132 * Create() allocates an image data resource with the given format and size
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeSanitizer.cpp 69 bool OpenTypeSanitizer::supportsFormat(const String& format)
71 return equalIgnoringCase(format, "woff")
72 || (RuntimeEnabledFeatures::woff2Enabled() && equalIgnoringCase(format, "woff2"));
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocommon.h 103 // 1 Primary Compressed YUV format.
130 // 1 Auxiliary compressed YUV format set aside for capturer.
199 explicit VideoFormat(const VideoFormatPod& format) {
200 Construct(format.width, format.height, format.interval, format.fourcc);
229 bool operator==(const VideoFormat& format) const {
230 return width == format.width && height == format.height &
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_tex_layout.c 42 gl_format format)
56 * | YUV 4:2:2 format | 8 | 4 | 4 | 4 | 4 |
57 * | BC1-5 compressed format (DXTn/S3TC) | 4 | 4 | 4 | 4 | 4 |
58 * | FXT1 compressed format | 8 | 8 | 8 | 8 | 8 |
68 if (_mesa_is_format_compressed(format)) {
73 _mesa_get_format_block_size(format, &i, &j);
77 if (format == MESA_FORMAT_S8)
80 if (intel->gen >= 7 && format == MESA_FORMAT_Z16)
88 gl_format format)
102 * | BC1-5 compressed format (DXTn/S3TC) | 4 | 4 | 4 | 4 | 4
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
raw_printer.cc 50 void RawPrinter::Printf(const char* format, ...) {
53 va_start(ap, format);
57 const int r = perftools_vsnprintf(ptr_, avail+1, format, ap);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
raw_printer.cc 50 void RawPrinter::Printf(const char* format, ...) {
53 va_start(ap, format);
57 const int r = perftools_vsnprintf(ptr_, avail+1, format, ap);
  /external/chromium_org/tools/gyp/test/generator-output/
gyptest-depth.py 46 if test.format == 'xcode':
50 if test.format == 'xcode':
54 if test.format == 'xcode':
gyptest-relocate.py 48 if test.format == 'xcode':
52 if test.format == 'xcode':
56 if test.format == 'xcode':
  /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/compiler-rt/test/BlocksRuntime/
variadic.c 23 long (^addthem)(const char *, ...) = ^long (const char *format, ...){
30 va_start(argp, format);
32 for (p = format; *p; p++) switch (*p) {
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex_layout.c 42 gl_format format)
56 * | YUV 4:2:2 format | 8 | 4 | 4 | 4 | 4 |
57 * | BC1-5 compressed format (DXTn/S3TC) | 4 | 4 | 4 | 4 | 4 |
58 * | FXT1 compressed format | 8 | 8 | 8 | 8 | 8 |
68 if (_mesa_is_format_compressed(format)) {
73 _mesa_get_format_block_size(format, &i, &j);
77 if (format == MESA_FORMAT_S8)
80 if (intel->gen >= 7 && format == MESA_FORMAT_Z16)
88 gl_format format)
102 * | BC1-5 compressed format (DXTn/S3TC) | 4 | 4 | 4 | 4 | 4
    [all...]

Completed in 677 milliseconds

1 2 3 4 5 6 7 891011>>