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

1 23 4 5 6 7 8 91011>>

  /frameworks/base/telephony/java/com/android/ims/internal/
IImsRegistrationListener.aidl 107 * Notifies the application when the list of URIs associated with IMS client is updated.
109 void registrationAssociatedUriChanged(in Uri[] uris);
  /packages/apps/Nfc/src/com/android/nfc/beam/
BeamManager.java 94 Uri[] uris, UserHandle userHandle) {
105 uris);
BluetoothOppHandover.java 59 public BluetoothOppHandover(Context context, BluetoothDevice device, ArrayList<Uri> uris,
63 mUris = uris;
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathFactory.java 42 * to namespace URIs.
  /external/autotest/client/site_tests/firmware_TouchMTB/public/
.chromeos.gestures.untrusted.write.boto 16 # Google OAuth2 credentials (for "gs://" URIs):
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/file_descriptor/
FileDescriptorUriLoader.java 18 * A {@link ModelLoader} For translating {@link Uri} models for local uris into {@link ParcelFileDescriptor} data.
  /external/jetty/src/resources/org/eclipse/jetty/server/handler/jmx/
ContextHandler-mbean.properties 24 welcomeFiles: Partial URIs of directory welcome files
  /frameworks/base/core/java/android/os/
FileUriExposedException.java 31 * Instead, apps should use {@code content://} Uris so the platform can extend
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsConnectionStateListener.java 83 public void registrationAssociatedUriChanged(Uri[] uris) {
  /libcore/luni/src/main/java/javax/xml/transform/
Source.java 34 * relative URIs and to include in error messages and warnings.</p>
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
IconLoader.java 40 * All resources and URIs are read using the suggestion provider's context.
  /external/autotest/site_utils/autoupdate/
test_image.py 69 """Returns a list of URIs that match a given pattern.
75 @return A list of URIs (possibly an empty list).
105 @return A (possibly empty) list of URIs, or a single (possibly None) URI if
  /external/jetty/src/java/org/eclipse/jetty/webapp/
MetaInfConfiguration.java 78 URI[] uris = new URI[jars.size()]; local
82 uris[i++] = r.getURI();
84 scanner.scan(null, uris, true);
  /frameworks/wilhelm/tests/sandbox/
multithread.c 102 //const char * const uris[4] = {"wav/frog.wav", "wav/bach.wav", "wav/8days.wav", "wav/help16.wav"};
103 const char * const uris[4] = {"wav/frog.wav", "wav/frog.wav", "wav/frog.wav", "wav/frog.wav"}; variable
147 ta->mURI = (SLchar *) uris[(r >> 1) & 3];
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ImportVCardActivity.java 223 // Uris given from caller applications may not be opened twice: consider when
299 * app local storage, as we cannot guarantee other types of Uris can be read
392 private void importVCard(final Uri[] uris, final String[] sourceDisplayNames) {
397 mVCardCacheThread = new VCardCacheThread(uris, sourceDisplayNames);
544 // Reading uris from non-storage needs the permission granted from the source intent,
546 // permissions from RequestImportVCardPermissionActivity for uris from non-storage source.
637 final ArrayList<Uri> uris = new ArrayList<>(); local
646 uris.add(localUri);
651 if (uris.isEmpty()) {
655 Log.i(LOG_TAG, "Multiple vCards selected for import: " + uris);
    [all...]
  /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/topic/performance/
background-optimization.jd 237 callback even if it reports a change in only one of the content URIs.
292 and URIs triggered the job:
301 Returns an array of URIs that have triggered the job. This will be {@code
302 null} if either no URIs have triggered the job (for example, the job was
304 URIs is greater than 50.
314 to retrieve the details of which URIs have changed.
321 records the content authorities and URIs that have triggered the job:
  /frameworks/base/docs/html-intl/intl/pt-br/guide/topics/providers/
content-provider-creating.jd 13 <a href="#ContentURI">Projeto de URIs de conteúdo</a>
175 Defina a string de autoridade do provedor, suas URIs de conteúdo e seus nomes de coluna. Se você deseja que
180 obter mais informações sobre URIs de conteúdo, consulte
181 a seção <a href="#ContentURI">Projeto de URIs de conteúdo</a>.
269 <!-- Designing Content URIs -->
270 <h2 id="ContentURI">Projeto de URIs de conteúdo</h2>
272 <strong>URI de conteúdo</strong> é uma URI que identifica dados em um provedor. URIs de conteúdo
280 Os conceitos básicos de URIs de conteúdo são escritos no tópico
296 Desenvolvedores normalmente criam URIs de conteúdo a partir da autoridade anexando caminhos que apontam para
299 as URIs de conteúd
    [all...]
  /frameworks/base/services/core/java/com/android/server/job/controllers/
ContentObserverController.java 43 * Controller for monitoring changes to content URIs through a ContentObserver.
50 * Maximum number of changing URIs we will batch together to report.
110 // If we have previously reported changed authorities/uris, then we failed
276 final JobInfo.TriggerContentUri[] uris = jobStatus.getJob().getTriggerContentUris(); local
284 if (uris != null) {
285 for (JobInfo.TriggerContentUri uri : uris) {
445 pw.println(" Changed URIs:");
  /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/catapult/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...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/addlhelp/
versions.py 45 To work with object versioning in gsutil, you can use a flavor of storage URIs
47 URIs. For example, the version-less object URI:
51 might have have two versions, with these version-specific URIs:
91 If you specify version-less URIs with gsutil, you will operate on the
112 Note that version-specific URIs cannot be the target of the gsutil cp
119 the version-specific URIs to the version-less URI, for example:
  /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 115 // Use content Uris that only contain the ID
139 // Use content Uris that only contain the ID but use the format used in Donut
171 // Use content Uris that only contain the ID but use the format used in Donut
198 // Use lookup-style Uris that do not contain the Contact-ID
222 // Use lookup-style Uris that also contain the Contact-ID
246 // 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.

Completed in 1094 milliseconds

1 23 4 5 6 7 8 91011>>