Searched refs:ann (Results 1 - 7 of 7) sorted by relevance
/third_party/ffmpeg/libavformat/ |
H A D | sapenc.c | 37 uint8_t *ann; member 58 if (sap->last_time && sap->ann && sap->ann_fd) { in sap_write_close() 59 sap->ann[0] |= 4; /* Session deletion*/ in sap_write_close() 60 ffurl_write(sap->ann_fd, sap->ann, sap->ann_size); in sap_write_close() 63 av_freep(&sap->ann); in sap_write_close() 201 sap->ann = av_mallocz(sap->ann_size); in sap_write_header() 202 if (!sap->ann) { in sap_write_header() 206 sap->ann[pos] = (1 << 5); in sap_write_header() 209 sap->ann[pos] |= 0x10; in sap_write_header() 212 sap->ann[po in sap_write_header() [all...] |
/third_party/python/Lib/test/typinganndata/ |
H A D | ann_module9.py | 6 ann = Union[List[str], int] variable
|
/third_party/python/Lib/ |
H A D | inspect.py | 216 ann = obj_dict.get('__annotations__', None) 217 if isinstance(ann, types.GetSetDescriptorType): 218 ann = None 220 ann = None 232 ann = getattr(obj, '__annotations__', None) 240 ann = getattr(obj, '__annotations__', None) 247 if ann is None: 250 if not isinstance(ann, dict): 253 if not ann: 257 return dict(ann) [all...] |
H A D | functools.py | 868 ann = getattr(cls, '__annotations__', {}) 869 if not ann:
|
H A D | typing.py | 2319 ann = base.__dict__.get('__annotations__', {}) 2320 if isinstance(ann, types.GetSetDescriptorType): 2321 ann = {} 2331 for name, value in ann.items():
|
/third_party/python/Lib/test/ |
H A D | test_future.py | 129 def f() -> {ann}: 131 def g(arg: {ann}) -> None: 133 async def f2() -> {ann}: 135 async def g2(arg: {ann}) -> None: 138 var: {ann} 139 object.attr: {ann} 140 var: {ann} 141 var2: {ann} = None 142 object.attr: {ann} 148 exec(self.template.format(ann [all...] |
H A D | test_inspect.py | 942 args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, ann = \ 950 self.assertEqual(ann, ann_e) 1432 from test.typinganndata.ann_module9 import ann, ann1 namespace 1433 self.assertEqual(inspect.formatannotation(ann), 'Union[List[str], int]')
|
Completed in 16 milliseconds