HomeSort by relevance Sort by last modified time
    Searched refs:uri (Results 51 - 75 of 2106) sorted by null

1 23 4 5 6 7 8 91011>>

  /developers/build/prebuilts/gradle/ActionBarCompat-ShareActionProvider/Application/src/main/java/com/example/android/actionbarcompat/shareactionprovider/content/
AssetProvider.java 24 import android.net.Uri;
32 * functionality is in {@link #openAssetFile(android.net.Uri, String)}.
44 public int delete(Uri uri, String selection, String[] selectionArgs) {
50 public String getType(Uri uri) {
56 public Uri insert(Uri uri, ContentValues values) {
62 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs
    [all...]
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-ShareActionProvider/Application/src/main/java/com/example/android/actionbarcompat/shareactionprovider/content/
AssetProvider.java 24 import android.net.Uri;
32 * functionality is in {@link #openAssetFile(android.net.Uri, String)}.
44 public int delete(Uri uri, String selection, String[] selectionArgs) {
50 public String getType(Uri uri) {
56 public Uri insert(Uri uri, ContentValues values) {
62 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs
    [all...]
  /development/samples/browseable/ActionBarCompat-ShareActionProvider/src/com.example.android.actionbarcompat.shareactionprovider/content/
AssetProvider.java 24 import android.net.Uri;
32 * functionality is in {@link #openAssetFile(android.net.Uri, String)}.
44 public int delete(Uri uri, String selection, String[] selectionArgs) {
50 public String getType(Uri uri) {
56 public Uri insert(Uri uri, ContentValues values) {
62 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMLocatorImpl.java 61 * The URI where the error occured,
62 * or null if there is no URI available.
92 DOMLocatorImpl (int lineNumber, int columnNumber, String uri ){
95 fUri = uri;
100 } // DOMLocatorImpl (int lineNumber, int columnNumber, String uri )
102 DOMLocatorImpl (int lineNumber, int columnNumber, int utf16Offset, String uri ){
105 fUri = uri;
111 } // DOMLocatorImpl (int lineNumber, int columnNumber, int utf16Offset, String uri )
113 DOMLocatorImpl (int lineNumber, int columnNumber, int byteoffset, Node relatedData, String uri ){
118 fUri = uri;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NameSpace.java 43 /** Namespace URI of this NameSpace element.
52 * @param uri URI of this element
54 public NameSpace(String prefix, String uri)
57 m_uri = uri;
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
LocalUriFetcher.java 5 import android.net.Uri;
20 private final Uri uri; field in class:LocalUriFetcher
24 * Opens an input stream for a uri pointing to a local asset. Only certain uris are supported
26 * @see ContentResolver#openInputStream(android.net.Uri)
30 * @param uri A Uri pointing to a local asset. This load will fail if the uri isn't openable by
31 * {@link ContentResolver#openInputStream(android.net.Uri)}
33 public LocalUriFetcher(Context context, Uri uri)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCursorLoader.java 4 import android.net.Uri;
13 private Uri uri; field in class:ShadowCursorLoader
23 public void __constructor__(Context context, Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
25 this.uri = uri;
33 public Uri getUri() {
34 return uri;
38 public void setUri(Uri uri)
    [all...]
  /frameworks/base/core/java/android/database/
IContentObserver.aidl 20 import android.net.Uri;
32 oneway void onChange(boolean selfUpdate, in Uri uri, int userId);
  /frameworks/base/media/java/android/media/
IMediaScannerListener.aidl 19 import android.net.Uri;
29 * @param uri the Uri for the file if the scanning operation succeeded
32 void scanCompleted(String path, in Uri uri);
  /libcore/luni/src/main/java/java/net/
ProxySelector.java 112 * Returns the proxy servers to use on connections to {@code uri}. This list
115 * @throws IllegalArgumentException if {@code uri} is null.
117 public abstract List<Proxy> select(URI uri);
123 * @param uri the URI to which the connection could not be established.
129 public abstract void connectFailed(URI uri, SocketAddress address, IOException failure);
URI.java 33 * <h3>Parts of a URI</h3>
34 * A URI is composed of many parts. This class can both parse URI strings into
35 * parts and compose URI strings from parts. For example, consider the parts of
36 * this URI:
59 * URL}, you can use {@link #toURL} to convert an absolute URI to a URL.
62 * have the absolute URI that a relative URI is relative to, you can use {@link
63 * #resolve} to compute the referenced absolute URI. Symmetrically, you can use
64 * {@link #relativize} to compute the relative URI from one URI to another
214 StringBuilder uri = new StringBuilder(); local
247 StringBuilder uri = new StringBuilder(); local
312 StringBuilder uri = new StringBuilder(); local
823 URI uri = (URI) o; local
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2.java 76 * namespace URI associated with an attribute may not have come from
80 * @param uri The Namespace URI, or the empty string if
81 * the name has no Namespace URI.
88 public boolean isDeclared (String uri, String localName);
107 * namespace URI associated with an attribute may not have come from
111 * @param uri The Namespace URI, or the empty string if
112 * the name has no Namespace URI.
119 public boolean isSpecified (String uri, String localName)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
CompletedDownloadInfo.java 28 public CompletedDownloadInfo(final String uri, final long downloadId, final int status) {
29 mUri = uri;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
ContactUtil.java 23 import android.net.Uri;
31 private static final Uri URI = ContactsContract.Contacts.CONTENT_URI;
35 Uri uri = ContentUris.withAppendedId(URI, contactId); local
36 resolver.update(uri, values, null, null);
40 Uri uri = ContentUris.withAppendedId(URI, contactId) local
48 Uri uri = ContentUris.withAppendedId(URI, contactId); local
61 Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, contactId); local
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
IntentFilter_AuthorityEntryTest.java 21 import android.net.Uri;
55 Uri uri = Uri.parse("testUri"); local
56 assertEquals(IntentFilter.NO_MATCH_DATA, mAuthorityEntry.match(uri));
57 uri = Uri.parse("content://contacts/deleted_people");
58 assertEquals(IntentFilter.NO_MATCH_DATA, mAuthorityEntry.match(uri));
59 uri = Uri.parse("test")
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSuggestionProvider.java 31 import android.net.Uri;
62 public String getType(Uri uri) {
71 public Cursor query(Uri uri, String[] projection, String selection,
74 if (DBG) Log.d(TAG, "query uri=" + uri);
75 int match = mUriMatcher.match(uri);
78 String query = getQuery(uri);
82 String shortcutId = getQuery(uri);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/mediastream/
RTCConfiguration.h 44 static PassRefPtr<RTCIceServer> create(const KURL& uri, const String& username, const String& credential)
46 return adoptRef(new RTCIceServer(uri, username, credential));
49 const KURL& uri() { return m_uri; } function in class:WebCore::FINAL
54 RTCIceServer(const KURL& uri, const String& username, const String& credential)
55 : m_uri(uri)
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ContentProviderResultTest.java 11 import android.net.Uri;
24 public void uri() { method in class:ContentProviderResultTest
25 Uri uri = Uri.parse("content://com.xtremelabs.robolectric"); local
26 ContentProviderResult result = new ContentProviderResult(uri);
27 assertThat(result.uri, equalTo(uri));
  /frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
DisabledProvider.java 22 import android.net.Uri;
34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
39 public String getType(Uri uri) {
43 public Uri insert(Uri uri, ContentValues values) {
47 public int delete(Uri uri, String selection, String[] selectionArgs)
    [all...]
EnabledProvider.java 22 import android.net.Uri;
34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
39 public String getType(Uri uri) {
43 public Uri insert(Uri uri, ContentValues values) {
47 public int delete(Uri uri, String selection, String[] selectionArgs)
    [all...]
  /frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
TestProvider.java 23 import android.net.Uri;
33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
39 public String getType(Uri uri) {
44 public Uri insert(Uri uri, ContentValues values) {
49 public int delete(Uri uri, String selection, String[] selectionArgs)
    [all...]
TestReceiver.java 23 import android.net.Uri;
33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
39 public String getType(Uri uri) {
44 public Uri insert(Uri uri, ContentValues values) {
49 public int delete(Uri uri, String selection, String[] selectionArgs)
    [all...]
  /frameworks/base/core/tests/coretests/apks/version/src/com/android/frameworks/coretests/version_test/
NullProvider.java 6 import android.net.Uri;
15 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
21 public Uri insert(Uri uri, ContentValues values) {
26 public int delete(Uri uri, String selection, String[] selectionArgs) {
31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs)
    [all...]
  /frameworks/base/core/tests/coretests/apks/version_nosys/src/com/android/frameworks/coretests/version_test/
NullProvider.java 6 import android.net.Uri;
15 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
21 public Uri insert(Uri uri, ContentValues values) {
26 public int delete(Uri uri, String selection, String[] selectionArgs) {
31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
URITest.java 21 import java.net.URI;
28 private URI[] uris;
30 private URI[] getUris() throws URISyntaxException {
35 uris = new URI[] {
37 new URI(
40 new URI(
43 new URI(
46 // URI("ascheme://user\u00df\u00a3info@host:0/a\u0080path?qu\u00a9\u00aeery#fr\u00e4\u00e8g"),
49 new URI("http", "user%60%20info", "host", 80, "/a%20path", //$NON-NLS-4$
52 new URI("http", "user%C3%9F%C2%A3info", "host", -1
231 URI uri = new URI("http:\/\/host:-8096\/path\/index.html"); local
265 URI uri = new URI("path[one"); local
273 URI uri = new URI(" "); local
287 URI uri = new URI("mailto", "mduerst@ifi.unizh.ch", null); local
378 URI uri; local
403 URI uri = new URI(scheme, userinfo, host, port, path, query, local
429 URI uri; local
478 URI uri = new URI("ht12-3+tp", "", "\/p#a%E2%82%ACth", "q^u%25ery", local
513 URI uri = new URI("ftp", "[0001:1234::0001]", "\/dir1\/dir2", "query", local
615 URI uri, uri2; local
727 URI uri = new URI("http:\/\/\/~\/dictionary"); local
784 URI uri = new URI("file:\/\/\/tmp\/"); local
917 URI uri = new URI("http:\/\/myhost:-8096\/site\/index.html"); local
1497 URI uri = uris[i].parseServerAuthority(); local
1518 URI uri = new URI("http:\/\/us[er@host:80\/"); local
1525 URI uri = new URI("http:\/\/[ddd::hgghh]\/"); local
1532 URI uri = new URI("http", "[3ffe:2a00:100:7031:2e:1:80:80]a:80", local
1540 URI uri = new URI("http", "host:80", "\/path", "fragment"); local
1603 URI uri = new URI("file", null, "\/test\/location", null); local
1837 URI uri = new URI("http:\/\/harmony.apache.org\/"); local
    [all...]

Completed in 4292 milliseconds

1 23 4 5 6 7 8 91011>>