/development/samples/NotePad/src/com/example/android/notepad/ |
NotePad.java | 26 * URIs. A well-written client depends only on the constants in the contract. 58 * Path parts for the URIs 95 * incoming URIs or to construct an Intent.
|
/development/samples/browseable/BeamLargeFiles/src/com.example.android.beamlargefiles/ |
BeamLargeFilesFragment.java | 81 * content:// or file:// URIs to send. 83 * Note that the system must have read access to whatever URIs are provided here. 86 * @return URIs to be sent to remote device
|
/frameworks/base/core/java/android/view/ |
DragAndDropPermissions.java | 29 * {@link DragAndDropPermissions} controls the access permissions for the content URIs associated 61 * content URIs associated with {@link DragEvent}. 63 * @return {@link DragAndDropPermissions} object or null if there are no content URIs associated
|
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
JarScanner.java | 77 * @param uris 81 public void scan (Pattern pattern, URI[] uris, boolean isNullInclusive) 84 super.match(pattern, uris, isNullInclusive); 129 URI[] uris = new URI[urls.length]; local 132 uris[i++] = u.toURI(); 133 scan (pattern, uris, isNullInclusive);
|
/packages/apps/Nfc/src/com/android/nfc/ |
BeamShareActivity.java | 186 final ArrayList<Uri> uris = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM); local 190 if (uris != null && uris.size() > 0) { 191 for (Uri uri : uris) { 209 // Uris have our first preference for sharing 226 // No uris left
|
/development/samples/training/threadsample/src/com/example/android/threadsample/ |
DataProviderContract.java | 9 * contract assists in accessing the provider's available content URIs, column names, MIME types, 16 // The URI scheme used for content URIs
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/file/ |
README | 1 Handling of file:// URIs: 17 relative file:// URIs, respectively) and object = remainder of path.
|
connection.py | 22 # File representation of connection, for use with "file://" URIs.
|
/external/nist-sip/java/gov/nist/javax/sip/header/ims/ |
PCalledPartyIDHeader.java | 44 * so both URIs can receive invitations to new sessions. When the user receives an invitation 45 * to join a session, he/she should be aware of which of the several registered SIP URIs this
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
FilesActivity.java | 94 // -- a launch URI: Launch URIs support sensible activity management, 96 // -- a fake Uri from notifications. These URIs have no authority (TODO: details). 435 void onTaskFinished(Uri... uris) { 436 if (DEBUG) Log.d(TAG, "onFinished() " + Arrays.toString(uris)); 439 if (uris.length == 1) { 440 intent.setData(uris[0]); 441 } else if (uris.length > 1) { 443 null, mState.acceptMimes, new ClipData.Item(uris[0])); 444 for (int i = 1; i < uris.length; i++) { 445 clipData.addItem(new ClipData.Item(uris[i])) [all...] |
DocumentsActivity.java | 344 final Uri[] uris = new Uri[size]; local 346 uris[i] = docs.get(i).derivedUri; 348 new ExistingFinishTask(this, uris) 391 void onTaskFinished(Uri... uris) { 392 if (DEBUG) Log.d(TAG, "onFinished() " + Arrays.toString(uris)); 395 if (uris.length == 1) { 396 intent.setData(uris[0]); 397 } else if (uris.length > 1) { 399 null, mState.acceptMimes, new ClipData.Item(uris[0])); 400 for (int i = 1; i < uris.length; i++) [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/load/model/ |
AssetUriParser.java | 7 * A utility class for parsing Asset uris that look like: file:///android_asset/some/path/in/assets/folder.
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/ |
MediaStoreStreamLoader.java | 13 * An {@link com.bumptech.glide.load.model.ModelLoader} that can use media store uris to open pre-generated thumbnails
|
StreamFileLoader.java | 16 * A {@link ModelLoader} For translating {@link File} models for local uris into {@link InputStream} data.
|
StreamResourceLoader.java | 15 * A {@link ModelLoader} For translating android resource id models for local uris into {@link InputStream} data.
|
/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/ |
ConversationCursorTests.java | 144 // String[] uris = new String[cc.getCount()]; 147 // uris[i++] = cc.getString(URI_INDEX); 151 // String uriString = uris[0]; 157 // cp.deleteLocal(Uri.parse(uris[4]));
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ProfileAwareUriMatcher.java | 31 * A subclass of URI matcher with additional logic and awareness around profile-specific URIs. 43 // URIs matching to these constants must always use the profile database. 46 // URIs in this map will direct to the profile database if the ID (which is at the segment 50 // URIs in this map will direct to the profile database if the lookup key (which is at the
|
/frameworks/base/docs/html/training/app-indexing/ |
deep-linking.jd | 40 <p>You can add additional attributes to further refine the type of URI that the activity accepts. For example, you might have multiple activities that accept similar URIs, but which differ simply based on the path name. In this case, use the <a href="{@docRoot}guide/topics/manifest/data-element.html#path">{@code android:path}</a> attribute or its variants ({@code pathPattern} or {@code pathPrefix}) to differentiate which activity the system should open for different URI paths.</p></dd> 53 in your manifest for deep linking. The URIs {@code ?example://gizmos?} and 64 <!-- Accepts URIs that begin with "http://www.example.com/gizmos? --> 69 <!-- Accepts URIs that begin with "example://gizmos? --> 77 <p>Once you've added intent filters with URIs for activity content to your app 79 that has matching URIs to your app at runtime.</p> 127 URIs you specified for deep linking resolve to the correct app activity. You
|
/packages/apps/Nfc/src/com/android/nfc/beam/ |
BeamTransferManager.java | 62 * The corresponding URIs will be grouped in a single folder. 131 ArrayList<Uri> mUris; // Received uris from transport 133 Uri[] mOutgoingUris; // URIs to send 136 HashMap<String, Uri> mMediaUris; // URIs found by the media scanner for each path 152 mTotalCount = (pendingTransfer.uris != null) ? pendingTransfer.uris.length : 0; 156 mUris = pendingTransfer.uris == null 158 : new ArrayList<Uri>(Arrays.asList(pendingTransfer.uris)); 167 mOutgoingUris = pendingTransfer.uris; 383 Log.e(TAG, "Media storage not valid or no uris received.") [all...] |
/frameworks/base/docs/html/training/beam-files/ |
send-files.jd | 32 storage, test to ensure your device supports NFC, and provide URIs to Android Beam file 54 is unable to handle content URIs generated by 200 these URIs to the receiving device. 211 // List of URIs to provide to Android Beam 223 * Create content URIs as needed to share with another device 252 * URIs 265 this approach if you can define the URIs to transfer before the NFC touch event occurs. 279 * Create a list of URIs, get a File, 287 // Get a URI for the File and add it to the list of URIs
|
/frameworks/base/docs/html/training/secure-file-sharing/ |
setup-sharing.jd | 28 {@link android.support.v4.content.FileProvider} component generates content URIs for 44 your manifest. This entry specifies the authority to use in generating content URIs, as well as 74 that you want to use for content URIs generated by the 82 >Content URIs</a> and the documentation for the 113 <code>myimages</code> to content URIs for files in the <code>files/images/</code> subdirectory. 129 that generates content URIs for files in the <code>files/</code> directory of your app's
|
index.jd | 38 Content URIs with temporary URI access permissions are secure because they apply only to the 51 This class explains how to securely share files from your app to another app using content URIs
|
/development/samples/BusinessCard/src/com/example/android/businesscard/ |
BusinessCardActivity.java | 102 protected ContactInfo doInBackground(Uri... uris) { 103 return mContactAccessor.loadContact(getContentResolver(), uris[0]);
|
/external/guice/extensions/servlet/src/com/google/inject/servlet/ |
UriPatternType.java | 50 * Matches URIs using the pattern grammar of the Servlet API and web.xml. 113 * Matches URIs using a regular expression.
|
/external/webrtc/webrtc/tools/rtcbot/ |
test.js | 76 // Ask computeengineondemand to give us TURN server credentials and URIs. 89 'urls': response.uris
|