Home
last modified time | relevance | path

Searched refs:valueName (Results 1 - 25 of 32) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/src/Common/
H A DConfigurator.cpp93 string valueName = line.substr(0, pLeft); in readFile() local
95 addValue(keyName, valueName, value); in readFile()
159 int Configurator::findValue(unsigned int keyID, string valueName) const in findValue()
168 if(sections[keyID].names[valueID] == valueName) in findValue()
184 void Configurator::addValue(string const keyName, string const valueName, string const value) in addValue() argument
193 int valueID = findValue(keyID, valueName); in addValue()
197 sections[keyID].names.resize(sections[keyID].names.size() + 1, valueName); in addValue()
206 string Configurator::getValue(string keyName, string valueName, string defaultValue) const in getValue() argument
210 int valueID = findValue((unsigned int)keyID, valueName); in getValue()
216 int Configurator::getInteger(string keyName, string valueName, in argument
225 getBoolean(string keyName, string valueName, bool defaultValue) const getBoolean() argument
230 getFloat(string keyName, string valueName, double defaultValue) const getFloat() argument
239 getFormatted(string keyName, string valueName, char *format, void *v1, void *v2, void *v3, void *v4, void *v5, void *v6, void *v7, void *v8, void *v9, void *v10, void *v11, void *v12, void *v13, void *v14, void *v15, void *v16) getFormatted() argument
[all...]
H A DConfigurator.hpp32 std::string getValue(std::string sectionName, std::string valueName, std::string defaultValue = "") const;
33 int getInteger(std::string sectionName, std::string valueName, int defaultValue = 0) const;
34 bool getBoolean(std::string sectionName, std::string valueName, bool defaultValue = false) const;
35 double getFloat(std::string sectionName, std::string valueName, double defaultValue = 0.0) const;
36 unsigned int getFormatted(std::string sectionName, std::string valueName, char *format,
42 void addValue(std::string sectionName, std::string valueName, std::string value);
51 int findValue(unsigned int sectionID, std::string valueName) const;
/third_party/skia/third_party/externals/swiftshader/src/System/
H A DConfigurator.cpp93 string valueName = line.substr(0, pLeft); in readFile() local
95 addValue(keyName, valueName, value); in readFile()
160 int Configurator::findValue(unsigned int keyID, string valueName) const in findValue()
169 if(sections[keyID].names[valueID] == valueName) in findValue()
185 void Configurator::addValue(string const keyName, string const valueName, string const value) in addValue() argument
194 int valueID = findValue(keyID, valueName); in addValue()
198 sections[keyID].names.resize(sections[keyID].names.size() + 1, valueName); in addValue()
207 string Configurator::getValue(string keyName, string valueName, string defaultValue) const in getValue() argument
211 int valueID = findValue((unsigned int)keyID, valueName); in getValue()
217 int Configurator::getInteger(string keyName, string valueName, in argument
226 getBoolean(string keyName, string valueName, bool defaultValue) const getBoolean() argument
231 getFloat(string keyName, string valueName, double defaultValue) const getFloat() argument
240 getFormatted(string keyName, string valueName, char *format, void *v1, void *v2, void *v3, void *v4, void *v5, void *v6, void *v7, void *v8, void *v9, void *v10, void *v11, void *v12, void *v13, void *v14, void *v15, void *v16) getFormatted() argument
[all...]
H A DConfigurator.hpp32 std::string getValue(std::string sectionName, std::string valueName, std::string defaultValue = "") const;
33 int getInteger(std::string sectionName, std::string valueName, int defaultValue = 0) const;
34 bool getBoolean(std::string sectionName, std::string valueName, bool defaultValue = false) const;
35 double getFloat(std::string sectionName, std::string valueName, double defaultValue = 0.0) const;
36 unsigned int getFormatted(std::string sectionName, std::string valueName, char *format,
42 void addValue(std::string sectionName, std::string valueName, std::string value);
51 int findValue(unsigned int sectionID, std::string valueName) const;
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcShaderLibraryCase.cpp379 const char* valueName = val.valueName.c_str(); in execute() local
417 string attribName = attribPrefix + valueName; in execute()
449 string refName = string("ref_") + valueName; in execute()
456 setUniformValue(gl, programID, valueName, val, arrayNdx); in execute()
543 res << vtxIn << " " << typeStr << " a_" << val.valueName << ";\n"; in genVertexShader()
546 res << vtxOut << " " << typeStr << " " << val.valueName << ";\n"; in genVertexShader()
548 res << vtxOut << " " << typeStr << " v_" << val.valueName << ";\n"; in genVertexShader()
564 const string& name = val.valueName; in genVertexShader()
695 const char* valueName in genCompareOp() local
714 output << "isOk(" << valueName << ", ref_" << valueName << ", 0.05);\\n"; genCompareOp() local
716 output << "isOk(" << nonFloatNamePrefix << valueName << ", ref_" << valueName << ");\\n"; genCompareOp() local
797 const char* valueName = val.valueName.c_str(); specializeVertexShader() local
806 decl << vtxIn << " " << floatTypeStr << " " << valueName << ";\\n"; specializeVertexShader() local
810 decl << vtxIn << " " << floatTypeStr << " a_" << valueName << ";\\n"; specializeVertexShader() local
811 setup << refTypeStr << " " << valueName << " = " << refTypeStr << "(a_" << valueName << ");\\n"; specializeVertexShader() local
817 decl << vtxOut << " " << floatTypeStr << " " << valueName << ";\\n"; specializeVertexShader() local
820 decl << vtxOut << " " << floatTypeStr << " v_" << valueName << ";\\n"; specializeVertexShader() local
821 decl << refTypeStr << " " << valueName << ";\\n"; specializeVertexShader() local
823 output << "v_" << valueName << " = " << floatTypeStr << "(" << valueName << ");\\n"; specializeVertexShader() local
860 const char* valueName = val.valueName.c_str(); specializeFragmentShader() local
868 decl << fragIn << " " << floatTypeStr << " " << valueName << ";\\n"; specializeFragmentShader() local
871 decl << fragIn << " " << floatTypeStr << " v_" << valueName << ";\\n"; specializeFragmentShader() local
882 decl << "uniform " << refTypeStr << " ref_" << valueName << ";\\n"; specializeFragmentShader() local
883 decl << refTypeStr << " " << valueName << ";\\n"; specializeFragmentShader() local
963 const char* valueName = val.valueName.c_str(); specializeShaders() local
968 decl << "uniform " << refTypeStr << " ref_" << valueName << ";\\n"; specializeShaders() local
969 decl << refTypeStr << " " << valueName << ";\\n"; specializeShaders() local
973 decl << "uniform " << refTypeStr << " " << valueName << ";\\n"; specializeShaders() local
994 const char* valueName = val.valueName.c_str(); dumpValues() local
[all...]
H A DglcShaderLibraryCase.hpp83 std::string valueName; member
/third_party/lzma/CPP/Windows/
H A DRegistry.h12 LONG SetValue(HKEY parentKey, LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value);
47 LONG SetValue(LPCTSTR valueName, UInt32 value) throw();
48 LONG SetValue(LPCTSTR valueName, bool value) throw();
49 LONG SetValue(LPCTSTR valueName, LPCTSTR value) throw();
50 // LONG SetValue(LPCTSTR valueName, const CSysString &value);
58 LONG SetValue_Strings(LPCTSTR valueName, const UStringVector &strings);
59 LONG GetValue_Strings(LPCTSTR valueName, UStringVector &strings);
61 LONG SetKeyValue(LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value) throw();
H A DRegistry.cpp188 LONG SetValue(HKEY parentKey, LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value) in SetValue() argument
194 res = key.SetValue(valueName, value); in SetValue()
198 LONG CKey::SetKeyValue(LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value) throw() in SetKeyValue() argument
204 res = key.SetValue(valueName, value); in SetKeyValue()
353 LONG CKey::SetValue_Strings(LPCTSTR valueName, const UStringVector &strings) in SetValue_Strings() argument
372 return SetValue(valueName, buffer, (UInt32)numChars * sizeof(wchar_t)); in SetValue_Strings()
375 LONG CKey::GetValue_Strings(LPCTSTR valueName, UStringVector &strings) in GetValue_Strings() argument
380 LONG res = QueryValue(valueName, buffer, dataSize); in GetValue_Strings()
/third_party/vk-gl-cts/modules/internal/
H A DditBuildInfoTests.cpp95 BuildInfoStringCase (tcu::TestContext& testCtx, const char* name, const char* valueName, const char* value) in BuildInfoStringCase() argument
96 : tcu::TestCase (testCtx, name, valueName) in BuildInfoStringCase()
97 , m_valueName (valueName) in BuildInfoStringCase()
129 const char* valueName = m_getString(m_value); in iterate() local
130 const bool isOk = valueName != DE_NULL; in iterate()
131 std::string logValue = valueName ? std::string(valueName) : de::toString(m_value); in iterate()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
H A DRegexUtilitiesTest.java116 String valueName = UCharacter.getPropertyValueName(propNum, valueNum, NameChoice.LONG); in TestUnicodeProperties()
117 if (valueName == null) { in TestUnicodeProperties()
118 valueName = UCharacter.getPropertyValueName(propNum, valueNum, NameChoice.SHORT); in TestUnicodeProperties()
119 if (valueName == null) { in TestUnicodeProperties()
120 valueName = Integer.toString(valueNum); in TestUnicodeProperties()
134 String rawPattern = prefix + "[:" + propName + "=" + valueName + ":]" + suffix; in TestUnicodeProperties()
135 String rawNegativePattern = prefix + "[:^" + propName + "=" + valueName + ":]" + suffix; in TestUnicodeProperties()
140 rawPattern = prefix + "\\p{" + propName + "=" + valueName + "}" + suffix; in TestUnicodeProperties()
141 rawNegativePattern = prefix + "\\P{" + propName + "=" + valueName + "}" + suffix; in TestUnicodeProperties()
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DRegexUtilitiesTest.java121 String valueName = UCharacter.getPropertyValueName(propNum, valueNum, NameChoice.LONG); in TestUnicodeProperties()
122 if (valueName == null) { in TestUnicodeProperties()
123 valueName = UCharacter.getPropertyValueName(propNum, valueNum, NameChoice.SHORT); in TestUnicodeProperties()
124 if (valueName == null) { in TestUnicodeProperties()
125 valueName = Integer.toString(valueNum); in TestUnicodeProperties()
139 String rawPattern = prefix + "[:" + propName + "=" + valueName + ":]" + suffix; in TestUnicodeProperties()
140 String rawNegativePattern = prefix + "[:^" + propName + "=" + valueName + ":]" + suffix; in TestUnicodeProperties()
145 rawPattern = prefix + "\\p{" + propName + "=" + valueName + "}" + suffix; in TestUnicodeProperties()
146 rawNegativePattern = prefix + "\\P{" + propName + "=" + valueName + "}" + suffix; in TestUnicodeProperties()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/
H A DvktTextureFilteringAnisotropyTests.cpp208 const char* valueName[] = in createFilteringAnisotropyTests() local
241 de::MovePtr<tcu::TestCaseGroup> levelAnisotropyGroups (new tcu::TestCaseGroup(testCtx, valueName[anisotropyNdx])); in createFilteringAnisotropyTests()
264 de::MovePtr<tcu::TestCaseGroup> levelAnisotropyGroups (new tcu::TestCaseGroup(testCtx, valueName[anisotropyNdx])); in createFilteringAnisotropyTests()
297 de::MovePtr<tcu::TestCaseGroup> levelAnisotropyGroups (new tcu::TestCaseGroup(testCtx, valueName[anisotropyNdx])); in createFilteringAnisotropyTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/
H A DvktTextureFilteringAnisotropyTests.cpp209 const char* valueName[] = in createFilteringAnisotropyTests() local
241 de::MovePtr<tcu::TestCaseGroup> levelAnisotropyGroups (new tcu::TestCaseGroup(testCtx, valueName[anisotropyNdx], "Filtering anisotropy tests")); in createFilteringAnisotropyTests()
264 de::MovePtr<tcu::TestCaseGroup> levelAnisotropyGroups (new tcu::TestCaseGroup(testCtx, valueName[anisotropyNdx], "Filtering anisotropy tests")); in createFilteringAnisotropyTests()
297 de::MovePtr<tcu::TestCaseGroup> levelAnisotropyGroups (new tcu::TestCaseGroup(testCtx, valueName[anisotropyNdx], "Filtering anisotropy tests")); in createFilteringAnisotropyTests()
/third_party/skia/include/core/
H A DSkTraceMemoryDump.h40 * valueName: a string indicating the name of the column.
49 const char* valueName,
54 const char* /*valueName*/, in dumpStringValue()
/third_party/skia/tests/
H A DTraceMemoryDumpTest.cpp32 void dumpNumericValue(const char* dumpName, const char* valueName, const char* units,
35 if (SkString("size") == SkString(valueName)) {
/third_party/node/deps/icu-small/source/common/
H A Dmlbe.h69 * @param valueName The value name in the model file.
73 void initKeyValue(UResourceBundle *rb, const char *keyName, const char *valueName,
H A Dmlbe.cpp237 void MlBreakEngine::initKeyValue(UResourceBundle *rb, const char *keyName, const char *valueName, in initKeyValue() argument
247 LocalUResourceBundlePointer modelValue(ures_getByKey(rb, valueName, nullptr, &error)); in initKeyValue()
H A Duniset_props.cpp1074 UnicodeString propName, valueName; in applyPropertyPattern() local
1078 pattern.extractBetween(equals+1, close, valueName); in applyPropertyPattern()
1092 valueName = propName; in applyPropertyPattern()
1097 applyPropertyAlias(propName, valueName, ec); in applyPropertyPattern()
/third_party/icu/icu4c/source/common/
H A Duniset_props.cpp1077 UnicodeString propName, valueName; in applyPropertyPattern() local
1081 pattern.extractBetween(equals+1, close, valueName); in applyPropertyPattern()
1095 valueName = propName; in applyPropertyPattern()
1100 applyPropertyAlias(propName, valueName, ec); in applyPropertyPattern()
/third_party/skia/third_party/externals/icu/source/common/
H A Duniset_props.cpp1077 UnicodeString propName, valueName; in applyPropertyPattern() local
1081 pattern.extractBetween(equals+1, close, valueName); in applyPropertyPattern()
1095 valueName = propName; in applyPropertyPattern()
1100 applyPropertyAlias(propName, valueName, ec); in applyPropertyPattern()
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fTextureStateQueryTests.cpp231 TextureWrapCase (Context& context, TexParamVerifier* verifier, const char* name, const char* description, GLenum textureTarget, GLenum valueName) in TextureWrapCase() argument
233 , m_valueName (valueName) in TextureWrapCase()
/third_party/vk-gl-cts/modules/glshared/
H A DglsShaderLibraryCase.cpp1216 const char* const valueName = val.name.c_str();
1250 string attribName = attribPrefix + valueName;
1282 const char* const valueName = val.name.c_str();
1285 string refName = string("ref_") + valueName;
1294 const char* const valueName = val.name.c_str();
1296 setUniformValue(gl, pipelineProgramIDs, valueName, val, arrayNdx, m_testCtx.getLog());
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
H A DUnicodeSetTest.java121 String valueName; in TestPropertyAccess()
123 valueName = UCharacter.getPropertyValueName(propNum, valueNum, nameChoice); in TestPropertyAccess()
124 if (valueName == null) { in TestPropertyAccess()
145 logln("Value (" + valueNum + "): " + valueName); in TestPropertyAccess()
148 testSet = new UnicodeSet("[:" + propName + "=" + valueName + ":]"); in TestPropertyAccess()
152 + "Value (" + valueNum + "): " + valueName + ", " in TestPropertyAccess()
166 + "Value (" + valueNum + "): " + valueName + ", " in TestPropertyAccess()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUnicodeSetTest.java118 String valueName; in TestPropertyAccess()
120 valueName = UCharacter.getPropertyValueName(propNum, valueNum, nameChoice); in TestPropertyAccess()
121 if (valueName == null) { in TestPropertyAccess()
142 logln("Value (" + valueNum + "): " + valueName); in TestPropertyAccess()
145 testSet = new UnicodeSet("[:" + propName + "=" + valueName + ":]"); in TestPropertyAccess()
149 + "Value (" + valueNum + "): " + valueName + ", " in TestPropertyAccess()
173 + "Value (" + valueNum + "): " + valueName + ", " in TestPropertyAccess()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/
H A DvktMeshShaderSyncTests.cpp434 std::string getWriteStatement (const std::string& valueName) const in getWriteStatement()
441 case ResourceType::STORAGE_BUFFER: statement << "sb.value = " << valueName; break; in getWriteStatement() local
442 case ResourceType::STORAGE_IMAGE: statement << "imageStore(si, ivec2(0, 0), uvec4(" << valueName << ", 0, 0, 0))"; break; in getWriteStatement() local

Completed in 24 milliseconds

12