HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 176 - 200 of 11129) sorted by null

1 2 3 4 5 6 78 91011>>

  /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/gyp/test/generator-output/
gyptest-copies.py 41 if test.format == 'xcode':
43 elif test.format in ['make', 'ninja', 'xcode-ninja', 'cmake']:
52 if test.format == 'xcode':
54 elif test.format in ['make', 'ninja', 'xcode-ninja', 'cmake']:
  /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/fio/
gerror.h 4 extern void gfio_report_error(struct gui_entry *ge, const char *format, ...);
  /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/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/core/java/android/hardware/camera2/params/
ReprocessFormatsMap.java 51 * The inner array always contains {@code [format, length, ...]} where ... has length elements.
64 * (missing output format length or too few output formats)
86 String.format("Input %x had no output format length listed", inputFormat));
101 String.format(
121 * <p>Use this input format to look up the available output formats with {@link #getOutputs}.
134 final int format = mEntry[i]; local
141 String.format("Input %x had no output format length listed", format));
    [all...]
  /frameworks/base/graphics/java/android/graphics/
ImageFormat.java 28 * RGB format used for pictures encoded as RGB_565. See
34 * <p>Android YUV format.</p>
36 * <p>This format is exposed to software decoders and applications.</p>
38 * <p>YV12 is a 4:2:0 YCrCb planar format comprised of a WxH Y plane followed
41 * <p>This format assumes
57 * <p>For the {@link android.hardware.camera2} API, the {@link #YUV_420_888} format is
60 * <p>For the older camera API, this format is guaranteed to be supported for
79 * <p>Android Y8 format.</p>
81 * <p>Y8 is a YUV planar format comprised of a WxH Y plane only, with each pixel
83 * format.</p
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
SimpleFrame.java 23 import android.filterfw.format.ObjectFormat;
35 SimpleFrame(FrameFormat format, FrameManager frameManager) {
36 super(format, frameManager);
37 initWithFormat(format);
42 FrameFormat format = ObjectFormat.fromObject(object, FrameFormat.TARGET_SIMPLE); local
43 SimpleFrame result = new SimpleFrame(format, frameManager);
48 private void initWithFormat(FrameFormat format) {
49 final int count = format.getLength();
50 final int baseType = format.getBaseType();
132 MutableFrameFormat format = getFormat().mutableCopy() local
142 FrameFormat format = getFormat(); local
    [all...]
  /hardware/intel/img/hwcomposer/ips/tangier/
TngDisplayQuery.cpp 28 bool DisplayQuery::isVideoFormat(uint32_t format)
30 switch (format) {
33 // Expand format to support the case: Software decoder + HW rendering
42 int DisplayQuery::getOverlayLumaStrideAlignment(uint32_t format)
45 switch (format) {
  /hardware/ti/omap4-aah/kernel-headers-ti/linux/
bvsurfgeom.h 24 enum ocdformat format; member in struct:bvsurfgeom
  /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...]
  /frameworks/base/telecomm/java/android/telecom/
Log.java 47 public static void d(String prefix, String format, Object... args) {
49 android.util.Log.d(TAG, buildMessage(prefix, format, args));
53 public static void d(Object objectPrefix, String format, Object... args) {
55 android.util.Log.d(TAG, buildMessage(getPrefixFromObject(objectPrefix), format, args));
59 public static void i(String prefix, String format, Object... args) {
61 android.util.Log.i(TAG, buildMessage(prefix, format, args));
65 public static void i(Object objectPrefix, String format, Object... args) {
67 android.util.Log.i(TAG, buildMessage(getPrefixFromObject(objectPrefix), format, args));
71 public static void v(String prefix, String format, Object... args) {
73 android.util.Log.v(TAG, buildMessage(prefix, format, args))
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
Log.java 50 public static void d(String prefix, String format, Object... args) {
52 android.util.Slog.d(TAG, buildMessage(prefix, format, args));
56 public static void d(Object objectPrefix, String format, Object... args) {
58 android.util.Slog.d(TAG, buildMessage(getPrefixFromObject(objectPrefix), format, args));
62 public static void i(String prefix, String format, Object... args) {
64 android.util.Slog.i(TAG, buildMessage(prefix, format, args));
68 public static void i(Object objectPrefix, String format, Object... args) {
70 android.util.Slog.i(TAG, buildMessage(getPrefixFromObject(objectPrefix), format, args));
74 public static void v(String prefix, String format, Object... args) {
76 android.util.Slog.v(TAG, buildMessage(prefix, format, args))
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
Log.java 45 public static void d(String prefix, String format, Object... args) {
47 android.util.Log.d(TAG, buildMessage(prefix, format, args));
51 public static void d(Object objectPrefix, String format, Object... args) {
53 android.util.Log.d(TAG, buildMessage(getPrefixFromObject(objectPrefix), format, args));
57 public static void i(String prefix, String format, Object... args) {
59 android.util.Log.i(TAG, buildMessage(prefix, format, args));
63 public static void i(Object objectPrefix, String format, Object... args) {
65 android.util.Log.i(TAG, buildMessage(getPrefixFromObject(objectPrefix), format, args));
69 public static void v(String prefix, String format, Object... args) {
71 android.util.Log.v(TAG, buildMessage(prefix, format, args))
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
DecimalFormatTest.java 33 assertEquals("1E4", df.format(12345.));
38 assertEquals("1-useless-api-4", df.format(12345.));
45 assertEquals("-0", df.format(-0.2));
47 assertEquals("-0.2", df.format(-0.2));
58 assertEquals(309, numberFormat.format(123).length());
59 assertEquals(309, numberFormat.format(BigInteger.valueOf(123)).length());
66 assertEquals("17%", pf.format(BigDecimal.valueOf(0.17)));
126 assertEquals(df.format(BigDecimal.valueOf(0.16)),
127 df.format(BigDecimal.valueOf(0.16).doubleValue()));
128 assertEquals(df.format(BigDecimal.valueOf(0.0293))
    [all...]
  /external/deqp/framework/opengl/
gluPixelTransfer.cpp 36 static inline int getTransferAlignment (tcu::TextureFormat format)
38 int pixelSize = format.getPixelSize();
47 * \note Stride must be default stride for format.
58 TransferFormat format = getTransferFormat(dst.getFormat()); local
61 gl.readPixels(x, y, width, height, format.format, format.dataType, dst.getDataPtr());
66 * \note Stride must be default stride for format.
77 TransferFormat format = getTransferFormat(src.getFormat()); local
80 gl.texImage2D(target, level, internalFormat, width, height, 0, format.format, format.dataType, src.getDataPtr())
97 TransferFormat format = getTransferFormat(src.getFormat()); local
116 TransferFormat format = getTransferFormat(src.getFormat()); local
136 TransferFormat format = getTransferFormat(src.getFormat()); local
    [all...]
  /external/chromium_org/remoting/codec/
video_encoder_helper_unittest.cc 33 EXPECT_FALSE(packet->format().has_encoding());
34 EXPECT_TRUE(packet->format().has_screen_width());
35 EXPECT_TRUE(packet->format().has_screen_height());
36 EXPECT_TRUE(packet->format().has_x_dpi());
37 EXPECT_TRUE(packet->format().has_y_dpi());
55 // Packet should have a format containing the screen dimensions only.
57 EXPECT_TRUE(packet->format().has_screen_width());
58 EXPECT_TRUE(packet->format().has_screen_height());
59 EXPECT_FALSE(packet->format().has_x_dpi());
60 EXPECT_FALSE(packet->format().has_y_dpi())
    [all...]

Completed in 896 milliseconds

1 2 3 4 5 6 78 91011>>