Searched refs:PathMatcher (Results 1 – 9 of 9) sorted by relevance
30 import com.android.gallery3d.data.PathMatcher;44 private PathMatcher mMatcher;51 mMatcher = new PathMatcher(); in PicasaSource()
25 private PathMatcher mMatcher;30 mMatcher = new PathMatcher(); in ComboSource()
23 private static PathMatcher mMatcher = new PathMatcher();
27 private PathMatcher mMatcher;33 mMatcher = new PathMatcher(); in SnailSource()
35 PathMatcher mMatcher;40 mMatcher = new PathMatcher(); in ClusterSource()
36 private PathMatcher mMatcher;43 mMatcher = new PathMatcher(); in FilterSource()
22 public class PathMatcher { class28 public PathMatcher() { in PathMatcher() method in PathMatcher
38 private PathMatcher mMatcher;59 mMatcher = new PathMatcher(); in LocalSource()
686 argThat(PathMatcher.matchesPath(mFetchJavaScriptPath)), any())) in testRunAdScoringSuccess_withDebugReportingEnabled()690 argThat(PathMatcher.matchesPath(mTrustedScoringSignalsPath)), any())) in testRunAdScoringSuccess_withDebugReportingEnabled()1616 argThat(PathMatcher.matchesPath(mFetchJavaScriptPath)), any())) in testRunAdScoringTimesOut()1620 argThat(PathMatcher.matchesPath(mTrustedScoringSignalsPath)), any())) in testRunAdScoringTimesOut()1955 private static class PathMatcher<T> implements ArgumentMatcher<T> { class1958 private PathMatcher(@NonNull String path) { in PathMatcher() method in PathMatcher1963 public static <T> PathMatcher<T> matchesPath(@NonNull String path) { in matchesPath()1964 return new PathMatcher<>(path); in matchesPath()