HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 151 - 175 of 11127) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/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);
  /external/chromium_org/tools/gyp/test/actions/
gyptest-default.py 24 if test.format in ['ninja', 'android']:
50 if test.format == 'xcode':
62 if test.format == 'xcode':
  /external/chromium_org/tools/gyp/test/actions-multiple/
gyptest-all.py 33 if test.format in ['make', 'ninja']:
35 if test.format == 'make':
37 elif test.format == 'ninja':
  /external/chromium_org/tools/gyp/test/generator-output/
gyptest-top-all.py 42 if test.format == 'xcode':
46 if test.format == 'xcode':
50 if test.format == 'xcode':
  /external/chromium_org/tools/gyp/test/rules/
gyptest-all.py 30 if test.format == 'xcode':
41 if test.format == 'xcode':
67 if test.format == 'xcode':
  /external/e2fsprogs/intl/
vasnprintf.h 33 /* The __-protected variants of `format' and `printf' attributes
36 # define __format__ format
52 extern char * asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...)
54 extern char * vasnprintf (char *resultbuf, size_t *lengthp, const char *format, va_list args)
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
NamedRunnable.java 25 public NamedRunnable(String format, Object... args) {
26 this.name = String.format(format, args);
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_Module.h 26 virtual void JBig2_Error(FX_LPCSTR format, ...) {};
28 virtual void JBig2_Warn(FX_LPCSTR format, ...) {};
30 virtual void JBig2_Log(FX_LPCSTR format, ...) {};
  /external/sfntly/cpp/src/sfntly/table/bitmap/
simple_bitmap_glyph.h 30 Builder(WritableFontData* data, int32_t format);
31 Builder(ReadableFontData* data, int32_t format);
37 SimpleBitmapGlyph(ReadableFontData* data, int32_t format);
  /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);
  /external/valgrind/main/coregrind/
pub_core_debuglog.h 77 const HChar* format, ... )
78 __attribute__((format(__printf__, 3, 4)));
87 const HChar *format,
  /frameworks/base/media/java/android/media/
AudioDevicePortConfig.java 30 int format, AudioGainConfig gain) {
31 super((AudioPort)devicePort, samplingRate, channelMask, format, gain);
35 this(config.port(), config.samplingRate(), config.channelMask(), config.format(),
  /external/ceres-solver/internal/ceres/
stringprintf.h 50 // Tell the compiler to do printf format string checking if the compiler
51 // supports it; see the 'format' attribute in
66 extern string StringPrintf(const char* format, ...)
67 // Tell the compiler to do printf format string checking.
71 extern const string& SStringPrintf(string* dst, const char* format, ...)
72 // Tell the compiler to do printf format string checking.
76 extern void StringAppendF(string* dst, const char* format, ...)
77 // Tell the compiler to do printf format string checking.
82 extern void StringAppendV(string* dst, const char* format, va_list ap);
  /external/chromium_org/base/strings/
stringprintf.h 18 BASE_EXPORT std::string StringPrintf(const char* format, ...)
22 BASE_EXPORT std::wstring StringPrintf(const wchar_t* format, ...)
27 BASE_EXPORT std::string StringPrintV(const char* format, va_list ap)
32 const char* format, ...)
36 const wchar_t* format, ...)
41 BASE_EXPORT void StringAppendF(std::string* dst, const char* format, ...)
46 BASE_EXPORT void StringAppendF(std::wstring* dst, const wchar_t* format, ...)
52 BASE_EXPORT void StringAppendV(std::string* dst, const char* format, va_list ap)
56 const wchar_t* format, va_list ap)
  /external/chromium_org/ppapi/shared_impl/
flash_clipboard_format_registry.cc 23 // The first custom format ID will be the ID after that max value in
27 // Checks the validity of the given format name.
53 uint32_t format) {
54 custom_formats_[format] = format_name;
57 bool FlashClipboardFormatRegistry::IsFormatRegistered(uint32_t format) const {
58 return custom_formats_.find(format) != custom_formats_.end();
61 std::string FlashClipboardFormatRegistry::GetFormatName(uint32_t format) const {
62 FormatMap::const_iterator it = custom_formats_.find(format);
80 bool FlashClipboardFormatRegistry::IsValidPredefinedFormat(uint32_t format) {
81 if (format == PP_FLASH_CLIPBOARD_FORMAT_INVALID
    [all...]
flash_clipboard_format_registry.h 20 // have been registered but format registration is tracked on the plugin
27 // Registers a custom format with the given string. The ID of the format is
29 // PP_FLASH_CLIPBOARD_FORMAT_INVALID is returned. If a format with a
31 // will be returned. The format name is checked for validity.
34 // This sets the name of a particular format in the registry. This is only
35 // used on the plugin side in order to track format IDs that are returned
37 void SetRegisteredFormat(const std::string& format_name, uint32_t format);
39 // Checks whether the given custom format ID has been registered.
40 bool IsFormatRegistered(uint32_t format) const
    [all...]
ppb_image_data_shared.cc 40 PP_ImageDataFormat format) {
41 return PP_FromBool(format == PP_IMAGEDATAFORMAT_BGRA_PREMUL ||
42 format == PP_IMAGEDATAFORMAT_RGBA_PREMUL);
48 return PP_FromBool(IsImageDataFormatSupported(desc.format) &&
  /external/chromium_org/remoting/host/
mouse_clamping_filter.cc 25 if (video_packet->format().has_screen_width() &&
26 video_packet->format().has_screen_height()) {
28 webrtc::DesktopSize(video_packet->format().screen_width(),
29 video_packet->format().screen_height());
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolverStats.cpp 64 output.append(String::format(" %u elements were added to the sharing candidate list.\n", sharedStyleCandidates));
65 output.append(String::format(" %u calls were made to findSharedStyle, %u found a candidate to share with (%.2f%%).\n", sharedStyleLookups, sharedStyleFound, PERCENT(sharedStyleFound, sharedStyleLookups)));
67 output.append(String::format(" %u candidates could have matched but were not in the list when searching (%.2f%%).\n", sharedStyleMissed, PERCENT(sharedStyleMissed, sharedStyleLookups)));
68 output.append(String::format(" %u of found styles were rejected (%.2f%%), %.2f%% by uncommon attribute rules, %.2f%% by sibling rules and %.2f%% by parents disabling sharing.\n",
74 output.append(String::format(" %u of found styles were used for sharing (%.2f%%).\n", sharedStylesUsed, PERCENT(sharedStylesUsed, sharedStyleFound)));
75 output.append(String::format(" %.2f%% of calls to findSharedStyle returned a shared style.\n", PERCENT(sharedStylesUsed, sharedStyleLookups)));
80 output.append(String::format(" %u calls to applyMatchedProperties, %u hit the cache (%.2f%%).\n", matchedPropertyApply, matchedPropertyCacheHit, PERCENT(matchedPropertyCacheHit, matchedPropertyApply)));
81 output.append(String::format(" %u cache hits also shared the inherited style (%.2f%%).\n", matchedPropertyCacheInheritedHit, PERCENT(matchedPropertyCacheInheritedHit, matchedPropertyCacheHit)));
82 output.append(String::format(" %u styles created in applyMatchedProperties were added to the cache (%.2f%%).\n", matchedPropertyCacheAdded, PERCENT(matchedPropertyCacheAdded, matchedPropertyApply)));
  /external/chromium_org/third_party/angle/src/common/
debug.cpp 26 static void output(bool traceFileDebugOnly, PerfOutputFunction perfFunc, const char *format, va_list vararg)
29 std::string formattedMessage = FormatString(format, vararg);
66 void trace(bool traceFileDebugOnly, const char *format, ...)
69 va_start(vararg, format);
71 output(traceFileDebugOnly, D3DPERF_SetMarker, format, vararg);
73 output(traceFileDebugOnly, NULL, format, vararg);
88 ScopedPerfEventHelper::ScopedPerfEventHelper(const char* format, ...)
98 va_start(vararg, format);
99 output(true, reinterpret_cast<PerfOutputFunction>(D3DPERF_BeginEvent), format, vararg);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_debug.h 61 lp_build_name(LLVMValueRef val, const char *format, ...)
66 va_start(ap, format);
67 util_vsnprintf(name, sizeof name, format, ap);
72 (void)format;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_sampler.c 40 enum pipe_format format,
45 /* XXX: Check if format is compatible with texture->format.
48 view->format = format;
72 if (format != PIPE_FORMAT_A8_UNORM) {
73 const struct util_format_description *desc = util_format_description(format);
90 enum pipe_format format)
95 format,
102 enum pipe_format format)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-null/
graw_null.c 11 enum pipe_format format,
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/fbdev/
fbdev_sw_winsys.h 37 enum pipe_format format; member in struct:fbdev_sw_drawable
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_texfetch.h 33 _mesa_get_texel_fetch_func(gl_format format, GLuint dims);

Completed in 713 milliseconds

1 2 3 4 5 67 8 91011>>