Home
last modified time | relevance | path

Searched refs:ann (Results 1 - 7 of 7) sorted by relevance

/third_party/ffmpeg/libavformat/
H A Dsapenc.c37 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 Dann_module9.py6 ann = Union[List[str], int] variable
/third_party/python/Lib/
H A Dinspect.py216 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 Dfunctools.py868 ann = getattr(cls, '__annotations__', {})
869 if not ann:
H A Dtyping.py2319 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 Dtest_future.py129 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 Dtest_inspect.py942 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