Home | History | Annotate | Download | only in lit

Lines Matching refs:LIST

109             # Empty the list and note that we've done a pass over the list
110 self._procs = [] # Python2 doesn't have list.clear()
123 self.outputFiles = list(outputFiles)
219 # from a file are represented with a list [file, mode, file-object]
297 args = list(j.args)
550 Parse the commands in an integrated test script file into a list of
671 # Note Python 3 map() gives an iterator rather than a list so explicitly
672 # convert to list before returning.
673 return list(map(processLine, script))
682 COMMAND: A Keyword taking a list of shell commands. Ex 'RUN:'
683 LIST: A keyword taking a comma separated list of value. Ex 'XFAIL:'
688 LIST = 2
705 [ParserKind.LIST, ParserKind.COMMAND]:
721 elif kind == ParserKind.LIST:
771 """A parser for LIST type keywords"""
800 IntegratedTestKeywordParser('XFAIL:', ParserKind.LIST,
802 IntegratedTestKeywordParser('REQUIRES:', ParserKind.LIST,
804 IntegratedTestKeywordParser('REQUIRES-ANY:', ParserKind.LIST,
806 IntegratedTestKeywordParser('UNSUPPORTED:', ParserKind.LIST,
930 substitutions = list(extra_substitutions)