Home
last modified time | relevance | path

Searched refs:variableName (Results 1 – 25 of 48) sorted by relevance

12

/third_party/skia/third_party/externals/dawn/src/common/
DSystemUtils.cpp41 std::pair<std::string, bool> GetEnvironmentVar(const char* variableName) { in GetEnvironmentVar() argument
43 DWORD sizeWithNullTerminator = GetEnvironmentVariableA(variableName, nullptr, 0); in GetEnvironmentVar()
55 GetEnvironmentVariableA(variableName, buffer.data(), static_cast<DWORD>(buffer.size())); in GetEnvironmentVar()
66 bool SetEnvironmentVar(const char* variableName, const char* value) { in SetEnvironmentVar() argument
67 return SetEnvironmentVariableA(variableName, value) == TRUE; in SetEnvironmentVar()
74 std::pair<std::string, bool> GetEnvironmentVar(const char* variableName) { in GetEnvironmentVar() argument
75 char* value = getenv(variableName); in GetEnvironmentVar()
80 bool SetEnvironmentVar(const char* variableName, const char* value) { in SetEnvironmentVar() argument
82 return unsetenv(variableName) == 0; in SetEnvironmentVar()
84 return setenv(variableName, value, 1) == 0; in SetEnvironmentVar()
[all …]
DSystemUtils.h25 std::pair<std::string, bool> GetEnvironmentVar(const char* variableName);
26 bool SetEnvironmentVar(const char* variableName, const char* value);
39 ScopedEnvironmentVar(const char* variableName, const char* value);
45 bool Set(const char* variableName, const char* value);
/third_party/skia/third_party/externals/angle2/src/common/
Dsystem_utils.cpp35 std::string GetEnvironmentVarOrAndroidProperty(const char *variableName, const char *propertyName) in GetEnvironmentVarOrAndroidProperty() argument
40 const char *variableValue = getenv(variableName); in GetEnvironmentVarOrAndroidProperty()
47 return GetEnvironmentVarOrUnCachedAndroidProperty(variableName, propertyName); in GetEnvironmentVarOrAndroidProperty()
52 std::string GetEnvironmentVarOrUnCachedAndroidProperty(const char *variableName, in GetEnvironmentVarOrUnCachedAndroidProperty() argument
71 SetEnvironmentVar(variableName, propertyValue.c_str()); in GetEnvironmentVarOrUnCachedAndroidProperty()
75 return GetEnvironmentVar(variableName); in GetEnvironmentVarOrUnCachedAndroidProperty()
79 bool GetBoolEnvironmentVar(const char *variableName) in GetBoolEnvironmentVar() argument
81 std::string envVarString = GetEnvironmentVar(variableName); in GetBoolEnvironmentVar()
85 bool PrependPathToEnvironmentVar(const char *variableName, const char *path) in PrependPathToEnvironmentVar() argument
87 std::string oldValue = GetEnvironmentVar(variableName); in PrependPathToEnvironmentVar()
[all …]
Dsystem_utils.h28 bool SetEnvironmentVar(const char *variableName, const char *value);
29 bool UnsetEnvironmentVar(const char *variableName);
30 bool GetBoolEnvironmentVar(const char *variableName);
31 std::string GetEnvironmentVar(const char *variableName);
32 std::string GetEnvironmentVarOrUnCachedAndroidProperty(const char *variableName,
34 std::string GetEnvironmentVarOrAndroidProperty(const char *variableName, const char *propertyName);
36 bool PrependPathToEnvironmentVar(const char *variableName, const char *path);
Dsystem_utils_win32.cpp16 bool UnsetEnvironmentVar(const char *variableName) in UnsetEnvironmentVar() argument
18 return (SetEnvironmentVariableA(variableName, nullptr) == TRUE); in UnsetEnvironmentVar()
21 bool SetEnvironmentVar(const char *variableName, const char *value) in SetEnvironmentVar() argument
23 return (SetEnvironmentVariableA(variableName, value) == TRUE); in SetEnvironmentVar()
26 std::string GetEnvironmentVar(const char *variableName) in GetEnvironmentVar() argument
33 result = GetEnvironmentVariableA(variableName, nullptr, 0); in GetEnvironmentVar()
43 result = GetEnvironmentVariableA(variableName, value.data(), result); in GetEnvironmentVar()
Dsystem_utils_posix.cpp59 bool UnsetEnvironmentVar(const char *variableName) in UnsetEnvironmentVar() argument
61 return (unsetenv(variableName) == 0); in UnsetEnvironmentVar()
64 bool SetEnvironmentVar(const char *variableName, const char *value) in SetEnvironmentVar() argument
66 return (setenv(variableName, value, 1) == 0); in SetEnvironmentVar()
69 std::string GetEnvironmentVar(const char *variableName) in GetEnvironmentVar() argument
71 const char *value = getenv(variableName); in GetEnvironmentVar()
Dsystem_utils_winuwp.cpp21 bool SetEnvironmentVar(const char *variableName, const char *value) in SetEnvironmentVar() argument
27 std::string GetEnvironmentVar(const char *variableName) in GetEnvironmentVar() argument
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/
DMf2DataModel.java478 private final String variableName; field in Mf2DataModel.Value
482 this.variableName = builder.variableName; in Value()
514 return variableName; in getVariableName()
532 return variableName != null; in isVariable()
542 return isLiteral() ? "(" + literal + ")" : "$" + variableName; in toString()
552 private String variableName; field in Mf2DataModel.Value.Builder
565 this.variableName = null; in setLiteral()
574 public Builder setVariableName(String variableName) { in setVariableName() argument
575 this.variableName = variableName; in setVariableName()
793 public Builder addLocalVariable(String variableName, Expression expression) { in addLocalVariable() argument
[all …]
DMf2Serializer.java192 result.addLocalVariable(declaration.variableName, declaration.expr); in parseMessage()
289 declaration.variableName = input.substring(token.begin + 1, token.end); in parseDeclaration()
344 String variableName; field in Mf2Serializer.Declaration
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
Dglslang_wrapper_utils.h148 bool contains(gl::ShaderType shaderType, const std::string &variableName) const;
150 const std::string &variableName) const;
151 ShaderInterfaceVariableInfo &get(gl::ShaderType shaderType, const std::string &variableName);
152 ShaderInterfaceVariableInfo &add(gl::ShaderType shaderType, const std::string &variableName);
153 void markAsDuplicate(gl::ShaderType shaderType, const std::string &variableName);
155 const std::string &variableName);
Dglslang_wrapper_utils.cpp4703 const std::string &variableName) const in contains()
4705 return mData[shaderType].find(variableName) != mData[shaderType].end(); in contains()
4710 const std::string &variableName) const in get()
4712 auto it = mData[shaderType].find(variableName); in get()
4718 const std::string &variableName) in get() argument
4720 auto it = mData[shaderType].find(variableName); in get()
4726 const std::string &variableName) in markAsDuplicate() argument
4728 ASSERT(contains(shaderType, variableName)); in markAsDuplicate()
4729 mData[shaderType][variableName].isDuplicate = true; in markAsDuplicate()
4733 const std::string &variableName) in add() argument
[all …]
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/generator/
DResourceFallbackCodeGenerator.java112 …ing, Integer> buildCompositeString(Collection<String> strings, String variableName, PrintWriter ou… in buildCompositeString() argument
117 out.println("const char " + variableName + "[] ="); in buildCompositeString()
139 …ap<String, Integer> keyIndex, Map<String, Integer> valueIndex, String variableName, PrintWriter ou… in writeStringToStringIndex() argument
140 out.println("const int32_t " + variableName + "[] = {"); in writeStringToStringIndex()
/third_party/skia/third_party/externals/angle2/src/common/vulkan/
Dvulkan_icd.cpp23 void ResetEnvironmentVar(const char *variableName, const Optional<std::string> &value) in ResetEnvironmentVar() argument
32 angle::UnsetEnvironmentVar(variableName); in ResetEnvironmentVar()
36 angle::SetEnvironmentVar(variableName, value.value().c_str()); in ResetEnvironmentVar()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DShaderStorageBlockOutputHLSL.cpp124 const ImmutableString &variableName) in GetFieldMemberInShaderStorageBlock() argument
128 if (field->name() == variableName) in GetFieldMemberInShaderStorageBlock()
222 std::string variableName = StripArrayIndices(collapseNameStack()); in enterStructAccess() local
225 variableName.pop_back(); in enterStructAccess()
227 BlockInfoVisitor childVisitor(variableName, mStorage, mShaderVarToFieldMap, mBlockInfoOut); in enterStructAccess()
235 auto iter = mShaderVarToFieldMap.find(variableName); in enterStructAccess()
/third_party/typescript/src/services/codefixes/
DconvertToAsyncFunction.ts497 …function createVariableOrAssignmentOrExpressionStatement(variableName: SynthBindingName | undefine…
498 if (!variableName || isEmptyBindingName(variableName)) {
503 if (isSynthIdentifier(variableName) && variableName.hasBeenDeclared) {
505 …ory.createAssignment(getSynthesizedDeepClone(referenceSynthIdentifier(variableName)), rightHandSid…
513 getSynthesizedDeepClone(declareSynthBindingName(variableName)),
DaddMissingAwait.ts136 const variableName = declaration && tryCast(declaration.name, isIdentifier); constant
143 !variableName ||
150 …const isUsedElsewhere = FindAllReferences.Core.eachSymbolReferenceInFile(variableName, checker, so…
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineInterfaceMatchingTests.cpp438 …std::string genOutAssignment (const std::string& variableName, const VecData& outVecData) con…
439 …std::string genInVerification (const std::string& variableName, const VecData& outVecData, co…
809 std::string InterfaceMatchingTestCase::genOutAssignment(const std::string& variableName, const VecD… in genOutAssignment() argument
822 …std::string outValueAssignment = std::string(" ") + variableName + " = " + outVecData.glslType + … in genOutAssignment()
829 std::string InterfaceMatchingTestCase::genInVerification(const std::string& variableName, const Vec… in genInVerification() argument
849 "float(abs(" + variableName + ".${COMPONENT} - ${VALUE}) < 0.001)" : in genInVerification()
850 "float(" + variableName + ".${COMPONENT} == ${VALUE})"); in genInVerification()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/vulkan/
DDeclarePerVertexBlocks.cpp281 ImmutableString &variableName) in declarePerVertex() argument
350 new TVariable(mSymbolTable, variableName, interfaceBlockType, in declarePerVertex()
351 variableName.empty() ? SymbolType::Empty : SymbolType::AngleInternal); in declarePerVertex()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DDynamicHLSL.cpp1294 const std::string &variableName = "out_" + outputVariable.name; in getPixelShaderOutputKey() local
1304 outputKeyVariable.name = variableName + elementString; in getPixelShaderOutputKey()
1306 variableName + in getPixelShaderOutputKey()
1325 const std::string &variableName = "out_" + outputVariable.name; in getPixelShaderOutputKey() local
1335 outputKeyVariable.name = variableName + elementString; in getPixelShaderOutputKey()
1337 variableName + in getPixelShaderOutputKey()
/third_party/typescript/src/compiler/transformers/
DclassFields.ts67 variableName: undefined; property
76 variableName: Identifier; property
656 info.variableName
1100 info.variableName
1763 privateIdentifierInfo.variableName,
2101 const variableName = createHoistedVariableForPrivateName(name); constant
2105 variableName,
2116 variableName: undefined,
2496 …function createPrivateStaticFieldInitializer(variableName: Identifier, initializer: Expression | u…
2498 variableName,
/third_party/vk-gl-cts/modules/glshared/
DglsAttributeLocationTests.cpp148 …const string variableName(attrib.getName() + (attrib.getArraySize() != Attribute::NOT_ARRAY ? "["… in generateToVec4Expression() local
156 src << "vec4(" << variableName << ".xy, " << variableName << ".yx)"; in generateToVec4Expression()
162 src << "vec4(" << variableName << ".xyz, " << variableName << ".x)"; in generateToVec4Expression()
166 src << "vec4(" << variableName << ")"; in generateToVec4Expression()
/third_party/glslang/StandAlone/
DStandAlone.cpp170 const char* variableName = nullptr; variable
664 variableName = argv[1]; in ProcessArguments()
1183 … glslang::OutputSpvHex(spirv, GetBinaryName((EShLanguage)stage), variableName); in CompileAndLinkShaderUnits()
/third_party/node/deps/v8/src/inspector/
Dv8-debugger-agent-impl.h122 int scopeNumber, const String16& variableName,
/third_party/skia/third_party/externals/spirv-tools/test/val/
Dval_layout_test.cpp507 OpName %variableName "variableName" in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/val/
Dval_layout_test.cpp507 OpName %variableName "variableName" in TEST_F()

12