Searched defs:match (Results 1 - 9 of 9) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
H A DTypedUriMatcher.java26 public T match(Uri uri); method in interface:TypedUriMatcher
H A DTypedUriMatcherImpl.java53 public T match(Uri uri) { method in class:TypedUriMatcherImpl
54 int match = mUriMatcher.match(uri);
55 if (match == UriMatcher.NO_MATCH) {
58 return mValues[match];
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DPathMatcher.java41 public int match(Path path) { method in class:PathMatcher
/packages/apps/VideoEditor/src/com/android/videoeditor/util/
H A DImageUtils.java54 // The match aspect ratio mode for scaleImage
70 * @param match MATCH_SMALLER_DIMENSION or MATCH_LARGER_DIMMENSION
74 public static Bitmap scaleImage(String filename, int width, int height, int match) argument
89 float scale = (match == MATCH_SMALLER_DIMENSION) ? Math.max(dx,dy) : Math.min(dx,dy);
/packages/providers/DrmProvider/src/com/android/providers/drm/
H A DDrmProvider.java144 switch (URI_MATCHER.match(uri)) {
187 switch (URI_MATCHER.match(url)) {
232 int match = URI_MATCHER.match(uri);
240 switch (match) {
280 private void getTableAndWhere(Uri uri, int match, String userWhere, argument
283 switch (match) {
348 int match = URI_MATCHER.match(uri);
352 getTableAndWhere(uri, match, userWher
[all...]
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
H A DMmsProvider.java72 int match = sURLMatcher.match(uri);
74 Log.v(TAG, "Query uri=" + uri + ", match=" + match);
77 switch (match) {
104 + getMessageBoxByMatch(match));
220 int match = sURLMatcher.match(uri);
221 switch (match) {
267 int match
476 getMessageBoxByMatch(int match) argument
[all...]
/packages/apps/Email/src/com/android/email/provider/
H A DEmailProvider.java425 * @param uri the Uri to match
426 * @return the match value
429 int match = sURIMatcher.match(uri);
430 if (match < 0) {
433 Log.v(TAG, methodName + ": uri=" + uri + ", match is " + match);
435 return match;
1357 final int match = findMatch(uri, "delete");
1364 int table = match >> BASE_SHIF
2299 getBaseNotificationUri(int match) argument
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DLegacyApiSupport.java778 final int match = sUriMatcher.match(uri);
780 switch (match) {
943 int match = sUriMatcher.match(uri);
945 switch(match) {
967 count = updateAll(uri, match, values, selection, selectionArgs);
978 private int updateAll(Uri uri, final int match, ContentValues values, String selection, argument
989 count += update(match, id, values);
998 public int update(int match, lon argument
1549 delete(Uri uri, int match, long id) argument
[all...]
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java138 "match as ar",
1015 "artist_key AS match," +
1029 "artist_key||' '||album_key AS match," +
1043 "artist_key||' '||album_key||' '||title_key AS match," +
1866 int table = URI_MATCHER.match(uri);
2295 // Because we match on individual words here, we need to remove words
2309 where = "match LIKE ? ESCAPE '\\'";
2311 where += " AND match LIKE ? ESCAPE '\\'";
2330 switch (URI_MATCHER.match(url)) {
2436 int match
2959 insertInternal(Uri uri, int match, ContentValues initialValues) argument
3256 getTableAndWhere(Uri uri, int match, String userWhere, GetTableAndWhereOutParameter out) argument
[all...]

Completed in 5503 milliseconds