Home
last modified time | relevance | path

Searched defs:TextIO (Results 1 – 8 of 8) sorted by relevance

/third_party/mesa3d/src/gallium/auxiliary/indices/
Du_unfilled_gen.py58 def prolog(f: 'T.TextIO'):
86 def line(f: 'T.TextIO', intype, outtype, ptr, v0, v1 ):
94 def do_tri(f: 'T.TextIO', intype, outtype, ptr, v0, v1, v2 ):
99 def do_quad(f: 'T.TextIO', intype, outtype, ptr, v0, v1, v2, v3 ):
111 def preamble(f: 'T.TextIO', intype, outtype, prim):
129 def postamble(f: 'T.TextIO'):
133 def tris(f: 'T.TextIO', intype, outtype):
141 def tristrip(f: 'T.TextIO', intype, outtype):
149 def trifan(f: 'T.TextIO', intype, outtype):
158 def polygon(f: 'T.TextIO', intype, outtype):
[all …]
Du_indices_gen.py77 def prolog(f: 'T.TextIO') -> None:
108 def shape(f: 'T.TextIO', intype, outtype, ptr, *vertices):
112 def do_point(f: 'T.TextIO', intype, outtype, ptr, v0 ):
115 def do_line(f: 'T.TextIO', intype, outtype, ptr, v0, v1, inpv, outpv ):
121 def do_tri(f: 'T.TextIO', intype, outtype, ptr, v0, v1, v2, inpv, outpv ):
129 def do_quad(f: 'T.TextIO', intype, outtype, ptr, v0, v1, v2, v3, inpv, outpv, out_prim ):
145 def do_lineadj(f: 'T.TextIO', intype, outtype, ptr, v0, v1, v2, v3, inpv, outpv ):
151 def do_triadj(f: 'T.TextIO', intype, outtype, ptr, v0, v1, v2, v3, v4, v5, inpv, outpv ):
163 def preamble(f: 'T.TextIO', intype, outtype, inpv, outpv, pr, prim, out_prim):
181 def postamble(f: 'T.TextIO'):
[all …]
/third_party/mesa3d/src/util/
Dglsl2spirv.py148 def preprocess_file(args: 'Arguments', origin_file: T.TextIO, directory: os.PathLike, filemap: T.Di…
/third_party/python/Lib/test/libregrtest/
Druntest_mp.py58 def run_test_in_subprocess(testname: str, ns: Namespace, stdout_fh: TextIO) -> subprocess.Popen:
210 def _run_process(self, test_name: str, stdout_fh: TextIO) -> int:
/third_party/python/Tools/scripts/
Ddeepfreeze.py112 def __init__(self, file: TextIO) -> None:
460 def generate(args: list[str], output: TextIO) -> None:
/third_party/jinja2/
Dcompiler.py106 stream: t.Optional[t.TextIO] = None,
306 stream: t.Optional[t.TextIO] = None,
/third_party/python/Lib/
Dtyping.py3294 class TextIO(IO[str]): class
3347 TextIO = TextIO variable in io
/third_party/python/Lib/test/
Dtest_typing.py7027 def stuff(a: TextIO) -> str: