Searched refs:FixedScalarField (Results 1 – 5 of 5) sorted by relevance
/system/bt/gd/packet/parser/fields/ |
D | fixed_scalar_field.cc | 20 const std::string FixedScalarField::kFieldType = "FixedScalarField"; 22 FixedScalarField::FixedScalarField(int size, int64_t value, ParseLocation loc) in FixedScalarField() function in FixedScalarField 25 const std::string& FixedScalarField::GetFieldType() const { in GetFieldType() 26 return FixedScalarField::kFieldType; in GetFieldType() 29 std::string FixedScalarField::GetDataType() const { in GetDataType() 33 void FixedScalarField::GenValue(std::ostream& s) const { in GenValue() 37 void FixedScalarField::GenStringRepresentation(std::ostream& s, std::string) const { in GenStringRepresentation()
|
D | fixed_scalar_field.h | 26 class FixedScalarField : public FixedField { 28 FixedScalarField(int size, int64_t value, ParseLocation loc);
|
/system/bt/gd/packet/parser/ |
D | struct_def.cc | 59 …field->GetFieldType() == FixedScalarField::kFieldType || field->GetFieldType() == CountField::kFie… in GenToString() 122 field->GetFieldType() != FixedScalarField::kFieldType && in GenParse() 138 …field->GetFieldType() != FixedScalarField::kFieldType && field->GetFieldType() != SizeField::kFiel… in GenParse()
|
D | packet_def.cc | 53 FixedScalarField::kFieldType, in GenParserDefinition() 135 FixedScalarField::kFieldType, in GenParserDefinitionPybind11() 324 …ieldType() == ReservedField::kFieldType || field->GetFieldType() == FixedScalarField::kFieldType || in GenParserToString()
|
D | language_y.yy | 489 …expanded_fields->push_back(new FixedScalarField(field->GetSize().bits(), std::get<int64_t>(constra… 637 $$ = new FixedScalarField($5, $3, LOC);
|