Lines Matching refs:field

64     LOG(DEBUG, ASSEMBLER) << "parse line " << line_stric_ << " as field (.field name)";
75 context_.err = GetError("Expected a new field on the next line.", Error::ErrorType::ERR_BAD_KEYWORD);
93 GetError("Repeating field names in the same record.", Error::ErrorType::ERR_REPEATING_FIELD_NAME);
110 context_.err = GetError("Invalid name of field.", Error::ErrorType::ERR_BAD_OPERATION_NAME);
145 LOG(DEBUG, ASSEMBLER) << "started searching field type value (line " << line_stric_
159 LOG(DEBUG, ASSEMBLER) << "field type found (line " << line_stric_ << "): " << context_.GiveToken();
171 context_.err = GetError("Expected field name.", Error::ErrorType::ERR_BAD_FIELD_MISSING_NAME, +1);
760 Error("This field does not exist.", fld.line_of_def, Error::ErrorType::ERR_BAD_ID_FIELD, "",
1810 context_.err = GetError("Expected field.", Error::ErrorType::ERR_BAD_OPERAND);
1814 context_.err = GetError("Invalid name of field.", Error::ErrorType::ERR_BAD_NAME_ID);
1821 // the record name is before the second dot, and the field name is after the second dot
1834 [&field_name](pandasm::Field &field) { return field_name == field.name; });
1838 auto &field = it_record->second.field_list.back();
1839 field.name = field_name;
1840 field.line_of_def = line_stric_;
1841 field.whole_line = context_.tokens[context_.number - 1].whole_line;
1842 field.bound_left = context_.tokens[context_.number - 1].bound_left + record_name.length() + 1;
1843 field.bound_right = context_.tokens[context_.number - 1].bound_right;
1844 field.is_defined = false;