/frameworks/base/sax/java/android/sax/ |
Element.java | 34 final String uri; field in class:Element 48 Element(Element parent, String uri, String localName, int depth) { 50 this.uri = uri; 66 public Element getChild(String uri, String localName) { 76 return children.getOrCreate(this, uri, localName); 94 public Element requireChild(String uri, String localName) { 95 Element child = getChild(uri, localName); 168 return toString(uri, localName); 171 static String toString(String uri, String localName) [all...] |
/frameworks/base/voip/java/android/net/sip/ |
SipRegistrationListener.java | 26 * @param localProfileUri the URI string of the SIP profile to register with 33 * @param localProfileUri the URI string of the SIP profile to register with 41 * @param localProfileUri the URI string of the SIP profile to register with
|
/packages/apps/Camera/tests/src/com/android/camera/gallery/ |
MockImage.java | 5 import android.net.Uri; 49 public Uri fullSizeImageUri() { 108 public Uri thumbUri() {
|
MockImageList.java | 4 import android.net.Uri; 32 public IImage getImageForUri(Uri uri) {
|
/packages/apps/Email/src/com/android/email/mail/ |
Transport.java | 24 import java.net.URI; 36 * Interpretation of URI 56 * Set the Uri for the connection. 58 * @param uri The Uri for the connection 59 * @param defaultPort If the Uri does not include an explicit port, this value will be used. 61 public void setUri(URI uri, int defaultPort); 64 * @return Returns the host part of the Uri 69 * @return Returns the port (either from the Uri or from the default [all...] |
/packages/apps/Gallery/tests/src/com/android/camera/gallery/ |
MockImage.java | 5 import android.net.Uri; 49 public Uri fullSizeImageUri() { 108 public Uri thumbUri() {
|
MockImageList.java | 4 import android.net.Uri; 32 public IImage getImageForUri(Uri uri) {
|
/packages/apps/Mms/src/com/android/mms/ui/ |
SlideViewInterface.java | 21 import android.net.Uri; 33 void setVideo(String name, Uri video); 40 void setAudio(Uri audio, String name, Map<String, ?> extras);
|
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
MockIconLoader.java | 22 import android.net.Uri; 44 public Uri getIconUri(String drawableId) { 48 return new Uri.Builder()
|
/packages/apps/Settings/src/com/android/settings/ |
DefaultRingtonePreference.java | 23 import android.net.Uri; 48 protected void onSaveRingtone(Uri ringtoneUri) { 53 protected Uri onRestoreRingtone() {
|
/libcore/luni/src/main/java/org/apache/xml/serializer/ |
SerializerBase.java | 204 * prefix/uri mappings. As processed elements come and go, so do 229 * the element, such as its namespace URI. 288 // If uri is "" then ignore prefix 289 final String uri = m_prefixMap.lookupNamespace(prefix); local 290 if (uri != null && uri.length() == 0) { 355 * @param uri the URI of the attribute 364 String uri, 374 addAttributeAlways(uri, localName, rawName, type, value, XSLAttribute) 450 final String uri = getNamespaceURI(patchedName, false); local 488 String uri = atts.getURI(i); local 858 String uri = EMPTYSTRING; local 888 String uri = null; local 1369 String uri = null; local 1520 String uri = null; local [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
ContactHeaderWidget.java | 34 import android.net.Uri; 78 protected Uri mContactUri; 261 if (cookie != null && cookie instanceof Uri) { 262 mPhotoView.assignContactUri((Uri) cookie); 270 Uri lookupUri = Contacts.getLookupUri(cursor.getLong(ContactQuery._ID), 277 if (cookie != null && cookie instanceof Uri) { 278 mPhotoView.assignContactUri((Uri) cookie); 371 * Manually set the contact uri 373 public void setContactUri(Uri uri) { [all...] |
/libcore/luni/src/main/java/org/xml/sax/ |
Attributes.java | 37 * give namespace declaration attributes a namespace URI. 96 * Look up an attribute's Namespace URI by index. 99 * @return The Namespace URI, or the empty string if none 180 * @param uri The Namespace URI, or the empty string if 181 * the name has no Namespace URI. 186 public int getIndex (String uri, String localName); 205 * @param uri The Namespace URI, or the empty String if the 206 * name has no Namespace URI [all...] |
/packages/apps/Mms/src/com/android/mms/transaction/ |
RetrieveTransaction.java | 37 import android.net.Uri; 63 private final Uri mUri; 77 TransactionSettings connectionSettings, String uri) 81 if (uri.startsWith("content://")) { 82 mUri = Uri.parse(uri); // The Uri of the M-Notification.ind 96 private String getContentLocation(Context context, Uri uri) 99 uri, PROJECTION, null, null, null) [all...] |
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaThumbRequest.java | 33 import android.net.Uri; 64 Uri mUri; 65 Uri mThumbUri; 87 MediaThumbRequest(ContentResolver cr, String path, Uri uri, int priority, long magic) { 92 mUri = uri; 93 mIsVideo = "video".equals(uri.getPathSegments().get(1)); 94 mOrigId = ContentUris.parseId(uri); 103 String groupIdParam = uri.getQueryParameter("group_id"); 109 Uri updateDatabase(Bitmap thumbnail) [all...] |
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
AttributesImpl.java | 100 * Return an attribute's Namespace URI. 103 * @return The Namespace URI, the empty string if none is 195 * @param uri The attribute's Namespace URI, or the empty 201 public int getIndex (String uri, String localName) 205 if (data[i].equals(uri) && data[i+1].equals(localName)) { 235 * @param uri The Namespace URI, or the empty string for a name 236 * with no explicit Namespace URI. 242 public String getType (String uri, String localName [all...] |
/cts/tests/tests/permission/src/android/permission/cts/ |
AudioPermissionTest.java | 23 import android.net.Uri; 88 void doRemoteMp3(Uri uri) { 91 plyr.setDataSource(mContext, uri); 109 doRemoteMp3(Uri.parse("http://labs.isecpartners.com/chris/noodle.mp3?secret=1234"));
|
/cts/tests/tests/provider/src/android/provider/cts/ |
UserDictionary_WordsTest.java | 26 import android.net.Uri; 38 private ArrayList<Uri> mAddedBackup; 58 mAddedBackup = new ArrayList<Uri>(); 63 for (Uri row : mAddedBackup) { 93 Uri.withAppendedPath(UserDictionary.Words.CONTENT_URI, cursor.getString(ID_INDEX)));
|
/development/samples/BusinessCard/src/com/example/android/businesscard/ |
ContactAccessorSdk3_4.java | 23 import android.net.Uri; 44 * Returns a Pick Contact intent using the pre-Eclair "people" URI. 55 public ContactInfo loadContact(ContentResolver contentResolver, Uri contactUri) { 67 Uri phoneUri = Uri.withAppendedPath(contactUri, Phones.CONTENT_DIRECTORY);
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
RequestLine.java | 31 import javax.sip.address.URI; 48 /** uri field. Note that this can be a SIP URI or a generic URI 49 * like tel URI. 51 protected GenericURI uri; field in class:RequestLine 81 if (uri != null) { 82 uri.encode(buffer); 94 return uri; 97 /** Constructor given the request URI and the method [all...] |
/external/srec/config/en.us/grammars/ |
bothtags5.grxml | 12 <item><ruleref uri="#Phone"/> 15 <item><ruleref uri="#Find"/> 18 <item><ruleref uri="#OtherCommands"/> 45 <ruleref uri="#Names"/> 60 <ruleref uri="#Names"/>
|
homonym_test1.grxml | 11 <item><ruleref uri="#Phone"/> 14 <item><ruleref uri="#Find"/> 17 <item><ruleref uri="#OtherCommands"/> 49 <ruleref uri="#Names"/> 64 <ruleref uri="#Names"/>
|
homonym_test2.grxml | 11 <item><ruleref uri="#Phone"/> 14 <item><ruleref uri="#Find"/> 17 <item><ruleref uri="#OtherCommands"/> 53 <ruleref uri="#Names"/> 68 <ruleref uri="#Names"/>
|
/frameworks/base/docs/html/guide/topics/providers/ |
content-providers.jd | 13 <li><a href="#urisum">Content URI summary</a></li> 158 <h3><a name="uri"></a>URIs</h3> 161 Each content provider exposes a public URI (wrapped as a {@link android.net.Uri} 163 multiple data sets (multiple tables) exposes a separate URI for each one. All 170 constant for its URI, to simplify client code and make future updates cleaner. 172 with the platform. For example, the URI for the table that matches 173 phone numbers to people and the URI for the table that holds pictures of 183 The URI constant is used in all interactions with the content provider. 184 Every {@link android.content.ContentResolver} method takes the URI [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppManager.java | 44 import android.net.Uri; 78 private ArrayList<Uri> mUrisOfSendingFiles; 160 mUrisOfSendingFiles = new ArrayList<Uri>(); 164 mUrisOfSendingFiles.add(Uri.parse(splitUri[i])); 165 if (V) Log.v(TAG, "Uri in batch: " + Uri.parse(splitUri[i])); 184 Uri uriContent = mUrisOfSendingFiles.get(i); 204 public void saveSendingFileInfo(String mimeType, String uri) { 208 mUriOfSendingFile = uri; 213 public void saveSendingFileInfo(String mimeType, ArrayList<Uri> uris) [all...] |