Lines Matching refs:DSLVar
149 class DSLVar : public DSLVarBase {
151 DSLVar() = default;
153 DSLVar(DSLType type, skstd::string_view name = "var",
158 DSLVar(DSLType type, const char* name, DSLExpression initialValue = DSLExpression(),
160 : DSLVar(type, skstd::string_view(name), std::move(initialValue), pos) {} in DSLVar() function
162 DSLVar(DSLType type, DSLExpression initialValue, PositionInfo pos = PositionInfo::Capture())
165 DSLVar(const DSLModifiers& modifiers, DSLType type, skstd::string_view name = "var",
169 DSLVar(const DSLModifiers& modifiers, DSLType type, const char* name,
171 : DSLVar(modifiers, type, skstd::string_view(name), std::move(initialValue), pos) {} in DSLVar() function
173 DSLVar(DSLVar&&) = default;
177 void swap(DSLVar& other);
181 DSLPossibleExpression operator=(DSLVar& param) {