Home | History | Annotate | Download | only in content

Lines Matching defs:UriMatcher

28 <p>To use this class, build up a tree of <code>UriMatcher</code> objects.
51 private static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
122 public class UriMatcher
130 public UriMatcher(int code)
134 mChildren = new ArrayList<UriMatcher>();
138 private UriMatcher()
142 mChildren = new ArrayList<UriMatcher>();
178 UriMatcher node = this;
181 ArrayList<UriMatcher> children = node.mChildren;
183 UriMatcher child;
194 child = new UriMatcher();
225 UriMatcher node = this;
233 ArrayList<UriMatcher> list = node.mChildren;
240 UriMatcher n = list.get(j);
281 private ArrayList<UriMatcher> mChildren;