Lines Matching refs:name
36 PropertyBase(std::string name, std::string type,
38 : name_(name), type_(type), decompressed_type_(decompressed_type) {}
40 public_view->name = name_.c_str();
54 StructProperty(std::string name, std::string type,
57 : PropertyBase(std::move(name), std::move(type),
82 ObjectProperty(std::string name, std::string type,
87 : PropertyBase(std::move(name), std::move(type),
225 // A helpful template so that generated code can be sure that a string type name
226 // actually resolves to a type, by repeating the name as the template parameter
229 const char* CheckTypeName(const char* name) {
230 return name;