Home
last modified time | relevance | path

Searched refs:tmpVar (Results 1 – 11 of 11) sorted by relevance

/third_party/node/deps/npm/node_modules/node-gyp/test/
Dprocess-exec-sync.js116 var tmpVar = ''
118 tmpVar = process.env.OSTYPE
120 tmpVar = process.env.OS
123 tmpVar = 'linux'
126 if (startsWith(tmpVar, 'linux')) {
129 if (startsWith(tmpVar, 'win')) {
/third_party/skia/src/sksl/codegen/
DSkSLGLSLCodeGenerator.cpp1355 String tmpVar = "_tmpLoopSeenOnce" + to_string(fVarCount++); in writeDoStatement() local
1357 this->write(tmpVar); in writeDoStatement()
1362 this->write(tmpVar); in writeDoStatement()
1374 this->write(tmpVar); in writeDoStatement()
DSkSLMetalCodeGenerator.cpp548 String tmpVar = this->getTempVariable(arg1Type); in writeIntrinsicCall() local
549 this->write("(" + tmpVar + " = "); in writeIntrinsicCall()
551 this->write(", " + tmpVar + ".xy / " + tmpVar + ".z))"); in writeIntrinsicCall()
DSkSLSPIRVCodeGenerator.cpp1205 SpvId tmpVar; in writeFunctionCallArgument() local
1221 tmpVar = this->nextId(&arg.type()); in writeFunctionCallArgument()
1222 tempVars->push_back(TempVar{tmpVar, &arg.type(), std::move(lv)}); in writeFunctionCallArgument()
1226 tmpVar = this->nextId(nullptr); in writeFunctionCallArgument()
1230 tmpVar, in writeFunctionCallArgument()
1234 this->writeInstruction(SpvOpStore, tmpVar, tmpValueId, out); in writeFunctionCallArgument()
1236 return tmpVar; in writeFunctionCallArgument()
/third_party/flutter/skia/src/sksl/
DSkSLGLSLCodeGenerator.cpp1424 String tmpVar = "_tmpLoopSeenOnce" + to_string(fVarCount++); in writeFunctionCall() local
1426 this->write(tmpVar); in writeFunctionCall()
1431 this->write(tmpVar); in writeFunctionCall()
1443 this->write(tmpVar); in writeFunctionCall()
DSkSLSPIRVCodeGenerator.cpp1020 SpvId tmpVar; in writeFunctionCall() local
1034 tmpVar = this->nextId(); in writeFunctionCall()
1035 lvalues.push_back(std::make_tuple(tmpVar, &c.fArguments[i]->fType, std::move(lv))); in writeFunctionCall()
1040 tmpVar = this->nextId(); in writeFunctionCall()
1045 tmpVar, in writeFunctionCall()
1048 this->writeInstruction(SpvOpStore, tmpVar, tmpValueId, out); in writeFunctionCall()
1049 arguments.push_back(tmpVar); in writeFunctionCall()
/third_party/icu/icu4c/source/common/
Duloc_tag.cpp1253 VariantListEntry *tmpVar = var->next; in _appendVariantsToLanguageTag() local
1255 var = tmpVar; in _appendVariantsToLanguageTag()
/third_party/node/deps/icu-small/source/common/
Duloc_tag.cpp1253 VariantListEntry *tmpVar = var->next; in _appendVariantsToLanguageTag() local
1255 var = tmpVar; in _appendVariantsToLanguageTag()
/third_party/flutter/skia/third_party/externals/icu/source/common/
Duloc_tag.cpp1114 VariantListEntry *tmpVar = var->next; in _appendVariantsToLanguageTag() local
1116 var = tmpVar; in _appendVariantsToLanguageTag()
/third_party/skia/third_party/externals/icu/source/common/
Duloc_tag.cpp1253 VariantListEntry *tmpVar = var->next; in _appendVariantsToLanguageTag() local
1255 var = tmpVar; in _appendVariantsToLanguageTag()
/third_party/glslang/glslang/HLSL/
DhlslParseHelper.cpp7991 TVariable* tmpVar = makeInternalVariable(name, type); in makeInternalVariableNode() local
7992 tmpVar->getWritableType().getQualifier().makeTemporary(); in makeInternalVariableNode()
7994 return intermediate.addSymbol(*tmpVar, loc); in makeInternalVariableNode()