Searched refs:configPath (Results 1 – 6 of 6) sorted by relevance
356 public static String expandProperty(String configPath, in expandProperty() argument358 if (configPath == null) { in expandProperty()362 int propStartPos = configPath.indexOf("${"); in expandProperty()365 return configPath; in expandProperty()369 sb.append(configPath.substring(0, propStartPos)); in expandProperty()372 int propEndPos = configPath.indexOf("}", propStartPos); in expandProperty()375 + configPath); in expandProperty()379 if (configPath.indexOf("${", propStartPos + 2) != -1) { in expandProperty()381 + configPath); in expandProperty()384 final String propertyName = configPath.substring(propStartPos + 2, propEndPos); in expandProperty()[all …]
105 const std::string configPath; //< Path to the loaded configuration member
273 const std::string configPath = getConfigPath(); in create() local275 LOG_ALWAYS_FATAL_IF(configDocument.LoadFile(configPath.c_str()) != tinyxml2::XML_SUCCESS, in create()276 "Failed to load config file from %s", configPath.c_str()); in create()
334 result.configPath.empty() ? "No config file found" : result.configPath.c_str()); in EffectLoadXmlEffectConfig()
70 const std::string& configPath, const std::string& xmlFileName);
227 const std::string& configPath, const std::string& xmlFileName) { in loadFromCustomXmlConfigForVtsTests() argument228 auto filePath = configPath; in loadFromCustomXmlConfigForVtsTests()