HomeSort by relevance Sort by last modified time
    Searched full:uris (Results 51 - 75 of 487) sorted by null

1 23 4 5 6 7 8 91011>>

  /development/samples/training/threadsample/src/com/example/android/threadsample/
DataProvider.java 76 // Defines a helper object that matches content URIs to table-specific parameters
84 * - UriMatcher that maps content URIs to codes
89 // Creates an object that associates content URIs with numeric codes
93 * Sets up an array that maps content URIs to MIME types, via a mapping between the
94 * URIs and an integer code. These are custom MIME types that apply to tables and rows
99 // Adds a URI "match" entry that maps picture URL content URIs to a numeric code
105 // Adds a URI "match" entry that maps modification date content URIs to a numeric code
  /frameworks/base/docs/html/guide/topics/providers/
content-provider-creating.jd 13 <a href="#ContentURI">Designing Content URIs</a>
176 Define the provider's authority string, its content URIs, and column names. If you want
181 information about content URIs, see the
182 section <a href="#ContentURI">Designing Content URIs</a>.
270 <!-- Designing Content URIs -->
271 <h2 id="ContentURI">Designing Content URIs</h2>
273 A <strong>content URI</strong> is a URI that identifies data in a provider. Content URIs include
281 The basics of content URIs are described in the topic
297 Developers usually create content URIs from the authority by appending paths that point to
300 content URIs
    [all...]
  /external/chromium-trace/trace-viewer/third_party/webapp2/docs/guide/
routing.rst 11 webapp2 offers a powerful and extensible system to match and build URIs,
74 hardcoded URIs in the app code and templates. If you change the route
79 matched URIs. This is easier to use and also more maintanable than positional
101 :ref:`build a URI <guide.routing.building-uris>` for that route.
205 if needed. This is useful if some URIs must be accessed using 'http' or 'https'
332 .. _guide.routing.building-uris:
334 Building URIs
337 URIs whenever we need to reference those resources inside the application.
351 Here are some examples of how to generate URIs for them::
386 explanation of the parameters used to build URIs
    [all...]
app.rst 59 The router object is responsible for everything related to mapping URIs to
62 - Stores registered "routes", which map URIs to the application handlers
69 - Builds URIs for the registered routes.
79 The router has several methods to override how URIs are matched or built or how
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLauncherActivity.java 152 final ArrayList<Uri> uris = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM); local
153 if (mimeType != null && uris != null) {
154 if (V) Log.v(TAG, "Get ACTION_SHARE_MULTIPLE intent: uris " + uris + "\n Type= "
159 .saveSendingFileInfo(mimeType,uris, false);
169 Log.e(TAG, "type is null; or sending files URIs are null");
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
ContactLoaderTest.java 109 // Use content Uris that only contain the ID
133 // Use content Uris that only contain the ID but use the format used in Donut
161 // Use content Uris that only contain the ID but use the format used in Donut
188 // Use lookup-style Uris that do not contain the Contact-ID
212 // Use lookup-style Uris that also contain the Contact-ID
236 // Use lookup-style Uris that contain incorrect Contact-ID
  /cts/hostsidetests/devicepolicy/app/IntentSender/src/com/android/cts/intent/sender/
ContentTest.java 177 // The uris created here are not associated with any data. But this does not prevent us from
178 // granting these uris to other apps, or these apps from trying to access these uris.
  /developers/build/prebuilts/gradle/StorageClient/Application/src/main/java/com/example/android/storageclient/
StorageClientFragment.java 189 protected Bitmap doInBackground(Uri... uris) {
190 dumpImageMetaData(uris[0]);
191 return getBitmapFromUri(uris[0]);
  /developers/samples/android/content/documentsUi/StorageClient/Application/src/main/java/com/example/android/storageclient/
StorageClientFragment.java 189 protected Bitmap doInBackground(Uri... uris) {
190 dumpImageMetaData(uris[0]);
191 return getBitmapFromUri(uris[0]);
  /development/samples/browseable/StorageClient/src/com.example.android.storageclient/
StorageClientFragment.java 189 protected Bitmap doInBackground(Uri... uris) {
190 dumpImageMetaData(uris[0]);
191 return getBitmapFromUri(uris[0]);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
SystemIDResolver.java 30 * This class is used to resolve relative URIs and SystemID
31 * strings into absolute URIs.
33 * <p>This is a generic utility for resolving URIs, other than the
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SystemIDResolver.java 30 * This class is used to resolve relative URIs and SystemID
31 * strings into absolute URIs.
33 * <p>This is a generic utility for resolving URIs, other than the
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SecureConversationViewFragment.java 215 final HashSet<Uri> uris = new HashSet<Uri>(); local
216 uris.add(message.uri);
217 activity.getConversationUpdater().markConversationMessagesUnread(mConversation, uris,
  /external/chromium-trace/trace-viewer/third_party/webapp2/
TODO 42 Issues: #444 (routing based on hostnames), #843 (limitations to build URIs),
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
LocalUriFetcher.java 27 * Opens an input stream for a uri pointing to a local asset. Only certain uris are supported
  /frameworks/base/docs/html/tools/testing/
contentprovider_testing.jd 176 Test all the URIs offered by your provider. Your provider may offer several URIs,
184 Test invalid URIs: Your unit tests should deliberately call the provider with an
186 IllegalArgumentException for invalid URIs.
  /frameworks/base/docs/html/training/beam-files/
index.jd 39 URIs or other small messages. In addition, Android Beam is only one of the features available
  /libcore/luni/src/main/java/javax/xml/transform/sax/
TemplatesHandler.java 48 * resolve relative URIs in the stylesheet. This must be
  /libcore/luni/src/main/java/org/w3c/dom/
EntityReference.java 31 * URIs. When an <code>EntityReference</code> node represents a reference to
  /packages/apps/Contacts/src/com/android/contacts/
GroupMetaDataLoader.java 61 // TODO: Fix ContactsProvider2 getType method to resolve the group Uris
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
UriUtils.java 23 * Utility methods for dealing with URIs.
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ImportVCardActivity.java 213 // Uris given from caller applications may not be opened twice: consider when
390 * app local storage, as we cannot guarantee other types of Uris can be read
483 private void importVCard(final Uri[] uris) {
488 mVCardCacheThread = new VCardCacheThread(uris);
554 final ArrayList<Uri> uris = new ArrayList<>(); local
559 uris.add(uri);
562 if (uris.isEmpty()) {
566 Log.i(LOG_TAG, "Multiple vCards selected for import: " + uris);
567 importVCard(uris.toArray(new Uri[0]));
  /packages/apps/Gallery/src/com/android/camera/
DeleteImage.java 51 mUriList = intent.getParcelableArrayListExtra("delete-uris");
  /packages/apps/Nfc/src/com/android/nfc/
P2pLinkManager.java 340 if (shareData.uris != null) {
341 mUrisToSend = shareData.uris;
459 mUrisToSend = shareData.uris;
745 int doHandover(Uri[] uris, UserHandle userHandle) throws IOException {
773 mHandoverDataParser.getOutgoingHandoverData(response), uris, userHandle)) {
792 Uri[] uris; local
801 uris = mUrisToSend;
810 if (uris != null) {
813 int handoverResult = doHandover(uris, userHandle);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/drawer/
FolderDrawerItem.java 63 // True if folder types and URIs are the same

Completed in 983 milliseconds

1 23 4 5 6 7 8 91011>>