Lines Matching defs:Property
76 Property(const char *key, const char *string) : key_(key), value_(string) {} in Property() function
77 Property(const char *key, util::StringView str) : key_(key), value_(str) {} in Property() function
78 Property(const char *key, bool boolean) : key_(key), value_(boolean) {} in Property() function
79 Property(const char *key, double number) : key_(key), value_(number) {} in Property() function
80 Property(const char *key, lexer::TokenType token) : key_(key), value_(token) {} in Property() function
81 … Property(const char *key, std::initializer_list<Property> props) : key_(key), value_(props) {} in Property() function
82 …Property(const char *key, const ir::AstNode *node) : key_(key), value_(const_cast<ir::AstNode *>(n… in Property() function
84 Property(const char *key, Constant constant) : key_(key), value_(constant) {} in Property() function
85 Property(const char *key, Nullable nullable) : key_(key) in Property() function
94 Property(const char *key, Optional optional) : key_(key) in Property() function
116 Property(const char *key, const ArenaVector<T> &array) : key_(key) in Property() function