/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/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...] |
/external/valgrind/main/include/ |
pub_tool_libcassert.h | 44 #define tl_assert2(expr, format, args...) \ 49 format, ##args), \ 62 const HChar* format, ... );
|
/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...] |
/frameworks/volley/src/com/android/volley/ |
VolleyLog.java | 48 public static void v(String format, Object... args) { 50 Log.v(TAG, buildMessage(format, args)); 54 public static void d(String format, Object... args) { 55 Log.d(TAG, buildMessage(format, args)); 58 public static void e(String format, Object... args) { 59 Log.e(TAG, buildMessage(format, args)); 62 public static void e(Throwable tr, String format, Object... args) { 63 Log.e(TAG, buildMessage(format, args), tr); 66 public static void wtf(String format, Object... args) { 67 Log.wtf(TAG, buildMessage(format, args)) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/x501/ |
Name.java | 104 * the format requested 106 * @param format one of X500Principal.CANONICAL, X500Principal.RFC1779, or 109 public String getName(String format) { 113 if (X500Principal.RFC1779.equals(format)) { 116 rfc1779String = getName0(format); 120 } else if (X500Principal.RFC2253.equals(format)) { 123 rfc2253String = getName0(format); 127 } else if (X500Principal.CANONICAL.equals(format)) { 130 canonicalString = getName0(format); 138 else if (X500Principal.RFC1779.equalsIgnoreCase(format)) { [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
NumberFormatTest.java | 29 // NumberFormat.format(Object, StringBuffer, FieldPosition) guarantees it calls doubleValue for 42 assertEquals("123", nf.format(new MyNumber())); 45 // NumberFormat.format(Object, StringBuffer, FieldPosition) guarantees it calls longValue for 49 public StringBuffer format(double value, StringBuffer b, FieldPosition f) { method in class:NumberFormatTest.MyNumberFormat 53 public StringBuffer format(long value, StringBuffer b, FieldPosition f) { method in class:NumberFormatTest.MyNumberFormat 62 assertEquals("long", nf.format(BigInteger.valueOf(Long.MAX_VALUE))); 63 assertEquals("double", nf.format(BigInteger.valueOf(Long.MAX_VALUE).add(BigInteger.ONE))); 64 assertEquals("long", nf.format(BigInteger.valueOf(Long.MIN_VALUE))); 65 assertEquals("double", nf.format(BigInteger.valueOf(Long.MIN_VALUE).subtract(BigInteger.ONE))); 79 assertEquals("?????????????", nf.format(1234567890)) [all...] |
/libcore/luni/src/test/java/libcore/java/util/ |
OldFormatterTest.java | 50 assertEquals("aaa 111?", new Formatter().format("aaa %s?", ones).toString()); 51 assertEquals("aaa 111 bbb 222?", new Formatter().format("aaa %s bbb %s?", ones, twos).toString()); 63 fLoc.format(Locale.US, "%f", val); 64 fNoL.format("%f", val); 69 fLoc.format(Locale.US, "%f", val); 70 fNoL.format("%f", val); 75 fLoc.format(Locale.US, "%f", val); 76 fNoL.format("%f", val); 81 fLoc.format(Locale.US, "%tA %tB %td %tT", cal, cal, cal, cal); 82 fNoL.format("%tA %tB %td %tT", cal, cal, cal, cal) [all...] |
/system/media/camera/docs/ |
metadata_helpers_test.py | 167 self.assertEquals("word.{0}".format(wbr_string), wbr("word.")) 168 self.assertEquals("word/{0}".format(wbr_string), wbr("word/")) 169 self.assertEquals("word_{0}".format(wbr_string), wbr("word_")) 171 self.assertEquals("word.{0}break".format(wbr_string), wbr("word.break")) 172 self.assertEquals("word/{0}break".format(wbr_string), wbr("word/break")) 173 self.assertEquals("word_{0}break".format(wbr_string), wbr("word_break")) 176 self.assertEquals("word_{0}break_{0}again".format(wbr_string), 178 self.assertEquals("word_{0}break_{0}again_{0}emphasis".format(wbr_string), 182 self.assertEquals("word_{0}breakIgnored".format(wbr_string), 184 self.assertEquals("wordIgnored".format(wbr_string) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
glformats.c | 106 * format data types. 160 * Get the number of components in a pixel format. 162 * \param format pixel format. 164 * \return the number of components in the given format, or -1 if a bad format. 167 _mesa_components_in_format(GLenum format) 169 switch (format) { 216 * Get the bytes per pixel of pixel format type pair. 218 * \param format pixel format [all...] |
/external/mesa3d/src/mesa/main/ |
glformats.c | 106 * format data types. 160 * Get the number of components in a pixel format. 162 * \param format pixel format. 164 * \return the number of components in the given format, or -1 if a bad format. 167 _mesa_components_in_format(GLenum format) 169 switch (format) { 216 * Get the bytes per pixel of pixel format type pair. 218 * \param format pixel format [all...] |