Home
last modified time | relevance | path

Searched refs:single_quoted (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/
Dparse_flags_from_env_test.cc46 string single_quoted; in TestParseFlagsFromEnv() local
52 tensorflow::Flag("single_quoted", &single_quoted, ""), in TestParseFlagsFromEnv()
64 CHECK_EQ(single_quoted, "single quoted \\\\ \n \"") << msg; in TestParseFlagsFromEnv()
/external/python/cpython2/Lib/
Dtokenize.py133 single_quoted = {} variable
142 single_quoted[t] = t
420 elif initial in single_quoted or \
421 token[:2] in single_quoted or \
422 token[:3] in single_quoted:
/external/python/cpython2/Lib/lib2to3/pgen2/
Dtokenize.py137 single_quoted = {} variable
146 single_quoted[t] = t
468 elif initial in single_quoted or \
469 token[:2] in single_quoted or \
470 token[:3] in single_quoted:
/external/python/cpython3/Lib/lib2to3/pgen2/
Dtokenize.py130 single_quoted = ( variable
488 elif initial in single_quoted or \
489 token[:2] in single_quoted or \
490 token[:3] in single_quoted:
/external/python/cpython3/Lib/
Dtokenize.py202 single_quoted = set() variable
206 single_quoted.add(u)
627 elif (initial in single_quoted or
628 token[:2] in single_quoted or
629 token[:3] in single_quoted):