Searched refs:format (Results 151 - 175 of 6114) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/winsys/sw/fbdev/
H A Dfbdev_sw_winsys.h37 enum pipe_format format; member in struct:fbdev_sw_drawable
/external/mesa3d/src/mesa/swrast/
H A Ds_texfetch.h33 _mesa_get_texel_fetch_func(gl_format format, GLuint dims);
/external/protobuf/src/google/protobuf/stubs/
H A Dsubstitute.cc1 // 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 strin
53 Substitute( const char* format, const SubstituteArg& arg0, const SubstituteArg& arg1, const SubstituteArg& arg2, const SubstituteArg& arg3, const SubstituteArg& arg4, const SubstituteArg& arg5, const SubstituteArg& arg6, const SubstituteArg& arg7, const SubstituteArg& arg8, const SubstituteArg& arg9) argument
66 SubstituteAndAppend( string* output, const char* format, const SubstituteArg& arg0, const SubstituteArg& arg1, const SubstituteArg& arg2, const SubstituteArg& arg3, const SubstituteArg& arg4, const SubstituteArg& arg5, const SubstituteArg& arg6, const SubstituteArg& arg7, const SubstituteArg& arg8, const SubstituteArg& arg9) argument
[all...]
/external/deqp/framework/opengl/
H A DgluPixelTransfer.cpp36 static inline int getTransferAlignment (tcu::TextureFormat format) argument
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
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/
H A Dvideo_encoder_helper_unittest.cc33 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()
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstringprintf.cc1 // Protocol Buffers - Google's data interchange format
56 void StringAppendV(string* dst, const char* format, va_list ap) { argument
66 int result = vsnprintf(space, kSpaceLength, format, backup_ap);
80 result = vsnprintf(NULL, 0, format, backup_ap);
97 result = vsnprintf(buf, length, format, backup_ap);
108 string StringPrintf(const char* format, ...) { argument
110 va_start(ap, format);
112 StringAppendV(&result, format, ap);
117 const string& SStringPrintf(string* dst, const char* format, ...) { argument
119 va_start(ap, format);
126 StringAppendF(string* dst, const char* format, ...) argument
141 StringPrintfVector(const char* format, const vector<string>& v) argument
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
H A Dcomposite_bitmap_glyph.cc24 int32_t format)
25 : BitmapGlyph(data, format) {
26 Initialize(format);
46 void CompositeBitmapGlyph::Initialize(int32_t format) { argument
47 if (format == 8) {
50 } else if (format == 9) {
56 "with a non-composite format.");
92 CompositeBitmapGlyph::Builder::Builder(ReadableFontData* data, int32_t format) argument
93 : BitmapGlyph::Builder(data, format) {
96 CompositeBitmapGlyph::Builder::Builder(WritableFontData* data, int32_t format) argument
23 CompositeBitmapGlyph(ReadableFontData* data, int32_t format) argument
[all...]
/external/clang/test/SemaCXX/
H A Dformat-strings.cpp20 printf("%ls", "foo"); // expected-warning{{format specifies type 'wchar_t *' but the argument has type 'const char *'}}
28 int scanf(const char *, ...) __attribute__((format(scanf, 2, 3)));
29 int printf(const char *, ...) __attribute__((format(printf, 2, 3)));
33 static int printf_static(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
39 foo.printf("%d", i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
40 Foo::printf_static("%d", i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
42 printf(foo.gettext("%d"), i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
43 printf(Foo::gettext_static("%d"), i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
46 // Test handling __null for format string literal checking.
48 int test_null_format(const char *format,
62 const char * const format = fmt; local
119 extern void (^block_print)(const char * format, ...) __attribute__((format(printf, 1, 2))); member in namespace:Templates
[all...]
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dcomposite_bitmap_glyph.cc24 int32_t format)
25 : BitmapGlyph(data, format) {
26 Initialize(format);
46 void CompositeBitmapGlyph::Initialize(int32_t format) { argument
47 if (format == 8) {
50 } else if (format == 9) {
56 "with a non-composite format.");
92 CompositeBitmapGlyph::Builder::Builder(ReadableFontData* data, int32_t format) argument
93 : BitmapGlyph::Builder(data, format) {
96 CompositeBitmapGlyph::Builder::Builder(WritableFontData* data, int32_t format) argument
23 CompositeBitmapGlyph(ReadableFontData* data, int32_t format) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DPreconditions.java42 if (opcode.format != expectedFormat) {
44 String.format("Invalid opcode %s for %s", opcode.name, expectedFormat.name()));
51 String.format("Invalid register: v%d. Must be between v0 and v15, inclusive.", register));
59 String.format("Invalid register: v%d. Must be between v0 and v255, inclusive.", register));
67 String.format("Invalid register: v%d. Must be between v0 and v65535, inclusive.", register));
75 String.format("Invalid literal value: %d. Must be between -8 and 7, inclusive.", literal));
83 String.format("Invalid literal value: %d. Must be between -128 and 127, inclusive.", literal));
91 String.format("Invalid literal value: %d. Must be between -32768 and 32767, inclusive.", literal));
99 String.format("Invalid literal value: %d. Low 16 bits must be zeroed out.", literal));
107 String.format("Invali
[all...]
/external/chromium_org/cc/resources/
H A Dresource.h18 Resource(unsigned id, const gfx::Size& size, ResourceFormat format) argument
21 format_(format) {}
25 ResourceFormat format() const { return format_; } function in class:cc::Resource
29 ResourceFormat format) {
30 DCHECK_EQ(0u, (BitsPerPixel(format) * size.width() * size.height()) % 8);
31 return (BitsPerPixel(format) * size.width() * size.height()) / 8;
36 void set_dimensions(const gfx::Size& size, ResourceFormat format) { argument
38 format_ = format;
28 MemorySizeBytes(const gfx::Size& size, ResourceFormat format) argument
/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/
H A Dnacl_io_demo.h17 char* VprintfToNewString(const char* format, va_list args) PRINTF_LIKE(1, 0);
18 char* PrintfToNewString(const char* format, ...) PRINTF_LIKE(1, 2);
/external/chromium_org/native_client_sdk/src/libraries/error_handling/
H A Dstring_stream.h27 int ssvprintf(sstream_t* sstream, const char* format, va_list args);
28 int ssprintf(sstream_t* sstream, const char* format, ...);
/external/chromium_org/ppapi/shared_impl/
H A Dmedia_stream_video_track_shared.h20 format(PP_VIDEOFRAME_FORMAT_UNKNOWN) {}
24 PP_VideoFrame_Format format; member in struct:ppapi::MediaStreamVideoTrackShared::Attributes
/external/chromium_org/remoting/webapp/
H A Dopen_sans.css11 url('open_sans.woff') format('woff');
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSUnicodeRangeValue.cpp36 return String::format("U+%X", m_from);
37 return String::format("U+%X-%X", m_from, m_to);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAltGlyphElement.idl30 [RaisesException=Setter] attribute DOMString format;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/translate/
H A Dtranslate.c52 boolean translate_is_output_format_supported(enum pipe_format format) argument
54 return translate_generic_is_output_format_supported(format);
/external/chromium_org/third_party/webrtc/common_audio/
H A Dwav_header.h29 WavFormat format,
40 WavFormat format,
/external/chromium_org/v8/test/intl/date-format/
H A Dformat-test.js32 var someDate = dtf.format(144313200000);
39 dtf.format(value);
/external/clang/test/Lexer/
H A Dgnu-flags.c26 #define efoo(format, args...) foo(format , ##args)
/external/clang/test/Sema/
H A Dformat-strings-ms.c3 int printf(const char *format, ...) __attribute__((format(printf, 1, 2)));
8 // expected-warning{{format specifies type '__int64' (aka 'long long') but the argument has type 'short'}}
11 // expected-warning{{format specifies type '__int32' (aka 'int') but the argument has type 'long long'}}
13 // expected-warning{{format specifies type '__int32' (aka 'int') but the argument has type 'long long'}}
19 // expected-warning{{format specifies type 'unsigned __int64' (aka 'unsigned long long') but the argument has type 'unsigned short'}}
22 // expected-warning{{format specifies type 'unsigned __int32' (aka 'unsigned int') but the argument has type 'unsigned long long'}}
24 // expected-warning{{format specifies type 'unsigned __int32' (aka 'unsigned int') but the argument has type 'unsigned long long'}}
/external/deqp/framework/common/
H A DtcuRenderTarget.cpp39 RenderTarget::RenderTarget (int width, int height, const PixelFormat& format, int depthBits, int stencilBits, int numSamples) argument
42 , m_pixelFormat (format)
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DPackedSwitchPayloadDecodedInstruction.java37 public PackedSwitchPayloadDecodedInstruction(InstructionCodec format, argument
39 super(format, opcode, 0, null, 0, 0L);
/external/e2fsprogs/intl/
H A Dvasnwprintf.h39 extern wchar_t * asnwprintf (wchar_t *resultbuf, size_t *lengthp, const wchar_t *format, ...);
40 extern wchar_t * vasnwprintf (wchar_t *resultbuf, size_t *lengthp, const wchar_t *format, va_list args);

Completed in 1326 milliseconds

1234567891011>>