Home
last modified time | relevance | path

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

/frameworks/support/tests/java/android/support/v4/content/
DFileProviderTest.java60 final SimplePathStrategy strat = new SimplePathStrategy("authority"); in testStrategyUriSimple() local
61 strat.addRoot("tag", mContext.getFilesDir()); in testStrategyUriSimple()
65 strat.getUriForFile(file).toString()); in testStrategyUriSimple()
69 strat.getUriForFile(file).toString()); in testStrategyUriSimple()
73 strat.getUriForFile(file); in testStrategyUriSimple()
80 final SimplePathStrategy strat = new SimplePathStrategy("authority"); in testStrategyUriJumpOutside() local
81 strat.addRoot("tag", mContext.getFilesDir()); in testStrategyUriJumpOutside()
85 strat.getUriForFile(file); in testStrategyUriJumpOutside()
92 SimplePathStrategy strat = new SimplePathStrategy("authority"); in testStrategyUriShortestRoot() local
93 strat.addRoot("tag1", mContext.getFilesDir()); in testStrategyUriShortestRoot()
[all …]
/frameworks/support/v4/java/android/support/v4/content/
DFileProvider.java530 PathStrategy strat; in getPathStrategy() local
532 strat = sCache.get(authority); in getPathStrategy()
533 if (strat == null) { in getPathStrategy()
535 strat = parsePathStrategy(context, authority); in getPathStrategy()
543 sCache.put(authority, strat); in getPathStrategy()
546 return strat; in getPathStrategy()
557 final SimplePathStrategy strat = new SimplePathStrategy(authority); in parsePathStrategy() local
588 strat.addRoot(name, target); in parsePathStrategy()
593 return strat; in parsePathStrategy()