Lines Matching defs:string
28 import string
33 """Escapes the string 'a' for use inside a CMake string.
37 '"' otherwise it will end the string
38 ';' otherwise the string becomes a list
41 '#' when the lexer is in string state, this does not start a comment
47 """Escapes the string 'a' for use as a CMake target name.
53 if c in string.ascii_letters or c in string.digits or c in '_.+-':
705 out.write('string(REPLACE " " ";" "gn_deps" ${gn_deps_string})\n')