Searched refs:PropertyEntryBuilder (Results 1 – 3 of 3) sorted by relevance
28 struct PropertyEntryBuilder { struct29 PropertyEntryBuilder() : context(nullptr), type(nullptr) {} in PropertyEntryBuilder() function30 PropertyEntryBuilder(const std::string& name, const std::string* context, const std::string* type) in PropertyEntryBuilder() function86 const PropertyEntryBuilder property_entry() const { return property_entry_; } in property_entry()89 const std::vector<PropertyEntryBuilder>& prefixes() const { return prefixes_; } in prefixes()90 const std::vector<PropertyEntryBuilder>& exact_matches() const { return exact_matches_; } in exact_matches()93 PropertyEntryBuilder property_entry_;95 std::vector<PropertyEntryBuilder> prefixes_;96 std::vector<PropertyEntryBuilder> exact_matches_;
39 uint32_t WritePropertyEntry(const PropertyEntryBuilder& property_entry);
42 uint32_t TrieSerializer::WritePropertyEntry(const PropertyEntryBuilder& property_entry) { in WritePropertyEntry()