Home | History | Annotate | Download | only in fst

Lines Matching refs:symbol

42   enum TokenType { SYMBOL = 1, BYTE = 2, UTF8 = 3 };
131 VLOG(1) << "StringCompiler::ConvertSymbolToLabel: Symbol \"" << s
132 << "\" is not mapped to any integer label, symbol table = "
149 TokenType token_type_; // Token type: symbol, byte or utf8 encoded
150 const SymbolTable *syms_; // Symbol table used when token type is symbol
151 Label unknown_label_; // Label for token missing from symbol table
166 enum TokenType { SYMBOL = 1, BYTE = 2, UTF8 = 3 };
182 if (token_type_ == SYMBOL) {
248 string symbol = syms_->Find(lab);
249 if (symbol == "") {
251 << "mapped to any textual symbol, symbol table = "
255 ostrm << symbol;
262 TokenType token_type_; // Token type: symbol, byte or utf8 encoded
263 const SymbolTable *syms_; // Symbol table used when token type is symbol