Lines Matching refs:DSLGlobalVar
197 class DSLGlobalVar : public DSLVarBase {
199 DSLGlobalVar() = default;
201 DSLGlobalVar(DSLType type, skstd::string_view name = "var",
205 DSLGlobalVar(DSLType type, const char* name, DSLExpression initialValue = DSLExpression(),
207 : DSLGlobalVar(type, skstd::string_view(name), std::move(initialValue), pos) {}
209 DSLGlobalVar(DSLType type, DSLExpression initialValue,
213 DSLGlobalVar(const DSLModifiers& modifiers, DSLType type, skstd::string_view name = "var",
217 DSLGlobalVar(const DSLModifiers& modifiers, DSLType type, const char* name,
219 : DSLGlobalVar(modifiers, type, skstd::string_view(name), std::move(initialValue), pos) {}
221 DSLGlobalVar(const char* name);
223 DSLGlobalVar(DSLGlobalVar&&) = default;
227 void swap(DSLGlobalVar& other);
231 DSLPossibleExpression operator=(DSLGlobalVar& param) {