Home
last modified time | relevance | path

Searched refs:abc (Results 1 – 25 of 32) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_abc.py9 import abc
16 @abc.abstractmethod
23 @abc.abstractproperty
30 __metaclass__ = abc.ABCMeta
31 @abc.abstractproperty
39 for abstractthing in [abc.abstractmethod, abc.abstractproperty]:
41 __metaclass__ = abc.ABCMeta
67 __metaclass__ = abc.ABCMeta
75 __metaclass__ = abc.ABCMeta
86 __metaclass__ = abc.ABCMeta
[all …]
Dtokenize_tests.txt10 # abc
113 x = u'abc' + U'ABC'
114 y = u"abc" + U"ABC"
115 x = ur'abc' + Ur'ABC' + uR'ABC' + UR'ABC'
116 y = ur"abc" + Ur"ABC" + uR"ABC" + UR"ABC"
Dregrtest.py991 for abc in [getattr(mod, a) for mod in modules for a in mod.__all__]:
993 if not hasattr(abc, '_abc_registry'):
995 for obj in abc.__subclasses__() + [abc]:
1061 for abc, registry in abcs.items():
1062 abc._abc_registry = registry.copy()
1063 abc._abc_cache.clear()
1064 abc._abc_negative_cache.clear()
Dtest_collections.py220 def validate_abstract_methods(self, abc, *names): argument
224 C = type('C', (abc,), methodstubs)
231 C = type('C', (abc,), stubs)
234 def validate_isinstance(self, abc, name): argument
239 self.assertIsInstance(C(), abc)
240 self.assertTrue(issubclass(C, abc))
244 self.assertIsInstance(C(), abc)
245 self.assertTrue(issubclass(C, abc))
249 self.assertNotIsInstance(C(), abc)
250 self.assertFalse(issubclass(C, abc))
[all …]
Dtest_decorators.py185 @funcattrs(abc=1, xyz="haha")
189 self.assertEqual(C.foo.abc, 1)
Dtest_grammar.py332 abc = a, b, c = x, y, z = xyz = 1, 2, (3, 4)
409 abc = [1,2,3]
410 x, y, z = abc
413 del abc
Dpickletester.py851 x.abc = 666
856 self.assertEqual(y.abc, 666)
/device/google/marlin/camera/QCamera2/stack/mm-camera-test/src/
Dmm_qcamera_rdi.c105 cam_stream_size_info_t abc ; in mm_app_add_rdi_stream() local
106 memset (&abc , 0, sizeof (cam_stream_size_info_t)); in mm_app_add_rdi_stream()
130 abc.num_streams = 1; in mm_app_add_rdi_stream()
131 abc.postprocess_mask[0] = 0; in mm_app_add_rdi_stream()
132 abc.stream_sizes[0].width = cam_cap->raw_dim[0].width; in mm_app_add_rdi_stream()
133 abc.stream_sizes[0].height = cam_cap->raw_dim[0].height; in mm_app_add_rdi_stream()
134 abc.type[0] = CAM_STREAM_TYPE_RAW; in mm_app_add_rdi_stream()
135 abc.buffer_info.min_buffers = num_bufs; in mm_app_add_rdi_stream()
136 abc.buffer_info.max_buffers = num_bufs; in mm_app_add_rdi_stream()
137 abc.is_type = IS_TYPE_NONE; in mm_app_add_rdi_stream()
[all …]
Dmm_qcamera_preview.c687 cam_stream_size_info_t abc ; in mm_app_add_preview_stream() local
688 memset (&abc , 0, sizeof (cam_stream_size_info_t)); in mm_app_add_preview_stream()
690 abc.num_streams = 2; in mm_app_add_preview_stream()
691 abc.postprocess_mask[0] = 2178; in mm_app_add_preview_stream()
692 abc.stream_sizes[0].width = preview_dim.width; in mm_app_add_preview_stream()
693 abc.stream_sizes[0].height = preview_dim.height; in mm_app_add_preview_stream()
694 abc.type[0] = CAM_STREAM_TYPE_PREVIEW; in mm_app_add_preview_stream()
696 abc.postprocess_mask[1] = analysis_pp_mask; in mm_app_add_preview_stream()
697 abc.stream_sizes[1].width = analysis_dim.width; in mm_app_add_preview_stream()
698 abc.stream_sizes[1].height = analysis_dim.height; in mm_app_add_preview_stream()
[all …]
Dmm_qcamera_snapshot.c580 cam_stream_size_info_t abc ; in mm_app_stop_capture_raw() local
581 memset (&abc , 0, sizeof (cam_stream_size_info_t)); in mm_app_stop_capture_raw()
593 rc = setmetainfoCommand(test_obj, &abc); in mm_app_stop_capture_raw()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dio.py61 import abc
79 __metaclass__ = abc.ABCMeta
Dnumbers.py9 from abc import ABCMeta, abstractmethod, abstractproperty
D_abcoll.py11 from abc import ABCMeta, abstractmethod
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dio.py52 import abc
70 __metaclass__ = abc.ABCMeta
Dnumbers.py9 from abc import ABCMeta, abstractmethod, abstractproperty
D_abcoll.py11 from abc import ABCMeta, abstractmethod
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
Dfix_operator.py81 def _handle_type2abc(self, node, results, module, abc): argument
84 args = [obj.clone(), String(u", " + u".".join([module, abc]))]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/md5test/
DREADME3 July 1991). The file "foo" contains the string "abc" with no trailing
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
Dpy2_test_grammar.py334 abc = a, b, c = x, y, z = xyz = 1, 2, (3, 4)
411 abc = [1,2,3]
412 x, y, z = abc
415 del abc
Dpy3_test_grammar.py374 abc = a, b, c = x, y, z = xyz = 1, 2, (3, 4)
381 abc = [1,2,3]
382 x, y, z = abc
385 del abc
/device/linaro/bootloader/edk2/OvmfPkg/PlatformPei/
DPlatformPei.inf20 FILE_GUID = 222c386d-5abc-4fb4-b124-fbb82488acf4
/device/linaro/bootloader/edk2/BaseTools/UserManuals/
DUtilityManPage_template.rtf58 …\afs18 \ltrch\fcs0 \b\f258\fs18\insrsid5246601 \hich\af258\dbch\af31505\loch\f258 -x abc, --xyz abc
59 …rsid5246601 \tab \hich\af43\dbch\af31505\loch\f43 x equal to xyz, set to required value value: abc
60 …af258\dbch\af31505\loch\f258 -x\hich\af258\dbch\af31505\loch\f258 [abc], --xyz [abc]}{\rtlch\fcs1…
61 \par \tab \hich\af43\dbch\af31505\loch\f43 x equal to xyz, abc is optional
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
DKNOWN_PROBLEMS.txt45 r : abc <<action alpha>> D <<action beta>> E;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/
DPythonReadMe.txt218 abc.py inspect.py sre.py
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/decimaltestdata/
DddCanonical.decTest32 -- Uncanonical declets are: abc, where:

12