Home
last modified time | relevance | path

Searched refs:expandProperty (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/tests/coretests/src/com/android/internal/content/res/
DOverlayConfigParserTest.java40 OverlayConfigParser.expandProperty("${persist.value}/path", sysProp); in testMergePropNotRoProp()
48 OverlayConfigParser.expandProperty("${ro.value/path", sysProp); in testMergePropMissingEndBracket()
56 OverlayConfigParser.expandProperty("path/${", sysProp); in testMergeOnlyPropStart()
64 OverlayConfigParser.expandProperty("path/${${ro.value}}", sysProp); in testMergePropInProp()
75 OverlayConfigParser.expandProperty("${ro.value}/path${ro.value2}/path", sysProp); in testMergePropMultipleProps()
89 String result = OverlayConfigParser.expandProperty("${ro.value}/path", in testMergePropOneProp()
94 result = OverlayConfigParser.expandProperty("path/${ro.value}/file", in testMergePropOneProp()
99 result = OverlayConfigParser.expandProperty("path/${ro.value}", in testMergePropOneProp()
104 result = OverlayConfigParser.expandProperty("${ro.value}", in testMergePropOneProp()
116 String result = OverlayConfigParser.expandProperty(path, sysProp); in testMergePropNoProp()
/frameworks/base/core/java/com/android/internal/content/om/
DOverlayConfigParser.java356 public static String expandProperty(String configPath, in expandProperty() method in OverlayConfigParser
424 path = expandProperty(parser.getAttributeValue(null, "path"), sysPropWrapper); in parseMerge()