Home
last modified time | relevance | path

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

/frameworks/support/compat/src/androidTest/java/androidx/core/content/
DFileProviderTest.java73 final SimplePathStrategy strat = new SimplePathStrategy("authority"); in testStrategyUriSimple() local
74 strat.addRoot("tag", mContext.getFilesDir()); in testStrategyUriSimple()
78 strat.getUriForFile(file).toString()); in testStrategyUriSimple()
82 strat.getUriForFile(file).toString()); in testStrategyUriSimple()
86 strat.getUriForFile(file); in testStrategyUriSimple()
94 final SimplePathStrategy strat = new SimplePathStrategy("authority"); in testStrategyUriJumpOutside() local
95 strat.addRoot("tag", mContext.getFilesDir()); in testStrategyUriJumpOutside()
99 strat.getUriForFile(file); in testStrategyUriJumpOutside()
107 SimplePathStrategy strat = new SimplePathStrategy("authority"); in testStrategyUriShortestRoot() local
108 strat.addRoot("tag1", mContext.getFilesDir()); in testStrategyUriShortestRoot()
[all …]
/frameworks/support/compat/src/main/java/androidx/core/content/
DFileProvider.java574 PathStrategy strat; in getPathStrategy() local
576 strat = sCache.get(authority); in getPathStrategy()
577 if (strat == null) { in getPathStrategy()
579 strat = parsePathStrategy(context, authority); in getPathStrategy()
587 sCache.put(authority, strat); in getPathStrategy()
590 return strat; in getPathStrategy()
601 final SimplePathStrategy strat = new SimplePathStrategy(authority); in parsePathStrategy() local
648 strat.addRoot(name, buildPath(target, path)); in parsePathStrategy()
653 return strat; in parsePathStrategy()