HomeSort by relevance Sort by last modified time
    Searched defs:mMatcher (Results 1 - 11 of 11) sorted by null

  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ComboSource.java 25 private PathMatcher mMatcher;
30 mMatcher = new PathMatcher();
31 mMatcher.add("/combo/*", COMBO_ALBUMSET);
32 mMatcher.add("/combo/*/*", COMBO_ALBUM);
44 switch (mMatcher.match(path)) {
FilterSource.java 27 private PathMatcher mMatcher;
32 mMatcher = new PathMatcher();
33 mMatcher.add("/filter/mediatype/*/*", FILTER_BY_MEDIATYPE);
34 mMatcher.add("/filter/delete/*", FILTER_BY_DELETE);
42 int matchType = mMatcher.match(path);
46 int mediaType = mMatcher.getIntVar(0);
47 String setsName = mMatcher.getVar(1);
52 String setsName = mMatcher.getVar(0);
SnailSource.java 26 private PathMatcher mMatcher;
32 mMatcher = new PathMatcher();
33 mMatcher.add("/snail/set/*", SNAIL_ALBUM);
34 mMatcher.add("/snail/item/*", SNAIL_ITEM);
41 switch (mMatcher.match(path)) {
43 String itemPath = "/snail/item/" + mMatcher.getVar(0);
48 int id = mMatcher.getIntVar(0);
ClusterSource.java 35 PathMatcher mMatcher;
40 mMatcher = new PathMatcher();
41 mMatcher.add("/cluster/*/time", CLUSTER_ALBUMSET_TIME);
42 mMatcher.add("/cluster/*/location", CLUSTER_ALBUMSET_LOCATION);
43 mMatcher.add("/cluster/*/tag", CLUSTER_ALBUMSET_TAG);
44 mMatcher.add("/cluster/*/size", CLUSTER_ALBUMSET_SIZE);
45 mMatcher.add("/cluster/*/face", CLUSTER_ALBUMSET_FACE);
47 mMatcher.add("/cluster/*/time/*", CLUSTER_ALBUM_TIME);
48 mMatcher.add("/cluster/*/location/*", CLUSTER_ALBUM_LOCATION);
49 mMatcher.add("/cluster/*/tag/*", CLUSTER_ALBUM_TAG)
    [all...]
MtpSource.java 29 PathMatcher mMatcher;
35 mMatcher = new PathMatcher();
36 mMatcher.add("/mtp", MTP_DEVICESET);
37 mMatcher.add("/mtp/*", MTP_DEVICE);
38 mMatcher.add("/mtp/item/*/*", MTP_ITEM);
44 switch (mMatcher.match(path)) {
49 int deviceId = mMatcher.getIntVar(0);
53 int deviceId = mMatcher.getIntVar(0);
54 int objectId = mMatcher.getIntVar(1);
LocalSource.java 38 private PathMatcher mMatcher;
59 mMatcher = new PathMatcher();
60 mMatcher.add("/local/image", LOCAL_IMAGE_ALBUMSET);
61 mMatcher.add("/local/video", LOCAL_VIDEO_ALBUMSET);
62 mMatcher.add("/local/all", LOCAL_ALL_ALBUMSET);
64 mMatcher.add("/local/image/*", LOCAL_IMAGE_ALBUM);
65 mMatcher.add("/local/video/*", LOCAL_VIDEO_ALBUM);
66 mMatcher.add("/local/all/*", LOCAL_ALL_ALBUM);
67 mMatcher.add("/local/image/item/*", LOCAL_IMAGE_ITEM);
68 mMatcher.add("/local/video/item/*", LOCAL_VIDEO_ITEM)
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
MockSource.java 23 PathMatcher mMatcher;
31 mMatcher = new PathMatcher();
32 mMatcher.add("/mock/*", MOCK_SET);
33 mMatcher.add("/mock/item/*", MOCK_ITEM);
39 switch (mMatcher.match(path)) {
  /libcore/luni/src/main/native/
java_util_regex_Matcher.cpp 59 mMatcher->reset(mUText);
61 mMatcher->refreshInputText(mUText, mStatus);
78 return mMatcher;
91 for (size_t i = 0, groupCount = mMatcher->groupCount(); i <= groupCount; ++i) {
92 offsets[2*i + 0] = mMatcher->start(i, mStatus);
93 offsets[2*i + 1] = mMatcher->end(i, mStatus);
101 mMatcher = toRegexMatcher(addr);
109 RegexMatcher* mMatcher;
  /packages/apps/Gallery2/src_pd/com/android/gallery3d/picasasource/
PicasaSource.java 45 private PathMatcher mMatcher;
52 mMatcher = new PathMatcher();
53 mMatcher.add("/picasa/all", PICASA_ALBUMSET);
54 mMatcher.add("/picasa/image", PICASA_ALBUMSET);
55 mMatcher.add("/picasa/video", PICASA_ALBUMSET);
77 switch (mMatcher.match(path)) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 172 private ContactMatcher mMatcher = new ContactMatcher();
461 mCandidates, mMatcher);
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 129 milliseconds