Home | History | Annotate | Download | only in cts

Lines Matching defs:Uri

22 import android.net.Uri;
30 Uri uri = Settings.System.CONTENT_URI;
35 Cursor c = cr.query(uri, null, null, null, null);
41 MyNameValueTable.putString(cr, uri, name, value);
42 c = cr.query(uri, null, null, null, null);
49 c = cr.query(uri, null, selection, null, null);
58 cr.delete(uri, selection, null);
59 c = cr.query(uri, null, null, null, null);
69 Uri uri = Uri.parse("content://authority/path");
72 Uri res = NameValueTable.getUriFor(uri, name);
74 assertEquals(Uri.withAppendedPath(uri, name), res);
78 protected static boolean putString(ContentResolver resolver, Uri uri, String name,
80 return NameValueTable.putString(resolver, uri, name, value);