HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 376 - 400 of 14524) sorted by null

<<11121314151617181920>>

  /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/v8/src/wasm/
wasm-result.cc 32 void ErrorThrower::Error(const char* format, ...) {
38 va_start(arguments, format);
39 base::OS::VSNPrintF(buffer, 255, format, arguments);
  /external/valgrind/include/
pub_tool_libcassert.h 44 #define tl_assert2(expr, format, args...) \
49 format, ##args), \
62 const HChar* format, ... );
  /external/webrtc/webrtc/common_audio/
wav_header.h 37 WavFormat format,
48 WavFormat format,
58 WavFormat* format,
  /hardware/bsp/intel/peripheral/libmraa/examples/python/
uart_sender.py 38 print("Sending message as a byte array: '{0}'".format(msg_b))
47 print("Sending message as a string: '{0}'".format(msg_s))
55 print("We've got a response: '{0}', says the other side".format(u.readStr(20)))
  /ndk/tests/device/test-stlport_static-exception/
test_config.py 17 return '{} {}'.format(device_platform, toolchain), 'http://b/24403847'
20 return '{} {}'.format(toolchain, abi), 'http://b/26085687'
24 return '{} {}'.format(toolchain, abi), 'http://b/26085687'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
categoryquery.py 44 self.log.info("Generating results from {0.policy}".format(self))
45 self.log.debug("Name: {0.name!r}, regex: {0.name_regex}".format(self))
46 self.log.debug("Alias: {0.alias}, regex: {0.alias_regex}".format(self))
commonquery.py 48 self.log.info("Generating results from {0.policy}".format(self))
49 self.log.debug("Name: {0.name!r}, regex: {0.name_regex}".format(self))
51 format(self))
  /external/opencv3/modules/videoio/src/
cap_cmu.cpp 85 bool setFormat(int format);
89 int format; // 0-2, 7 ? member in class:CvCaptureCAM_CMU
105 // stupid defines for mode, format, FPS
129 // given color, size, output format
154 // given format, mode, return COLOR
206 // return the opencv depth flag corresponding to the camera format
210 int format = cmucam->GetVideoFormat(); local
214 if( format==7 ) {
219 if( format > 1 )
220 format = 1
232 int format = cmucam->GetVideoFormat(); local
331 int format = CV_CAP_IEEE1394_FORMAT[size][color]; local
453 int format; local
468 int format, mode; local
    [all...]
  /external/webrtc/talk/media/base/
videocommon.h 104 // 1 Primary Compressed YUV format.
131 // 1 Auxiliary compressed YUV format set aside for capturer.
204 explicit VideoFormat(const VideoFormatPod& format) {
205 Construct(format.width, format.height, format.interval, format.fourcc);
234 bool operator==(const VideoFormat& format) const {
235 return width == format.width && height == format.height &
    [all...]
videocommon_unittest.cc 65 VideoFormat format; local
66 EXPECT_TRUE(format.IsSize0x0());
67 format.width = 320;
68 EXPECT_FALSE(format.IsSize0x0());
73 VideoFormat format; local
74 EXPECT_EQ("0x0x0", format.ToString());
76 format.fourcc = FOURCC_I420;
77 format.width = 640;
78 format.height = 480;
79 format.interval = VideoFormat::FpsToInterval(20)
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
Log.java 73 public static void d(String prefix, String format, Object... args) {
75 android.util.Log.d(TAG, buildMessage(prefix, format, args));
79 public static void d(Object objectPrefix, String format, Object... args) {
81 android.util.Log.d(TAG, buildMessage(getPrefixFromObject(objectPrefix), format, args));
85 public static void i(String prefix, String format, Object... args) {
87 android.util.Log.i(TAG, buildMessage(prefix, format, args));
91 public static void i(Object objectPrefix, String format, Object... args) {
93 android.util.Log.i(TAG, buildMessage(getPrefixFromObject(objectPrefix), format, args));
97 public static void v(String prefix, String format, Object... args) {
99 android.util.Log.v(TAG, buildMessage(prefix, format, args))
    [all...]
  /external/clang/unittests/Format/
FormatTest.cpp 1 //===- unittest/Format/FormatTest.cpp - Formatting unit tests -------------===//
11 #include "clang/Format/Format.h"
15 #define DEBUG_TYPE "format-test"
18 namespace format { namespace in namespace:clang
31 std::string format(llvm::StringRef Code, function in class:clang::format::__anon9203::FormatTest
65 EXPECT_EQ(Code.str(), format(test::messUp(Code), Style));
71 format(test::messUp(Code), Style, IC_ExpectIncomplete));
83 /// \brief Verify that clang-format does not crash on the given input.
86 format(Code, Style, IC_DoNotCheck)
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
DecimalFormatTest.java 42 assertEquals("9,223,372,036,854,775,807", df.format(lmax));
50 assertEquals("23.330", df.format(dsmall));
59 assertEquals("23,330", df.format(dsmall));
77 assertEquals("23,33", df.format(dsmall));
94 assertEquals("?23.3", df.format(dsmall));
111 assertEquals("~23.3", df.format(-dsmall));
128 assertEquals("+23.3**", df.format(dsmall));
145 assertEquals("-23.3~~", df.format(-dsmall));
162 assertEquals("%012", df.format(.123));
164 assertEquals("%123", df.format(.123))
    [all...]
  /frameworks/volley/src/main/java/com/android/volley/
VolleyLog.java 53 public static void v(String format, Object... args) {
55 Log.v(TAG, buildMessage(format, args));
59 public static void d(String format, Object... args) {
60 Log.d(TAG, buildMessage(format, args));
63 public static void e(String format, Object... args) {
64 Log.e(TAG, buildMessage(format, args));
67 public static void e(Throwable tr, String format, Object... args) {
68 Log.e(TAG, buildMessage(format, args), tr);
71 public static void wtf(String format, Object... args) {
72 Log.wtf(TAG, buildMessage(format, args))
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
DecimalFormatBenchmark.java 33 df.format(obj);
37 public static void format(String pattern, Object obj, int reps) { method in class:DecimalFormatBenchmark
40 patternInstance.format(obj);
44 public static void format(Object obj, int reps) { method in class:DecimalFormatBenchmark
46 df.format(obj);
59 dfCurrencyUS.format(obj);
65 dfCurrencyFR.format(obj);
86 format(BD10E3, reps); method
90 format(BD10E9, reps); method
94 format(BD10E100, reps) method
98 format(BD10E1000, reps); method
102 format(Math.PI, reps); method
106 format(Math.E, reps); method
126 format(EXP_PATTERN, BD10E3, reps); method
130 format(EXP_PATTERN, BD10E9, reps); method
134 format(EXP_PATTERN, BD10E100, reps); method
138 format(EXP_PATTERN, BD10E1000, reps); method
    [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/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...]
  /external/slf4j/integration/lib/
slf4j-simple-1.6.6.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
slf4j-simple-1.7.5.jar 
  /prebuilts/misc/windows/sdl2/test/
testautomation_pixels.c 125 const char *expectedError = "Parameter 'format' is invalid";
128 Uint32 format; local
132 /* Blank/unknown format */
133 format = 0;
134 SDLTest_Log("RGB Format: %s (%u)", unknownFormat, format);
136 /* Allocate format */
137 result = SDL_AllocFormat(format);
141 SDLTest_AssertCheck(result->format == format, "Verify value of result.format; expected: %u, got %u", format, result->format)
233 Uint32 format; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/slf4j/slf4j-simple/1.7.2/
slf4j-simple-1.7.2.jar 
  /toolchain/binutils/binutils-2.25/bfd/
format.c 27 A format is a BFD concept of high level file contents type. The
43 File format functions
58 bfd_boolean bfd_check_format (bfd *abfd, bfd_format format);
62 with the format @var{format} (i.e., one of <<bfd_object>>,
66 call, only the named target and format combination is
77 if <<format>> is not one of <<bfd_object>>, <<bfd_archive>> or
85 none of the backends recognised the file format.
88 more than one backend recognised the file format.
92 bfd_check_format (bfd *abfd, bfd_format format)
    [all...]

Completed in 817 milliseconds

<<11121314151617181920>>