/external/chromium_org/ppapi/shared_impl/ |
flash_clipboard_format_registry.cc | 26 // The first custom format ID will be the ID after that max value in 30 // Checks the validity of the given format name. 58 uint32_t format) { 59 custom_formats_[format] = format_name; 62 bool FlashClipboardFormatRegistry::IsFormatRegistered(uint32_t format) const { 63 return custom_formats_.find(format) != custom_formats_.end(); 67 uint32_t format) const { 68 FormatMap::const_iterator it = custom_formats_.find(format); 85 bool FlashClipboardFormatRegistry::IsValidPredefinedFormat(uint32_t format) { 86 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()) { 27 SkISize screen_size = SkISize::Make(video_packet->format().screen_width(), 28 video_packet->format().screen_height());
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
checks.h | 37 void Fatal(const char* file, int line, const char* format, ...);
|
/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);
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
substitute.cc | 1 // Protocol Buffers - Google's data interchange format 54 const char* format, 61 SubstituteAndAppend(&result, format, arg0, arg1, arg2, arg3, arg4, 67 string* output, const char* format, 79 for (int i = 0; format[i] != '\0'; i++) { 80 if (format[i] == '$') { 81 if (ascii_isdigit(format[i+1])) { 82 int index = format[i+1] - '0'; 85 << "strings::Substitute format string invalid: asked for \"$" 87 << " args were given. Full format string was: \" [all...] |
/external/chromium_org/tools/grit/grit/ |
test_suite_all.py | 34 import grit.format.android_xml_unittest namespace 35 import grit.format.c_format_unittest namespace 36 import grit.format.chrome_messages_json_unittest namespace 37 import grit.format.data_pack_unittest namespace 38 import grit.format.html_inline_unittest namespace 39 import grit.format.js_map_format_unittest namespace 40 import grit.format.rc_header_unittest namespace 41 import grit.format.rc_unittest namespace 42 import grit.format.resource_map_unittest namespace 43 import grit.format.policy_templates.policy_template_generator_unittes namespace 44 import grit.format.policy_templates.writers.adm_writer_unittest namespace 45 import grit.format.policy_templates.writers.doc_writer_unittest namespace 46 import grit.format.policy_templates.writers.json_writer_unittest namespace 47 import grit.format.policy_templates.writers.plist_strings_writer_unittest namespace 48 import grit.format.policy_templates.writers.plist_writer_unittest namespace 49 import grit.format.policy_templates.writers.reg_writer_unittest namespace 50 import grit.format.policy_templates.writers.template_writer_unittest namespace 51 import grit.format.policy_templates.writers.xml_writer_base_unittest namespace [all...] |
/external/clang/test/CodeGen/ |
2002-06-25-FWriteInterfaceFailure.c | 5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
|
/external/clang/test/Sema/ |
block-printf-attribute-1.c | 6 void (^b) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 1, 3))) = // expected-error {{format argument not a string type}} local 7 ^ __attribute__ ((__format__ (__printf__, 1, 3))) (int arg, const char * format, ...) {}; // expected-error {{format argument not a string type}} 9 void (^z) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 2, 3))) = ^ __attribute__ ((__format__ (__printf__, 2, 3))) (int arg, const char * format, ...) {}; local 11 z(1, "%s", 1); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}} 16 // Handle block with multiple format attributes. 20 vprintf_scanf("%", ap, "%d"); // expected-warning {{incomplete format specifier}}, expected-warning {{more '%' conversions than data arguments}}
|
/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/llvm/lib/Target/CppBackend/ |
Makefile | 16 CompileCommonOpts += -Wno-format
|
/external/mesa3d/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/mesa3d/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/mesa3d/src/gallium/targets/graw-null/ |
graw_null.c | 11 enum pipe_format format,
|
/external/mesa3d/src/gallium/winsys/sw/fbdev/ |
fbdev_sw_winsys.h | 37 enum pipe_format format; member in struct:fbdev_sw_drawable
|
/external/mesa3d/src/mesa/swrast/ |
s_texfetch.h | 33 _mesa_get_texel_fetch_func(gl_format format, GLuint dims);
|
/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/protobuf/src/google/protobuf/stubs/ |
substitute.cc | 1 // Protocol Buffers - Google's data interchange format 54 const char* format, 61 SubstituteAndAppend(&result, format, arg0, arg1, arg2, arg3, arg4, 67 string* output, const char* format, 79 for (int i = 0; format[i] != '\0'; i++) { 80 if (format[i] == '$') { 81 if (ascii_isdigit(format[i+1])) { 82 int index = format[i+1] - '0'; 85 << "strings::Substitute format string invalid: asked for \"$" 87 << " args were given. Full format string was: \" [all...] |
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
SimpleFrame.java | 24 import android.filterfw.format.ObjectFormat; 37 SimpleFrame(FrameFormat format, FrameManager frameManager) { 38 super(format, frameManager); 39 initWithFormat(format); 44 FrameFormat format = ObjectFormat.fromObject(object, FrameFormat.TARGET_SIMPLE); local 45 SimpleFrame result = new SimpleFrame(format, frameManager); 50 private void initWithFormat(FrameFormat format) { 51 final int count = format.getLength(); 52 final int baseType = format.getBaseType(); 134 MutableFrameFormat format = getFormat().mutableCopy() local 144 FrameFormat format = getFormat(); local [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
LogUtils.java | 179 * @param format the format string (see {@link java.util.Formatter#format}) 182 * more arguments than required by {@code format}, 185 public static int v(String tag, String format, Object... args) { 187 return Log.v(tag, String.format(format, args)); 197 * @param format the format string (see {@link java.util.Formatter#format}) [all...] |