Home
last modified time | relevance | path

Searched refs:field_string_ (Results 1 – 2 of 2) sorted by relevance

/external/perfetto/src/tracing/core/
Dtest_config.cc140 (field_string_ == other.field_string_) && in operator ==()
197 static_assert(sizeof(field_string_) == sizeof(proto.field_string()), in FromProto()
199 field_string_ = static_cast<decltype(field_string_)>(proto.field_string()); in FromProto()
271 static_assert(sizeof(field_string_) == sizeof(proto->field_string()), in ToProto()
274 static_cast<decltype(proto->field_string())>(field_string_)); in ToProto()
/external/perfetto/include/perfetto/tracing/core/
Dtest_config.h103 const std::string& field_string() const { return field_string_; } in field_string()
104 void set_field_string(const std::string& value) { field_string_ = value; } in set_field_string()
125 std::string field_string_ = {}; variable