Home
last modified time | relevance | path

Searched refs:variableValues (Results 1 – 25 of 40) sorted by relevance

12

/dports/devel/kdevelop/kdevelop-21.12.3/plugins/qmakemanager/
H A Dqmakeprojectfile.cpp76 m_variableValues[var] = m_mkspecs->variableValues(var); in read()
82 m_variableValues[var] = m_cache->variableValues(var); in read()
117 const auto& subdirs = variableValues(QStringLiteral("SUBDIRS")); in subProjects()
158 const QStringList values = variableValues(variable); in addPathsForVariable()
184 auto modules = variableValues(QStringLiteral("QT")); in includeDirectories()
262 foreach (const auto& arg, variableValues(var)) { in frameworkDirectories()
291 foreach (const auto& arg, variableValues(var)) { in extraArguments()
309 foreach (const QString& value, variableValues(variable)) { in files()
321 if (variableValues(QStringLiteral("INSTALLS")).contains(s)) { in filesForTarget()
340 if (!variableValues(QStringLiteral("TEMPLATE")).isEmpty()) { in getTemplate()
[all …]
H A Dqmakecache.cpp25 m_variableValues[var] = m_mkspecs->variableValues(var); in read()
H A Dqmakefile.h40 QStringList variableValues(const QString&) const;
H A Dqmakefilevisitor.cpp98 if (m_variableValues.value(var) != includefile.variableValues(var)) { in visitFunctionCall()
99 m_variableValues[var] = includefile.variableValues(var); in visitFunctionCall()
H A Dqmakefile.cpp150 QStringList QMakeFile::variableValues(const QString& variable) const in variableValues() function in QMakeFile
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/expression/
H A Dqgsexpressioncontextutils.cpp332 variableValues << value.toString(); in setLayerVariable()
344 QStringList variableValues; in setLayerVariables() local
350 variableValues << it.value().toString(); in setLayerVariables()
555 variableValues << value.toString(); in setLayoutVariable()
567 QStringList variableValues; in setLayoutVariables() local
573 variableValues << it.value().toString(); in setLayoutVariables()
676 variableValues << value.toString(); in setLayoutItemVariable()
688 QStringList variableValues; in setLayoutItemVariables() local
694 variableValues << it.value().toString(); in setLayoutItemVariables()
737 variableValues << value.toString(); in setLayoutMultiFrameVariable()
[all …]
/dports/graphics/qgis/qgis-3.22.3/src/core/expression/
H A Dqgsexpressioncontextutils.cpp401 variableValues << value.toString(); in setLayerVariable()
413 QStringList variableValues; in setLayerVariables() local
419 variableValues << it.value().toString(); in setLayerVariables()
626 variableValues << value.toString(); in setLayoutVariable()
638 QStringList variableValues; in setLayoutVariables() local
644 variableValues << it.value().toString(); in setLayoutVariables()
747 variableValues << value.toString(); in setLayoutItemVariable()
759 QStringList variableValues; in setLayoutItemVariables() local
765 variableValues << it.value().toString(); in setLayoutItemVariables()
808 variableValues << value.toString(); in setLayoutMultiFrameVariable()
[all …]
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/node_modules/graphql/
H A Dgraphql.mjs33 * variableValues:
48 export function graphql(argsOrSchema, source, rootValue, contextValue, variableValues, operationNam… argument
56 …ma.variableValues, argsOrSchema.operationName, argsOrSchema.fieldResolver) : graphqlImpl(argsOrSch…
69 export function graphqlSync(argsOrSchema, source, rootValue, contextValue, variableValues, operatio… argument
71 …ma.variableValues, argsOrSchema.operationName, argsOrSchema.fieldResolver) : graphqlImpl(argsOrSch…
81 function graphqlImpl(schema, source, rootValue, contextValue, variableValues, operationName, fieldR… argument
103 …return execute(schema, document, rootValue, contextValue, variableValues, operationName, fieldReso…
/dports/sysutils/terraform/terraform-1.0.11/internal/terraform/
H A Dgraph_walk_context.go42 variableValues map[string]map[string]cty.Value member
80 VariableValues: w.variableValues,
101 VariableValues: w.variableValues,
114 w.variableValues = make(map[string]map[string]cty.Value)
118 w.variableValues[""] = make(map[string]cty.Value)
120 w.variableValues[""][k] = iv.Value
/dports/math/cantor/cantor-21.12.3/src/backends/maxima/
H A Dmaximavariablemodel.cpp79 QStringList variableValues; in parse() local
99 variableValues = valuesString.split(QLatin1String("\"-cantor-value-separator-\"")); in parse()
100 hasValues = variableValues.isEmpty(); in parse()
106 qDebug()<<"values: "<<variableValues; in parse()
115 if(variableValues.size()>i) in parse()
117 var.value=variableValues.at(i).trimmed(); in parse()
/dports/sysutils/terraform-provider-gridscale/terraform-provider-gridscale-1.6.2/vendor/github.com/hashicorp/terraform-plugin-sdk/terraform/
H A Dgraph_walk_context.go41 variableValues map[string]map[string]cty.Value member
73 VariableValues: w.variableValues,
92 VariableValues: w.variableValues,
149 w.variableValues = make(map[string]map[string]cty.Value)
153 w.variableValues[""] = make(map[string]cty.Value)
155 w.variableValues[""][k] = iv.Value
/dports/sysutils/terraform-provider-vultr/terraform-provider-vultr-0.1.10/vendor/github.com/hashicorp/terraform/terraform/
H A Dgraph_walk_context.go41 variableValues map[string]map[string]cty.Value member
73 VariableValues: w.variableValues,
92 VariableValues: w.variableValues,
149 w.variableValues = make(map[string]map[string]cty.Value)
153 w.variableValues[""] = make(map[string]cty.Value)
155 w.variableValues[""][k] = iv.Value
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/node_modules/graphql/execution/
H A Dvalues.mjs23 * Prepares an object map of variableValues of the correct type based on the
76 export function getArgumentValues(def, node, variableValues) { argument
100 …if (variableValues && Object.prototype.hasOwnProperty.call(variableValues, variableName) && !isInv…
104 coercedValues[name] = variableValues[variableName];
112 var coercedValue = valueFromAST(valueNode, argType, variableValues);
136 export function getDirectiveValues(directiveDef, node, variableValues) { argument
142 return getArgumentValues(directiveDef, directiveNode, variableValues);
H A Dexecute.mjs84 export function execute(argsOrSchema, document, rootValue, contextValue, variableValues, operationN… argument
90 function executeImpl(schema, document, rootValue, contextValue, variableValues, operationName, fiel… argument
92 assertValidExecutionArguments(schema, document, variableValues);
200 var variableValues = void 0;
207 variableValues = coercedVariableValues.coerced;
216 !variableValues ? invariant(0, 'Has variables if no errors.') : void 0;
224 variableValues: variableValues,
393 var skip = getDirectiveValues(GraphQLSkipDirective, node, exeContext.variableValues);
398 var include = getDirectiveValues(GraphQLIncludeDirective, node, exeContext.variableValues);
469 variableValues: exeContext.variableValues
[all …]
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/node_modules/graphql/subscription/
H A Dsubscribe.mjs40 export function subscribe(argsOrSchema, document, rootValue, contextValue, variableValues, operatio… argument
43variableValues, argsOrSchema.operationName, argsOrSchema.fieldResolver, argsOrSchema.subscribeFiel…
58 function subscribeImpl(schema, document, rootValue, contextValue, variableValues, operationName, fi… argument
59 …= createSourceEventStream(schema, document, rootValue, contextValue, variableValues, operationName…
68 …return execute(schema, document, payload, contextValue, variableValues, operationName, fieldResolv…
99 export function createSourceEventStream(schema, document, rootValue, contextValue, variableValues, … argument
102 assertValidExecutionArguments(schema, document, variableValues);
107 …t = buildExecutionContext(schema, document, rootValue, contextValue, variableValues, operationName…
/dports/sysutils/krename/krename-5.0.1/src/
H A Dscriptplugin.cpp356 QStringList variableValues; in loadConfig() local
360 variableValues = group.readEntry("JavaScriptVariableValues", variableValues); in loadConfig()
363 int min = qMin(variableNames.count(), variableValues.count()); in loadConfig()
369 item->setText(1, variableValues[i]); in loadConfig()
381 QStringList variableValues; in saveConfig() local
388 variableValues << item->text(1); in saveConfig()
394 group.writeEntry("JavaScriptVariableValues", variableValues); in saveConfig()
/dports/biology/hyphy/hyphy-2.5.33/res/TemplateBatchFiles/Samplers/
H A Dlhc.bf86 variableValues = {};
179 variableValues[k] = thisVarValues;
194 //fprintf (stdout, varCount, "\n", Rows (variableValues), "\n");
202 generatedSamples = generatedSamples["(variableValues[_MATRIX_ELEMENT_COLUMN_])[_MATRIX_ELEMENT_ROW_…
216 variableValues [MPI_NODE_STATUS[fromNode-1]] = thisVarValue;
/dports/devel/stylua/StyLua-0.11.0/tests/inputs-luau/
H A Dtypes_example.lua10 variableValues: { [string]: any },
25 variableValues: { [string]: any }?,
/dports/devel/stylua/StyLua-0.11.0/tests/snapshots/
H A Dtests__luau@types_example.lua.snap15 variableValues: { [string]: any },
28 variableValues: { [string]: any }?,
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/model/
H A DClasspathInitializerTests.java41 Map variableValues; field in ClasspathInitializerTests.DefaultVariableInitializer
47 this.variableValues = new HashMap(); in DefaultVariableInitializer()
49 this.variableValues.put(values[i], new Path(values[i+1])); in DefaultVariableInitializer()
55 if (this.variableValues == null) return; in initialize()
58 (IPath)this.variableValues.get(variable), in initialize()
1135 String[] variableValues = new String[] { in testVariableInitializer03() local
1140 VariablesInitializer.setInitializer(new DefaultVariableInitializer(variableValues)); in testVariableInitializer03()
1244 String[] variableValues = new String[] { in testVariableInitializer07() local
1249 VariablesInitializer.setInitializer(new DefaultVariableInitializer(variableValues)); in testVariableInitializer07()
/dports/devel/kdevelop/kdevelop-21.12.3/plugins/qmakemanager/tests/
H A Dtest_qmakefile.cpp300 QCOMPARE(file.variableValues(it.key()), it.value()); in replaceFunctions()
504 QCOMPARE(file.variableValues("DEFINES"), QStringList() << "SOME_DEF" in testInclude()
506 QCOMPARE(file.variableValues("SOURCES"), QStringList() << "file.cpp" in testInclude()
508 QCOMPARE(file.variableValues("QT"), QStringList() << "core" in testInclude()
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/getkin/kin-openapi/routers/legacy/pathpattern/
H A Dnode.go269 variableValues := make([]string, 0, 8)
270 return currentNode.matchRemaining(path, variableValues)
/dports/cad/sweethome3d/SweetHome3D-6.6.4-src/src/com/eteks/sweethome3d/swing/
H A DHomePrintableComponent.java281 Object [] variableValues = new Object [] { in print() local
287 header = Variable.getMessageFormat(headerFormat).format(variableValues).trim(); in print()
301 footer = Variable.getMessageFormat(footerFormat).format(variableValues).trim(); in print()
/dports/net/storj/storj-1.45.3/vendor/github.com/graphql-go/graphql/
H A Dvalues.go43 variableValues map[string]interface{}) map[string]interface{} {
60 if tmp = valueFromAST(value, argDef.Type, variableValues); isNullish(tmp) {
/dports/misc/fq/fq-0.0.2/pkg/interp/
H A Dinterp.go707 var variableValues []interface{}
710 variableValues = append(variableValues, v)
898 iter := gc.RunWithContext(runCtx, c, variableValues...)

12