HomeSort by relevance Sort by last modified time
    Searched full:uri (Results 476 - 500 of 2862) sorted by null

<<11121314151617181920>>

  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockSource.java 22 import android.net.Uri;
87 public Uri getIconUri(String drawableId) {
111 public Uri getSourceIconUri() {
134 Uri data = new Uri.Builder().scheme("content").authority(mName).path(query).build();
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java 46 import android.net.Uri;
73 private static final Uri URI = People.CONTENT_URI;
225 android.net.Uri.class, java.util.Set.class, java.lang.String.class}
390 args = {android.net.Uri.class}
419 Uri uri = Uri.parse("http://" + HOST + i + ":" + String.valueOf(PORT + i)); local
420 assertTrue(mIntentFilter.hasDataAuthority(uri));
421 Uri uri2 = Uri.parse("http://" + HOST + i + 10 + ":" + PORT + i + 10)
542 final Uri uri = Uri.parse("http:\/\/" + HOST + ":" + PORT); local
684 final Uri uri = Uri.parse("http:\/\/" + HOST + ":" + PORT); local
893 final Uri uri = Uri.parse(DATA_SCHEME + ":\/\/" + HOST + ":" + PORT); local
967 final Uri uri = Uri.parse(DATA_SCHEME + ":\/\/" + HOST + ":" + PORT); local
    [all...]
  /development/samples/NFCDemo/src/com/example/android/nfc/record/
SmartPoster.java 56 * "The URI record. This is the core of the Smart Poster, and all other
57 * records are just metadata about this record. There MUST be one URI record
67 * the URI as a bookmark or open a browser. The Action record is optional.
78 * "The Type record. If the URI references an external entity (e.g., via a
85 private SmartPoster(UriRecord uri, TextRecord title, RecommendedAction action, String type) {
86 mUriRecord = Preconditions.checkNotNull(uri);
117 UriRecord uri = Iterables.getOnlyElement(Iterables.filter(records, UriRecord.class)); local
121 return new SmartPoster(uri, title, action, type);
138 // Build a container to hold the title and the URI
148 // Just a URI, return a view for it directl
    [all...]
  /external/webkit/WebKit/gtk/webkit/
webkitwebnavigationaction.cpp 165 * WebKitWebNavigationAction:original-uri:
167 * The URI that was requested as the target for the navigation.
172 g_param_spec_string("original-uri",
173 _("Original URI"),
174 _("The URI that was requested as the target for the navigation"),
271 * Returns the URI that was originally requested. This may differ from the
274 * Return value: the originally requested URI
288 * @originalUri: a URI
290 * Sets the URI that was originally requested. This may differ from the
306 g_object_notify(G_OBJECT(navigationAction), "original-uri");
    [all...]
  /frameworks/base/docs/html/guide/appendix/
g-app-intents.jd 11 <p>The table below lists the intents that your application can send, to invoke Google applications on Android devices in certain ways. For each action/uri pair, the table describes how the receiving Google application handles the intent. </p>
18 <th scope="col">Intent URI</th>
50 in the {@link android.net.Uri#parse(java.lang.String)
51 Uri(URI string)} factory. However, if you have not tried a
53 android.net.Uri#fromParts(java.lang.String, java.lang.String,
54 java.lang.String) Uri.fromParts(scheme, ssp, fragment)} factory
76 <td>Opens the Maps application to the given location or query. The Geo URI scheme
77 (not fully supported) is <a href="http://tools.ietf.org/html/draft-mayrhofer-geo-uri-00">currently under
89 <td>Opens the Street View application to the given location. The URI scheme i
    [all...]
  /packages/apps/Phone/src/com/android/phone/
Ringer.java 23 import android.net.Uri;
50 // Uri for the ringtone.
51 Uri mCustomRingtoneUri;
265 * Sets the ringtone uri in preparation for ringtone creation
266 * in makeLooper(). This uri is defaulted to the phone-wide
269 void setCustomRingtoneUri (Uri uri) {
270 if (uri != null) {
271 mCustomRingtoneUri = uri;
286 // create the ringtone with the uri
    [all...]
OutgoingCallBroadcaster.java 24 import android.net.Uri;
74 * a modified phone number and optional provider info (uri + package name + remote views.)
146 Uri uri = Uri.parse(originalUri); local
155 startSipCallOptionsHandler(context, intent, uri, number);
160 Uri uri, String number) {
161 Intent newIntent = new Intent(Intent.ACTION_CALL, uri);
169 Intent selectPhoneIntent = new Intent(EXTRA_NEW_CALL_INTENT, uri);
336 Uri uri = intent.getData(); local
    [all...]
  /packages/apps/Tag/src/com/android/apps/tag/record/
SmartPoster.java 61 * "The URI record. This is the core of the Smart Poster, and all other
62 * records are just metadata about this record. There MUST be one URI
83 * save the URI as a bookmark or open a browser. The Action record is
94 * "The Type record. If the URI references an external entity (e.g., via
103 private SmartPoster(UriRecord uri, @Nullable TextRecord title,
106 mUriRecord = Preconditions.checkNotNull(uri);
138 UriRecord uri = Iterables.getOnlyElement(Iterables.filter(records, UriRecord.class)); local
144 return new SmartPoster(uri, title, image, action, type);
162 // Build a container to hold the title and the URI
173 // Just a URI, return a view for it directl
    [all...]
  /libcore/luni/src/main/java/javax/xml/namespace/
QName.java 40 * URI</strong>, <strong>local part</strong> and
49 * <strong><em>only</em></strong> the Namespace URI and local part.</p>
51 * <p>If not specified, the Namespace URI is set to {@link
106 * <p>Namespace URI of this <code>QName</code>.</p>
126 * <p><code>QName</code> constructor specifying the Namespace URI
129 * <p>If the Namespace URI is <code>null</code>, it is set to
149 * <p>The Namespace URI is not validated as a
150 * <a href="http://www.ietf.org/rfc/rfc2396.txt">URI reference</a>.
156 * @param namespaceURI Namespace URI of the <code>QName</code>
168 * <p><code>QName</code> constructor specifying the Namespace URI,
    [all...]
  /frameworks/base/core/java/android/app/
DownloadManager.java 26 import android.net.Uri;
43 * request that a URI be downloaded to a particular destination file. The download manager will
77 * URI to be downloaded.
79 public final static String COLUMN_URI = "uri";
97 * Uri where downloaded file will be stored. If a destination is supplied by client, that URI
99 * generated URI once the download has started.
139 * The URI to the corresponding entry in MediaProvider for this downloaded entry. It is
309 * This class contains all the information necessary to request a new download. The URI is the
314 * on external storage (see {@link #setDestinationUri(Uri)}
650 Uri uri = baseUri; local
    [all...]
  /external/bluetooth/glib/gio/win32/
gwinhttpfile.c 85 * @uri: URI of the GWinHttpFile to create.
91 const char *uri)
96 wuri = g_utf8_to_utf16 (uri, -1, NULL, NULL, NULL);
174 /* If no slash, or only "/" fallback to full path part of URI */
240 char *uri; local
246 uri = g_winhttp_file_get_uri (file);
247 if (uri == NULL)
250 last_slash = strrchr (uri, '/');
253 g_free (uri);
272 char *uri = g_winhttp_file_get_uri (file); local
283 char *uri = g_winhttp_file_get_uri (file); local
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_PeopleTest.java 32 import android.net.Uri;
49 private ArrayList<Uri> mPeopleRowsAdded;
50 private ArrayList<Uri> mGroupRowsAdded;
51 private ArrayList<Uri> mRowsAdded;
76 mPeopleRowsAdded = new ArrayList<Uri>();
77 mGroupRowsAdded = new ArrayList<Uri>();
78 mRowsAdded = new ArrayList<Uri>();
99 for (Uri row : mRowsAdded) {
104 for (Uri row : mPeopleRowsAdded) {
109 for (Uri row : mGroupRowsAdded)
    [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduPart.java 20 import android.net.Uri;
113 * Data uri.
115 private Uri mUri = null;
147 * the data is stored as Uri.
161 * Set data uri. The data are stored as Uri.
163 * @param uri the uri
165 public void setDataUri(Uri uri) {
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 97 public boolean isDeclared (String uri, String localName)
99 int index = getIndex (uri, localName);
104 + ", namespace=" + uri);
144 * @param uri The Namespace URI, or the empty string if
145 * the name has no Namespace URI.
151 public boolean isSpecified (String uri, String localName)
153 int index = getIndex (uri, localName);
158 + ", namespace=" + uri);
230 * @param uri The Namespace URI, or the empty string i
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/ext/
Attributes2ImplTest.java 45 multi.addAttribute("http://some.uri", "foo", "ns1:foo",
47 multi.addAttribute("http://some.uri", "bar", "ns1:bar",
49 multi.addAttribute("http://some.other.uri", "answer", "ns2:answer",
51 multi.addAttribute("http://yet.another.uri", "gabba", "ns3:gabba",
66 cdata.addAttribute("http://yet.another.uri", "hey", "ns3:hey",
136 attrs.addAttribute("http://yet.another.uri", "doe", "john:doe",
141 assertEquals("http://yet.another.uri", attrs.getURI(0));
151 attrs.addAttribute("http://yet.another.uri", "doe", "jane:doe",
156 assertEquals("http://yet.another.uri", attrs.getURI(1));
305 assertEquals(false, multi.isDeclared("http://some.uri", "foo"))
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
AttributesImpl.java 108 * Return an attribute's Namespace URI.
111 * @return The Namespace URI, the empty string if none is
203 * @param uri The attribute's Namespace URI, or the empty
209 public int getIndex (String uri, String localName)
213 if (data[i].equals(uri) && data[i+1].equals(localName)) {
243 * @param uri The Namespace URI, or the empty string for a name
244 * with no explicit Namespace URI.
250 public String getType (String uri, String localName
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyApiSupport.java 42 import android.net.Uri;
183 private static final Uri LIVE_FOLDERS_CONTACTS_URI = Uri.withAppendedPath(
186 private static final Uri LIVE_FOLDERS_CONTACTS_WITH_PHONES_URI = Uri.withAppendedPath(
189 private static final Uri LIVE_FOLDERS_CONTACTS_FAVORITES_URI = Uri.withAppendedPath(
281 // Contacts URI matching table
882 Uri uri = mContactsProvider.insertInTransaction(Data.CONTENT_URI, mValues); local
891 Uri uri = mContactsProvider.insertInTransaction(Data.CONTENT_URI, mValues); local
905 Uri uri = mContactsProvider.insertInTransaction(Data.CONTENT_URI, mValues); local
917 Uri uri = mContactsProvider.insertInTransaction(Data.CONTENT_URI, mValues); local
929 Uri uri = mContactsProvider.insertInTransaction(Groups.CONTENT_URI, mValues); local
940 Uri uri = mContactsProvider.insertInTransaction(Data.CONTENT_URI, mValues); local
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
SmsProvider.java 29 import android.net.Uri;
49 private static final Uri NOTIFICATION_URI = Uri.parse("content://sms");
50 private static final Uri ICC_URI = Uri.parse("content://sms/icc");
91 public Cursor query(Uri url, String[] projectionIn, String selection,
316 public String getType(Uri url) {
339 public Uri insert(Uri url, ContentValues initialValues) {
458 Uri uri = Uri.withAppendedPath(Contacts.Phones.CONTENT_FILTER_URL local
507 Uri uri = Uri.parse("content:\/\/" + table + "\/" + rowID); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationHeader.java 72 public static final String URI = ParameterNames.URI;
117 || name.equalsIgnoreCase(ParameterNames.URI)
247 * Sets the URI of the WWWAuthenicateHeader to the <var>uri</var> parameter
250 * @param uri -
251 * the new URI of this AuthenicationHeader.
257 public void setURI(javax.sip.address.URI uri) {
258 if (uri != null)
    [all...]
ProxyAuthenticate.java 31 import javax.sip.address.URI;
63 * @since 1.2 this method is deprecated, uri is not a valid paramter for this header
66 public URI getURI() {
71 * @see gov.nist.javax.sip.header.AuthenticationHeader#setURI(javax.sip.address.URI)
73 * @since 1.2 this method is deprecated, uri is not a valid paramter for this header
76 public void setURI(URI uri) {
  /frameworks/base/core/java/android/net/http/
RequestQueue.java 300 WebAddress uri = new WebAddress(url); local
301 return queueRequest(url, uri, method, headers, eventHandler,
308 * @param uri The uri of the url to load.
317 String url, WebAddress uri, String method, Map<String, String> headers,
321 if (HttpLog.LOGV) HttpLog.v("RequestQueue.queueRequest " + uri);
330 HttpHost httpHost = new HttpHost(uri.mHost, uri.mPort, uri.mScheme);
333 req = new Request(method, httpHost, mProxyHost, uri.mPath, bodyProvider
    [all...]
  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java 31 import android.net.Uri;
75 * @param paackageURI the uri of resource to be copied. Can be either
76 * a content uri or a file uri
86 public String copyResourceToContainer(final Uri packageURI,
97 * @param packageURI the uri of resource to be copied. Should be a
98 * file uri
102 public boolean copyResource(final Uri packageURI,
114 * specified by file uri location.
115 * @param fileUri the uri of resource to be copied. Should be
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
ToXMLStream.java 421 * @param uri the URI associated with the element name
431 String uri,
441 boolean was_added = addAttributeAlways(uri, localName, rawName, type, value, xslAttribute);
455 uri,
468 addAttributeAlways(uri, localName, rawName, type, value, xslAttribute);
524 * The official SAX startPrefixMapping(prefix,uri) is to define a mapping for a child
530 final String uri)
534 // hack for XSLTC with finding URI for default namespace
540 // the elements URI is not known yet, and i
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
DownloadManagerTest.java 26 import android.net.Uri;
166 private Uri getGoodUrl() {
167 return Uri.parse(mWebServer.getTestDownloadUrl("cts-good-download", 0));
170 private Uri getBadUrl() {
171 return Uri.parse(mWebServer.getBaseUri() + "/nosuchurl");
174 private Uri getMinimumDownloadUrl() {
175 return Uri.parse(mWebServer.getTestDownloadUrl("cts-minimum-download",
  /external/webkit/WebKit/gtk/po/
en_GB.po 77 msgid "The network request for the URI that should be downloaded"
78 msgstr "The network request for the URI that should be downloaded"
81 msgid "Destination URI"
82 msgstr "Destination URI"
85 msgid "The destination URI where to save the file"
86 msgstr "The destination URI where to save the file"
170 msgid "URI"
171 msgstr "URI"
174 msgid "The current URI of the contents displayed by the frame"
175 msgstr "The current URI of the contents displayed by the frame
    [all...]

Completed in 3467 milliseconds

<<11121314151617181920>>