• Home
  • Raw
  • Download

Lines Matching full:tokens

139                           << "): " << context_.tokens[context_.number - 1].whole_line;  in ParseFieldType()
213 void Parser::ParseAsArray(const std::vector<Token> &tokens) in ParseAsArray() argument
215 …LOG(DEBUG, ASSEMBLER) << "started parsing of array (line " << line_stric_ << "): " << tokens[0].wh… in ParseAsArray()
232 …LOG(DEBUG, ASSEMBLER) << "array body is open, line " << line_stric_ << ": " << tokens[0].whole_lin… in ParseAsArray()
262 …LOG(DEBUG, ASSEMBLER) << "array body is closed, line " << line_stric_ << ": " << tokens[0].whole_l… in ParseAsArray()
368 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseArrayElementType()
528 void Parser::ParseAsRecord(const std::vector<Token> &tokens) in ParseAsRecord() argument
530 …LOG(DEBUG, ASSEMBLER) << "started parsing of record (line " << line_stric_ << "): " << tokens[0].w… in ParseAsRecord()
550 …G(DEBUG, ASSEMBLER) << "record body is open, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsRecord()
562 …DEBUG, ASSEMBLER) << "record body is closed, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsRecord()
573 void Parser::ParseAsFunction(const std::vector<Token> &tokens) in ParseAsFunction() argument
575 …LOG(DEBUG, ASSEMBLER) << "started parsing of function (line " << line_stric_ << "): " << tokens[0]… in ParseAsFunction()
595 …DEBUG, ASSEMBLER) << "function body is open, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsFunction()
608 << tokens[0].whole_line; in ParseAsFunction()
618 void Parser::ParseAsBraceRight(const std::vector<Token> &tokens) in ParseAsBraceRight() argument
626 … LOG(DEBUG, ASSEMBLER) << "body is closed (line " << line_stric_ << "): " << tokens[0].whole_line; in ParseAsBraceRight()
813 catch_block.whole_line = context_.tokens[0].whole_line; in PrepareCatchBlock()
867 size_t size = context_.tokens.size(); in ParseAsCatchDirective()
897 void Parser::ParseAsCatchall(const std::vector<Token> &tokens) in ParseAsCatchall() argument
907 << "): " << tokens[0].whole_line; in ParseAsCatchall()
912 void Parser::ParseAsLanguage(const std::vector<Token> &tokens, bool &is_lang_parsed, bool &is_first… in ParseAsLanguage() argument
926 << "): " << tokens[0].whole_line; in ParseAsLanguage()
991 for (const auto &tokens : vectors_tokens) { in Parse() local
994 if (tokens.empty()) { in Parse()
998 …LOG(DEBUG, ASSEMBLER) << "started parsing of line " << line_stric_ << ": " << tokens[0].whole_line; in Parse()
1000 context_.Make(tokens); in Parse()
1005 ParseAsCatchall(tokens); in Parse()
1009 ParseAsLanguage(tokens, is_lang_parsed, is_first_statement); in Parse()
1013 ParseAsRecord(tokens); in Parse()
1017 ParseAsFunction(tokens); in Parse()
1021 ParseAsArray(tokens); in Parse()
1025 ParseAsBraceRight(tokens); in Parse()
1055 auto [tokens, error] = l.TokenizeString(line); in Parse()
1060 v.push_back(tokens); in Parse()
1159 …SEMBLER) << "label search started (line " << line_stric_ << "): " << context_.tokens[0].whole_line; in ParseLabel()
1213 …LOG(DEBUG, ASSEMBLER) << "no more tokens (line " << line_stric_ << "): " << context_.tokens[0].who… in ParseOperation()
1222 …BLER) << "operaion search started (line " << line_stric_ << "): " << context_.tokens[0].whole_line; in ParseOperation()
1834 field.whole_line = context_.tokens[context_.number - 1].whole_line; in ParseOperandField()
1835 … field.bound_left = context_.tokens[context_.number - 1].bound_left + record_name.length() + 1; in ParseOperandField()
1836 field.bound_right = context_.tokens[context_.number - 1].bound_right; in ParseOperandField()
1964 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseRecordName()
1999 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseFunctionName()
2032 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseArrayName()
2073 curr_debug.bound_left = context_.tokens[context_.number - 1].bound_left; in SetOperationInformation()
2074 curr_debug.bound_right = context_.tokens[context_.number - 1].bound_right; in SetOperationInformation()
2080 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseFunctionReturn()
2172 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseFunctionArgs()
2202 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseMetaDef()