Home
last modified time | relevance | path

Searched refs:ttext (Results 1 – 8 of 8) sorted by relevance

/external/snakeyaml/src/test/resources/pyyaml/
Dspec-09-25.canonical4 \ttext\n"
/external/swiftshader/third_party/llvm-7.0/llvm/test/YAMLParser/
Dspec-09-25.test2 # CHECK: !!str "literal\n\ttext\n"
/external/llvm/test/YAMLParser/
Dspec-09-25.test2 # CHECK: !!str "literal\n\ttext\n"
/external/antlr/runtime/Cpp/include/
Dantlr3treeparser.inl109 StringType ttext = theBaseTree->toStringTree(); local
120 errtext << ", near " << ttext;
Dantlr3parser.inl102 StringType ttext = theToken->toString(); local
116 errtext << "\n near " << ( ttext.empty()
117 ? "<no text for the token>" : ttext ) << "\n";
Dantlr3baserecognizer.inl257 StringType ttext; local
/external/antlr/runtime/C/src/
Dantlr3baserecognizer.c1013 pANTLR3_STRING ttext; in displayRecognitionError() local
1023 ttext = NULL; in displayRecognitionError()
1066 ttext = theToken->toString(theToken); in displayRecognitionError()
1079 …TLR3_FPRINTF(stderr, "\n near %s\n ", ttext == NULL ? (pANTLR3_UINT8)"<no text for the token… in displayRecognitionError()
1090 ttext = theBaseTree->toStringTree(theBaseTree); in displayRecognitionError()
1101 ANTLR3_FPRINTF(stderr, ", near %s", ttext->chars); in displayRecognitionError()
/external/python/cpython3/Lib/email/
D_header_value_parser.py2078 ttext = m.group()
2079 value = value[len(ttext):]
2080 ttext = ValueTerminal(ttext, 'ttext')
2081 _validate_xtext(ttext)
2082 return ttext, value