Home
last modified time | relevance | path

Searched refs:configPath (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/com/android/internal/content/om/
DOverlayConfigParser.java356 public static String expandProperty(String configPath, in expandProperty() argument
358 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 …]
/frameworks/av/media/libeffects/config/include/media/
DEffectsConfig.h105 const std::string configPath; //< Path to the loaded configuration member
/frameworks/native/libs/input/
DTfLiteMotionPredictor.cpp273 const std::string configPath = getConfigPath(); in create() local
275 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()
/frameworks/av/media/libeffects/factory/
DEffectsXmlConfigLoader.cpp334 result.configPath.empty() ? "No config file found" : result.configPath.c_str()); in EffectLoadXmlEffectConfig()
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
DAudioPolicyConfig.h70 const std::string& configPath, const std::string& xmlFileName);
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
DAudioPolicyConfig.cpp227 const std::string& configPath, const std::string& xmlFileName) { in loadFromCustomXmlConfigForVtsTests() argument
228 auto filePath = configPath; in loadFromCustomXmlConfigForVtsTests()