Lines Matching refs:ScalarField
23 const std::string ScalarField::kFieldType = "ScalarField";
25 ScalarField::ScalarField(std::string name, int size, ParseLocation loc) : PacketField(name, loc), s… in ScalarField() function in ScalarField
31 const std::string& ScalarField::GetFieldType() const { in GetFieldType()
32 return ScalarField::kFieldType; in GetFieldType()
35 Size ScalarField::GetSize() const { in GetSize()
39 std::string ScalarField::GetDataType() const { in GetDataType()
52 int ScalarField::GenBounds(std::ostream& s, Size start_offset, Size end_offset, Size size) const { in GenBounds()
69 void ScalarField::GenExtractor(std::ostream& s, int num_leading_bits, bool) const { in GenExtractor()
93 std::string ScalarField::GetGetterFunctionName() const { in GetGetterFunctionName()
99 void ScalarField::GenGetter(std::ostream& s, Size start_offset, Size end_offset) const { in GenGetter()
111 std::string ScalarField::GetBuilderParameterType() const { in GetBuilderParameterType()
115 bool ScalarField::HasParameterValidator() const { in HasParameterValidator()
119 void ScalarField::GenParameterValidator(std::ostream& s) const { in GenParameterValidator()
123 void ScalarField::GenInserter(std::ostream& s) const { in GenInserter()
131 void ScalarField::GenValidator(std::ostream&) const { in GenValidator()
135 void ScalarField::GenStringRepresentation(std::ostream& s, std::string accessor) const { in GenStringRepresentation()
139 std::string ScalarField::GetRustDataType() const { in GetRustDataType()
143 std::string ScalarField::GetRustParseDataType() const { in GetRustParseDataType()
147 int ScalarField::GetRustBitOffset( in GetRustBitOffset()
163 void ScalarField::GenRustGetter(std::ostream& s, Size start_offset, Size end_offset) const { in GenRustGetter()
214 void ScalarField::GenRustWriter(std::ostream& s, Size start_offset, Size end_offset) const { in GenRustWriter()