• 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()
543 void Parser::ParseAsRecord(const std::vector<Token> &tokens) in ParseAsRecord() argument
545 …LOG(DEBUG, ASSEMBLER) << "started parsing of record (line " << line_stric_ << "): " << tokens[0].w… in ParseAsRecord()
565 …G(DEBUG, ASSEMBLER) << "record body is open, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsRecord()
577 …DEBUG, ASSEMBLER) << "record body is closed, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsRecord()
588 void Parser::ParseAsFunction(const std::vector<Token> &tokens) in ParseAsFunction() argument
590 …LOG(DEBUG, ASSEMBLER) << "started parsing of function (line " << line_stric_ << "): " << tokens[0]… in ParseAsFunction()
610 …DEBUG, ASSEMBLER) << "function body is open, line " << line_stric_ << ": " << tokens[0].whole_line; in ParseAsFunction()
623 << tokens[0].whole_line; in ParseAsFunction()
633 void Parser::ParseAsBraceRight(const std::vector<Token> &tokens) in ParseAsBraceRight() argument
641 … LOG(DEBUG, ASSEMBLER) << "body is closed (line " << line_stric_ << "): " << tokens[0].whole_line; in ParseAsBraceRight()
829 catch_block.whole_line = context_.tokens[0].whole_line; in PrepareCatchBlock()
883 size_t size = context_.tokens.size(); in ParseAsCatchDirective()
913 void Parser::ParseAsCatchall(const std::vector<Token> &tokens) in ParseAsCatchall() argument
923 << "): " << tokens[0].whole_line; in ParseAsCatchall()
928 void Parser::ParseAsLanguage(const std::vector<Token> &tokens, bool &is_lang_parsed, bool &is_first… in ParseAsLanguage() argument
942 << "): " << tokens[0].whole_line; in ParseAsLanguage()
1007 for (const auto &tokens : vectors_tokens) { in Parse() local
1010 if (tokens.empty()) { in Parse()
1014 …LOG(DEBUG, ASSEMBLER) << "started parsing of line " << line_stric_ << ": " << tokens[0].whole_line; in Parse()
1016 context_.Make(tokens); in Parse()
1021 ParseAsCatchall(tokens); in Parse()
1025 ParseAsLanguage(tokens, is_lang_parsed, is_first_statement); in Parse()
1029 ParseAsRecord(tokens); in Parse()
1033 ParseAsFunction(tokens); in Parse()
1037 ParseAsArray(tokens); in Parse()
1041 ParseAsBraceRight(tokens); in Parse()
1071 auto [tokens, error] = l.TokenizeString(line); in Parse()
1076 v.push_back(tokens); in Parse()
1175 …SEMBLER) << "label search started (line " << line_stric_ << "): " << context_.tokens[0].whole_line; in ParseLabel()
1229 …LOG(DEBUG, ASSEMBLER) << "no more tokens (line " << line_stric_ << "): " << context_.tokens[0].who… in ParseOperation()
1238 …BLER) << "operaion search started (line " << line_stric_ << "): " << context_.tokens[0].whole_line; in ParseOperation()
1850 field.whole_line = context_.tokens[context_.number - 1].whole_line; in ParseOperandField()
1851 … field.bound_left = context_.tokens[context_.number - 1].bound_left + record_name.length() + 1; in ParseOperandField()
1852 field.bound_right = context_.tokens[context_.number - 1].bound_right; in ParseOperandField()
1980 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseRecordName()
2015 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseFunctionName()
2048 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseArrayName()
2093 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseFunctionReturn()
2185 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseFunctionArgs()
2215 << "): " << context_.tokens[context_.number - 1].whole_line; in ParseMetaDef()