Searched refs:mMatcher (Results 1 - 17 of 17) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DClusterSource.java35 PathMatcher mMatcher; field in class:ClusterSource
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
[all...]
H A DFilterSource.java36 private PathMatcher mMatcher; field in class:FilterSource
43 mMatcher = new PathMatcher();
44 mMatcher.add("/filter/mediatype/*/*", FILTER_BY_MEDIATYPE);
45 mMatcher.add("/filter/delete/*", FILTER_BY_DELETE);
46 mMatcher.add("/filter/empty/*", FILTER_BY_EMPTY);
47 mMatcher.add(FILTER_EMPTY_ITEM, FILTER_BY_EMPTY_ITEM);
48 mMatcher.add(FILTER_CAMERA_SHORTCUT, FILTER_BY_CAMERA_SHORTCUT);
49 mMatcher.add(FILTER_CAMERA_SHORTCUT_ITEM, FILTER_BY_CAMERA_SHORTCUT_ITEM);
62 int matchType = mMatcher.match(path);
66 int mediaType = mMatcher
[all...]
H A DComboSource.java25 private PathMatcher mMatcher; field in class:ComboSource
30 mMatcher = new PathMatcher();
31 mMatcher.add("/combo/*", COMBO_ALBUMSET);
32 mMatcher.add("/combo/*/*", COMBO_ALBUM);
44 switch (mMatcher.match(path)) {
H A DSecureSource.java23 private static PathMatcher mMatcher = new PathMatcher(); field in class:SecureSource
28 mMatcher.add("/secure/all/*", SECURE_ALBUM);
29 mMatcher.add("/secure/unlock", SECURE_UNLOCK);
38 return (SECURE_ALBUM == mMatcher.match(Path.fromString(path)));
43 switch (mMatcher.match(path)) {
H A DSnailSource.java27 private PathMatcher mMatcher; field in class:SnailSource
33 mMatcher = new PathMatcher();
34 mMatcher.add("/snail/set/*", SNAIL_ALBUM);
35 mMatcher.add("/snail/item/*", SNAIL_ITEM);
42 switch (mMatcher.match(path)) {
44 String itemPath = "/snail/item/" + mMatcher.getVar(0);
49 int id = mMatcher.getIntVar(0);
H A DLocalSource.java38 private PathMatcher mMatcher; field in class:LocalSource
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
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
H A DBmsgTokenizer.java29 private final Matcher mMatcher; field in class:BmsgTokenizer
40 mMatcher = Pattern.compile("(([^:]*):(.*))?\r\n").matcher(str);
41 mPos = mMatcher.regionStart();
48 mMatcher.region(mPos, mMatcher.regionEnd());
50 if (!mMatcher.lookingAt()) {
58 mPos = mMatcher.end();
60 if (mMatcher.group(1) != null) {
65 return new Property(mMatcher.group(2), mMatcher
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DVeiledAddressMatcher.java68 private Pattern mMatcher = null; field in class:VeiledAddressMatcher
106 mMatcher = Pattern.compile(pattern);
143 if (!mVeiledMatchingEnabled || mMatcher == null) {
147 return mMatcher.matcher(address).matches();
/packages/apps/Gallery2/src_pd/com/android/gallery3d/picasasource/
H A DPicasaSource.java44 private PathMatcher mMatcher; field in class:PicasaSource
51 mMatcher = new PathMatcher();
52 mMatcher.add("/picasa/all", PICASA_ALBUMSET);
53 mMatcher.add("/picasa/image", PICASA_ALBUMSET);
54 mMatcher.add("/picasa/video", PICASA_ALBUMSET);
76 switch (mMatcher.match(path)) {
/packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
H A DBluetoothMapIMProvider.java54 private UriMatcher mMatcher; field in class:BluetoothMapIMProvider
68 mMatcher = new UriMatcher(UriMatcher.NO_MATCH);
69 mMatcher.addURI(mAuthority, BluetoothMapContract.TABLE_ACCOUNT, MATCH_ACCOUNT);
70 mMatcher.addURI(mAuthority, "#/"+ BluetoothMapContract.TABLE_MESSAGE, MATCH_MESSAGE);
71 mMatcher.addURI(mAuthority, "#/"+ BluetoothMapContract.TABLE_CONVERSATION,
73 mMatcher.addURI(mAuthority, "#/"+ BluetoothMapContract.TABLE_CONVOCONTACT,
305 switch (mMatcher.match(uri)) {
H A DBluetoothMapEmailProvider.java58 private UriMatcher mMatcher; field in class:BluetoothMapEmailProvider
91 mMatcher = new UriMatcher(UriMatcher.NO_MATCH);
92 mMatcher.addURI(mAuthority, BluetoothMapContract.TABLE_ACCOUNT, MATCH_ACCOUNT);
93 mMatcher.addURI(mAuthority, "#/"+BluetoothMapContract.TABLE_FOLDER, MATCH_FOLDER);
94 mMatcher.addURI(mAuthority, "#/"+BluetoothMapContract.TABLE_MESSAGE, MATCH_MESSAGE);
501 switch (mMatcher.match(uri)) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator.java62 private final ContactMatcher mMatcher = new ContactMatcher(); field in class:ContactAggregator
488 mMatcher.clear();
490 updateMatchScoresBasedOnIdentityMatch(db, rawContactId, mMatcher);
491 updateMatchScoresBasedOnNameMatches(db, rawContactId, mMatcher);
493 mMatcher.pickBestMatches(ContactMatcher.SCORE_THRESHOLD_PRIMARY);
498 mMatcher.clear();
499 updateMatchScoresBasedOnEmailMatches(db, rawContactId, mMatcher);
500 updateMatchScoresBasedOnPhoneMatches(db, rawContactId, mMatcher);
502 mMatcher.pickBestMatches(ContactMatcher.SCORE_THRESHOLD_SECONDARY);
H A DContactAggregator2.java74 private final RawContactMatcher mMatcher = new RawContactMatcher(); field in class:ContactAggregator2
473 mMatcher.clear();
475 updateMatchScoresBasedOnIdentityMatch(db, rawContactId, mMatcher);
476 updateMatchScoresBasedOnNameMatches(db, rawContactId, mMatcher);
478 mMatcher.pickBestMatches(SCORE_THRESHOLD_PRIMARY);
483 mMatcher.clear();
484 updateMatchScoresBasedOnEmailMatches(db, rawContactId, mMatcher);
485 updateMatchScoresBasedOnPhoneMatches(db, rawContactId, mMatcher);
487 mMatcher.pickBestMatches(SCORE_THRESHOLD_SECONDARY);
/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
H A DMockContentProvider.java47 private UriMatcher mMatcher; field in class:MockContentProvider.Query
68 mMatcher = matcher;
139 if (mMatcher != null && mMatcher.match(uri) == UriMatcher.NO_MATCH) {
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationViewAdapter.java90 private final VeiledAddressMatcher mMatcher; field in class:ConversationViewAdapter
278 v.setVeiledMatcher(mAdapter.mMatcher);
571 mMatcher = controllableActivity.getAccountController().getVeiledAddressMatcher();
H A DMessageHeaderView.java733 private final VeiledAddressMatcher mMatcher; field in class:MessageHeaderView.RecipientListsBuilder
747 mMatcher = matcher;
791 if (mMatcher != null && mMatcher.isVeiledAddress(emailAddress)) {
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 314 milliseconds