HomeSort by relevance Sort by last modified time
    Searched refs:formats (Results 251 - 275 of 868) sorted by null

<<11121314151617181920>>

  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
MessageFormatTest.java 132 // formats, this can't be used, since it sets only one format per argument.
134 Format[] formats = {
139 mf.setFormatsByArgumentIndex(formats);
148 // this api, while it has the problem that the order of formats depends
149 // on the order in the string, at least lets you set all the formats.
152 Format[] formats = { local
157 mf.setFormats(formats);
187 Format[] formats = mf.getFormatsByArgumentIndex();
189 assertEquals(formats[0], nf);
191 assertEquals(formats[1], df)
200 Format[] formats = mf.getFormats(); local
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/params/
StreamConfigurationMap.java 49 * <p>This is the authoritative list for all <!-- input/ -->output formats (and sizes respectively
198 * Get the image {@code format} output formats in this stream configuration.
200 * <p>All image formats returned by this function will be defined in either {@link ImageFormat}
203 * <p>Formats listed in this array are guaranteed to return true if queried with
216 * Get the image {@code format} output formats for a reprocessing input format.
224 * <p>All image formats returned by this function will be defined in either {@link ImageFormat}
227 * <p>Formats listed in this array are guaranteed to return true if queried with
243 * Get the image {@code format} input formats in this stream configuration.
245 * <p>All image formats returned by this function will be defined in either {@link ImageFormat}
278 * <p>Formats for which this returns {@code true} are guaranteed to exist in the resul
1333 int[] formats = new int[getPublicFormatCount(output)]; local
1487 int[] formats = getOutputFormats(); local
1507 int[] formats = getOutputFormats(); local
1528 int[] formats = getInputFormats(); local
    [all...]
  /libcore/ojluni/src/main/java/java/util/
ResourceBundle.java 195 * non-standard resource bundle formats, change the search strategy, or
1284 List<String> formats = control.getFormats(baseName); local
2880 private final List<String> formats; field in class:ResourceBundle.SingleFormatControl
    [all...]
  /cts/apps/CameraITS/pymodules/its/
device.py 476 format(s) of the captured image. The formats may be "yuv", "jpeg",
481 request images back in multiple formats (e.g.) raw+yuv, raw+jpeg,
497 surface formats when reprocessing is enabled are "yuv" and "jpeg".
537 specifying one or more formats where each output is the full size for
552 If multiple formats are specified, then this function returns multiple
553 capture objects, one for each requested format. If multiple formats and
556 the returned objects matches the order of the requested formats in the
587 out_surfaces: (Optional) specifications of the output image formats
628 formats = [c["format"] if "format" in c else "yuv"
630 formats = [s if s != "jpg" else "jpeg" for s in formats
    [all...]
  /prebuilts/go/darwin-x86/src/image/
format.go 23 // Formats is the list of registered formats.
24 var formats []format var
33 formats = append(formats, format{name, magic, decode, decodeConfig})
65 for _, f := range formats {
  /prebuilts/go/linux-x86/src/image/
format.go 23 // Formats is the list of registered formats.
24 var formats []format var
33 formats = append(formats, format{name, magic, decode, decodeConfig})
65 for _, f := range formats {
  /external/mesa3d/docs/OLD/
MESA_packed_depth_stencil.spec 36 packed pixel formats and types which pack both stencil and depth
42 pixel formats? Should we instead provide both:
50 preceeds depth in the 1_15 and 8_24 formats?
52 3. Do we really want the GL_UNSIGNED_SHORT formats?
78 One entry is added to table 3.5 (DrawPixels and ReadPixels formats).
102 Table 3.5: DrawPixels and ReadPixels formats. The third column
106 Add to the description of packed pixel formats:
109 Token Name Type Elements Pixel Formats
  /external/deqp/modules/gles2/functional/
es2fTextureSizeTests.cpp 365 } formats[] = local
382 for (int formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); formatNdx++)
387 name << width << "x" << height << "_" << formats[formatNdx].name << (mipmap ? "_mipmap" : "");
390 formats[formatNdx].format, formats[formatNdx].dataType,
405 for (int formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); formatNdx++)
410 name << width << "x" << height << "_" << formats[formatNdx].name << (mipmap ? "_mipmap" : "");
413 formats[formatNdx].format, formats[formatNdx].dataType,
  /external/deqp/modules/gles3/functional/
es3fTextureSizeTests.cpp 365 } formats[] = local
382 for (int formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); formatNdx++)
387 name << width << "x" << height << "_" << formats[formatNdx].name << (mipmap ? "_mipmap" : "");
390 formats[formatNdx].format, formats[formatNdx].dataType,
405 for (int formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); formatNdx++)
410 name << width << "x" << height << "_" << formats[formatNdx].name << (mipmap ? "_mipmap" : "");
413 formats[formatNdx].format, formats[formatNdx].dataType,
  /hardware/qcom/audio/legacy/alsa_sound/
AudioUtil.cpp 126 unsigned char formats[16]; local
176 formats [nIndex] = (sad[nIndex] & 0xFF) >> 3;
188 ALOGV("Format Byte %d\n", formats[i]);
189 pInfo->AudioBlocksArray[i].nFormatId = (EDID_AUDIO_FORMAT_ID)printFormatFromEDID(formats[i]);
197 pInfo->AudioBlocksArray[i].nBitsPerSample = getBitsPerSampleFromEDID(bitrate[i],formats[i]);
  /libcore/ojluni/src/main/java/java/text/
ChoiceFormat.java 71 * When creating a <code>ChoiceFormat</code>, you must specify an array of formats
77 * <em>formats</em> = {"Sun","Mon","Tue","Wed","Thur","Fri","Sat"}
80 * <em>formats</em> = {"no files", "one file", "many files"}<br>
157 * Choice formats are not synchronized.
307 * Constructs with limits and corresponding formats based on the pattern.
315 * Constructs with the limits and the corresponding formats.
318 public ChoiceFormat(double[] limits, String[] formats) {
319 setChoices(limits, formats);
330 * @param formats are the formats you want to use for each limit
    [all...]
  /external/deqp/modules/gles31/functional/
es31fNegativeShaderImageLoadStoreTests.cpp 405 const tcu::TextureFormat formats[] = local
433 for (int fmtNdx = 0; fmtNdx < DE_LENGTH_OF_ARRAY(formats); ++fmtNdx)
437 testShader(ctx, IMAGE_OPERATION_STORE, memoryOptions[memoryNdx], s_imageTypes[typeNdx], formats[fmtNdx]);
446 const tcu::TextureFormat formats[] = local
474 for (int fmtNdx = 0; fmtNdx < DE_LENGTH_OF_ARRAY(formats); ++fmtNdx)
478 testShader(ctx, IMAGE_OPERATION_LOAD, memoryOptions[memoryNdx], s_imageTypes[typeNdx], formats[fmtNdx]);
487 const tcu::TextureFormat formats[] = local
521 for (int fmtNdx = 0; fmtNdx < DE_LENGTH_OF_ARRAY(formats); ++fmtNdx)
527 testShader(ctx, imageOperations[functionNdx], memoryOptions[memoryNdx], s_imageTypes[typeNdx], formats[fmtNdx]);
537 const tcu::TextureFormat formats[] local
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
Helpers.h 102 inline VkResult get(VkPhysicalDevice phy, VkSurfaceKHR surface, std::vector<VkSurfaceFormatKHR> &formats)
107 formats.resize(count);
108 return vk::GetPhysicalDeviceSurfaceFormatsKHR(phy, surface, &count, formats.data());
  /external/webrtc/talk/app/webrtc/
videosource_unittest.cc 57 // testing without known camera formats.
63 std::vector<cricket::VideoFormat> formats; local
64 formats.push_back(cricket::VideoFormat(1280, 720,
66 formats.push_back(cricket::VideoFormat(640, 480,
68 formats.push_back(cricket::VideoFormat(640, 400,
70 formats.push_back(cricket::VideoFormat(320, 240,
72 formats.push_back(cricket::VideoFormat(352, 288,
74 ResetSupportedFormats(formats);
77 // This function is used for resetting the supported capture formats and
83 std::vector<cricket::VideoFormat> formats; local
90 std::vector<cricket::VideoFormat> formats; local
    [all...]
  /frameworks/native/opengl/libagl/
state.cpp 371 GGLFormat const * formats = gglGetPixelFormatTable(); local
372 params[0] = formats[index].ah - formats[index].al;
377 GGLFormat const * formats = gglGetPixelFormatTable(); local
378 params[0] = formats[index].rh - formats[index].rl;
383 GGLFormat const * formats = gglGetPixelFormatTable(); local
384 params[0] = formats[index].gh - formats[index].gl;
389 GGLFormat const * formats = gglGetPixelFormatTable() local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_arrays.py 4 formats = "bBhHiIlLqQfd" variable
6 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
16 for fmt in formats:
7 c_long, c_ulonglong, c_float, c_double, c_longdouble variable
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_arrays.py 4 formats = "bBhHiIlLqQfd" variable
6 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
16 for fmt in formats:
7 c_long, c_ulonglong, c_float, c_double, c_longdouble variable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_arrays.py 4 formats = "bBhHiIlLqQfd" variable
6 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
16 for fmt in formats:
7 c_long, c_ulonglong, c_float, c_double, c_longdouble variable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_sdist.py 116 cmd.formats = ['zip']
147 cmd.formats = ['gztar', 'tar']
161 cmd.formats = ['tar', 'gztar']
181 cmd.formats = ['gztar']
237 cmd.formats = ['zip']
303 if line.strip().startswith('--formats=')]
315 # formats has to be a string splitable on (' ', ',') or
317 cmd.formats = 1
319 cmd.formats = ['zip']
322 # formats has to be know
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_arrays.py 4 formats = "bBhHiIlLqQfd" variable
6 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
16 for fmt in formats:
7 c_long, c_ulonglong, c_float, c_double, c_longdouble variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_sdist.py 116 cmd.formats = ['zip']
147 cmd.formats = ['gztar', 'tar']
161 cmd.formats = ['tar', 'gztar']
181 cmd.formats = ['gztar']
237 cmd.formats = ['zip']
303 if line.strip().startswith('--formats=')]
315 # formats has to be a string splitable on (' ', ',') or
317 cmd.formats = 1
319 cmd.formats = ['zip']
322 # formats has to be know
    [all...]
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioProfile.h 160 FormatVector formats; local
161 formats.add(profileToAdd->getFormat());
162 setFormats(FormatVector(formats));
254 void setFormats(const FormatVector &formats)
261 for (size_t i = 0; i < formats.size(); i++) {
262 sp<AudioProfile> profile = new AudioProfile(formats[i],
  /external/ImageMagick/MagickCore/
magick.c 13 % Methods to Read or List ImageMagick Image formats %
608 % GetMagickInfoList() returns any image formats that match the specified
620 % o number_formats: This integer returns the number of formats in the list.
649 **formats;
667 formats=(const MagickInfo **) AcquireQuantumMemory((size_t)
668 GetNumberOfNodesInSplayTree(magick_list)+1UL,sizeof(*formats));
669 if (formats == (const MagickInfo **) NULL)
681 formats[i++]=p;
685 qsort((void *) formats,(size_t) i,sizeof(*formats),MagickInfoCompare)
632 **formats; local
725 **formats; local
    [all...]
  /external/ImageMagick/api_examples/
magick_script 15 which reformat such documentation into many different doc formats.
  /external/autotest/client/site_tests/hardware_VideoDecodeCapable/
hardware_VideoDecodeCapable.py 24 KEY_FORMATS = 'formats'
37 # Requested formats for decoding devices
41 # REQUESTED formats for GSCALER devices
112 """Use the v4l2 binary to enum formats.
115 capture formats and output formats.
119 @return a dict of keyvals reflecting the formats supported.
125 logging.info('%s, capture formats=%s', video_device, capture_formats)
127 logging.info('%s, output formats=%s', video_device, output_formats)
134 """Check supported image formats for all expected device node
    [all...]

Completed in 814 milliseconds

<<11121314151617181920>>