Home
last modified time | relevance | path

Searched refs:image_types (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Lib/tkinter/test/test_tkinter/
Dtest_images.py13 image_types = self.root.image_types()
14 self.assertIsInstance(image_types, tuple)
15 self.assertIn('photo', image_types)
16 self.assertIn('bitmap', image_types)
26 self.assertRaises(RuntimeError, tkinter.image_types)
28 image_types = tkinter.image_types()
29 self.assertIsInstance(image_types, tuple)
30 self.assertIn('photo', image_types)
31 self.assertIn('bitmap', image_types)
34 self.assertRaises(RuntimeError, tkinter.image_types)
/external/OpenCL-CTS/test_conformance/api/
Dtest_min_image_formats.cpp38 const cl_mem_object_type image_types[] = { in test_min_image_formats() local
74 for (int t = 0; t < ARRAY_SIZE(image_types); t++) in test_min_image_formats()
76 const cl_mem_object_type type = image_types[t]; in test_min_image_formats()
Dtest_api_consistency.cpp645 const cl_mem_object_type image_types[] = { in test_consistency_read_write_images() local
650 for (int i = 0; i < ARRAY_SIZE(image_types); i++) in test_consistency_read_write_images()
654 context, CL_MEM_KERNEL_READ_AND_WRITE, image_types[i], 0, NULL, in test_consistency_read_write_images()
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/
Dtest_images.py13 image_types = self.root.image_types()
14 self.assertIsInstance(image_types, tuple)
15 self.assertIn('photo', image_types)
16 self.assertIn('bitmap', image_types)
/external/OpenCL-CTS/test_conformance/computeinfo/
Dmain.cpp290 static const struct image_type_entry image_types[] = { variable
319 int ii, ni = sizeof(image_types) / sizeof(image_types[0]); in getImageInfo()
332 if (vercmp(version, image_types[ii].version) < 0) in getImageInfo()
337 log_info("\t%s supported formats:\n", image_types[ii].str); in getImageInfo()
346 image_types[ii].val, 5000, NULL, in getImageInfo()
370 image_types[ii].val, num_supported, in getImageInfo()
/external/vboot_reference/
DMakefile1161 ${BUILD}/utility/image_types.o \
1169 ${BUILD}/utility/bmpblk_font: OBJS += ${BUILD}/utility/image_types.o
1170 ${BUILD}/utility/bmpblk_font: ${BUILD}/utility/image_types.o
1171 ALL_OBJS += ${BUILD}/utility/image_types.o
/external/mesa3d/src/gallium/drivers/zink/nir_to_spirv/
Dnir_to_spirv.c46 SpvId image_types[PIPE_MAX_SAMPLERS]; member
533 assert(!ctx->image_types[index]); in emit_sampler()
534 ctx->image_types[index] = image_type; in emit_sampler()
553 assert(!ctx->image_types[index]); in emit_sampler()
554 ctx->image_types[index] = image_type; in emit_sampler()
1944 SpvId image_type = ctx->image_types[tex->texture_index]; in emit_tex()
/external/python/cpython2/Lib/lib-tk/
DTkinter.py1529 def image_types(self): member in Misc
3445 def image_types(): function
/external/python/cpython3/Lib/tkinter/
D__init__.py1901 def image_types(self): member in Misc
4184 def image_types(): function
/external/python/cpython2/Misc/
DHISTORY12206 image_types() calls are now also widget methods.
/external/python/cpython3/Misc/
DHISTORY29585 image_types() calls are now also widget methods.