• Home
  • Raw
  • Download

Lines Matching full:tokens

147                           << "): " << context_.tokens[context_.number - 1].whole_line;  in ParseFieldType()
221 void Parser::ParseAsArray(const std::vector<Token> &tokens) in ParseAsArray() argument
223 …LOG(DEBUG, ASSEMBLER) << "started parsing of array (line " << line_stric_ << "): " << tokens[0].wh… in ParseAsArray()
240 …LOG(DEBUG, ASSEMBLER) << "array body is open, line " << line_stric_ << ": " << tokens[0].whole_lin… in ParseAsArray()
270 …LOG(DEBUG, ASSEMBLER) << "array body is closed, line " << line_stric_ << ": " << tokens[0].whole_l… in ParseAsArray()
376 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseArrayElementType()
536 void Parser::ParseAsRecord(const std::vector<Token> &tokens) in ParseAsRecord() argument
538 …LOG(DEBUG, ASSEMBLER) << "started parsing of record (line " << line_stric_ << "): " << tokens[0].w… in ParseAsRecord()
558 …G(DEBUG, ASSEMBLER) << "record body is open, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsRecord()
570 …DEBUG, ASSEMBLER) << "record body is closed, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsRecord()
581 void Parser::ParseAsFunction(const std::vector<Token> &tokens) in ParseAsFunction() argument
583 …LOG(DEBUG, ASSEMBLER) << "started parsing of function (line " << line_stric_ << "): " << tokens[0]… in ParseAsFunction()
603 …DEBUG, ASSEMBLER) << "function body is open, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsFunction()
616 << tokens[0].whole_line; in ParseAsFunction()
626 void Parser::ParseAsBraceRight(const std::vector<Token> &tokens) in ParseAsBraceRight() argument
634 … LOG(DEBUG, ASSEMBLER) << "body is closed (line " << line_stric_ << "): " << tokens[0].whole_line; in ParseAsBraceRight()
821 catch_block.whole_line = context_.tokens[0].whole_line; in PrepareCatchBlock()
875 size_t size = context_.tokens.size(); in ParseAsCatchDirective()
905 void Parser::ParseAsCatchall(const std::vector<Token> &tokens) in ParseAsCatchall() argument
915 << "): " << tokens[0].whole_line; in ParseAsCatchall()
920 void Parser::ParseAsLanguage(const std::vector<Token> &tokens, bool &is_lang_parsed, bool &is_first… in ParseAsLanguage() argument
934 << "): " << tokens[0].whole_line; in ParseAsLanguage()
999 for (const auto &tokens : vectors_tokens) { in Parse() local
1002 if (tokens.empty()) { in Parse()
1006 …LOG(DEBUG, ASSEMBLER) << "started parsing of line " << line_stric_ << ": " << tokens[0].whole_line; in Parse()
1008 context_.Make(tokens); in Parse()
1013 ParseAsCatchall(tokens); in Parse()
1017 ParseAsLanguage(tokens, is_lang_parsed, is_first_statement); in Parse()
1021 ParseAsRecord(tokens); in Parse()
1025 ParseAsFunction(tokens); in Parse()
1029 ParseAsArray(tokens); in Parse()
1033 ParseAsBraceRight(tokens); in Parse()
1063 auto [tokens, error] = l.TokenizeString(line); in Parse()
1068 v.push_back(tokens); in Parse()
1169 …SEMBLER) << "label search started (line " << line_stric_ << "): " << context_.tokens[0].whole_line; in ParseLabel()
1223 …LOG(DEBUG, ASSEMBLER) << "no more tokens (line " << line_stric_ << "): " << context_.tokens[0].who… in ParseOperation()
1232 …BLER) << "operaion search started (line " << line_stric_ << "): " << context_.tokens[0].whole_line; in ParseOperation()
1847 field.whole_line = context_.tokens[context_.number - 1].whole_line; in ParseOperandField()
1848 … field.bound_left = context_.tokens[context_.number - 1].bound_left + record_name.length() + 1; in ParseOperandField()
1849 field.bound_right = context_.tokens[context_.number - 1].bound_right; in ParseOperandField()
1978 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseRecordName()
2014 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseFunctionName()
2047 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseArrayName()
2089 curr_debug.whole_line = context_.tokens[context_.number - 1].whole_line; in SetOperationInformation()
2090 curr_debug.bound_left = context_.tokens[context_.number - 1].bound_left; in SetOperationInformation()
2091 curr_debug.bound_right = context_.tokens[context_.number - 1].bound_right; in SetOperationInformation()
2097 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseFunctionReturn()
2190 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseFunctionArgs()
2220 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseMetaDef()