HomeSort by relevance Sort by last modified time
    Searched full:intents (Results 151 - 175 of 916) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
ReceiverActivity.java 31 * Invisible activity to receive intents.
  /packages/apps/Messaging/src/com/android/messaging/receiver/
AbortMmsWapPushReceiver.java 34 if (Telephony.Sms.Intents.WAP_PUSH_RECEIVED_ACTION.equals(intent.getAction())
MmsWapPushReceiver.java 37 if (Telephony.Sms.Intents.WAP_PUSH_RECEIVED_ACTION.equals(intent.getAction())
NotificationReceiver.java 28 // NotificationReceiver is used to handle delete intents from notifications. When a user
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
ActionServiceTest.java 101 final ArrayList<Intent> intents = mContext.extractIntents(); local
102 assertNotNull(intents);
103 assertEquals("Expect to see 1 server request queued", 1, intents.size());
104 final Intent intent = intents.get(0);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDiscoveryReceiver.java 33 * <p>Note that the discovery start/finish intents are also handled
  /external/pdfium/third_party/lcms2-2.6/src/
cmssamp.c 49 cmsUInt32Number Intents[4];
52 Intents[0] = INTENT_RELATIVE_COLORIMETRIC; Intents[1] = nIntent; Intents[2] = INTENT_RELATIVE_COLORIMETRIC; Intents[3] = INTENT_RELATIVE_COLORIMETRIC;
54 xform = cmsCreateExtendedTransform(ContextID, 4, hProfiles, BPC, Intents,
212 // v4 + perceptual & saturation intents does have its own black point, and it is
217 // Matrix shaper share MRC & perceptual intents
221 // Get Perceptual black out of v4 profiles. That is fixed for perceptual & saturation intents
400 // v4 + perceptual & saturation intents does have its own black point, and it i
    [all...]
cmsxform.c 804 cmsUInt32Number Intents[],
816 cmsUInt32Number LastIntent = Intents[nProfiles-1];
851 Lut = _cmsLinkProfiles(ContextID, nProfiles, Intents, hProfiles, BPC, AdaptationStates, dwFlags);
875 xform ->RenderingIntent = Intents[nProfiles-1];
885 BPC, Intents,
    [all...]
cmsgmt.c 36 const cmsUInt32Number Intents[],
64 IntentList[i] = Intents[i];
95 const cmsUInt32Number Intents[],
108 xform = _cmsChain2Lab(ContextID, nProfiles, TYPE_CMYK_FLT, TYPE_Lab_DBL, Intents, hProfiles, BPC, AdaptationStates, dwFlags);
142 const cmsUInt32Number Intents[],
160 in = ComputeKToLstar(ContextID, nPoints, nProfiles - 1, Intents, hProfiles, BPC, AdaptationStates, dwFlags);
164 Intents + (nProfiles - 1),
285 // of course, many perceptual and saturation intents does not work in such way, but relativ. ones should.
290 cmsUInt32Number Intents[],
338 IntentList[i] = Intents[i]
    [all...]
  /frameworks/base/docs/html/training/notify-user/
expanded.jd 27 <a href="{@docRoot}guide/components/intents-filters.html">
28 Intents and Intent Filters
139 their associated pending intents) that will appear in the notification's
  /frameworks/base/test-runner/src/android/test/
IsolatedContext.java 67 /** Returns the list of intents that were broadcast since the last call to this method. */
69 List<Intent> intents = mBroadcastIntents; local
71 return intents;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsStorageMonitor.java 27 import android.provider.Telephony.Sms.Intents;
84 // Register for device storage intents. Use these to notify the RIL
145 Intent intent = new Intent(Intents.SIM_FULL_ACTION);
SmsApplication.java 39 import android.provider.Telephony.Sms.Intents;
120 * Returns true if this SmsApplicationData is complete (all intents handled).
203 Intent intent = new Intent(Intents.SMS_DELIVER_ACTION);
229 intent = new Intent(Intents.WAP_PUSH_DELIVER_ACTION);
286 intent = new Intent(Telephony.Sms.Intents.ACTION_DEFAULT_SMS_PACKAGE_CHANGED);
311 intent = new Intent(Telephony.Sms.Intents.ACTION_EXTERNAL_PROVIDER_CHANGE);
335 // Remove any entries for which we did not find all required intents.
547 // Configure this as the preferred activity for SENDTO sms/mms intents
576 new Intent(Telephony.Sms.Intents.ACTION_DEFAULT_SMS_PACKAGE_CHANGED);
580 oldAppIntent.putExtra(Telephony.Sms.Intents.EXTRA_IS_DEFAULT_SMS_APP, false)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaServiceCategoryProgramHandler.java 27 import android.provider.Telephony.Sms.Intents;
105 Intent intent = new Intent(Intents.SMS_SERVICE_CATEGORY_PROGRAM_DATA_RECEIVED_ACTION);
129 if ((resultCode != Activity.RESULT_OK) && (resultCode != Intents.RESULT_SMS_HANDLED)) {
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiver.java 84 } else if (Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION.equals(action) ||
85 Telephony.Sms.Intents.SMS_CB_RECEIVED_ACTION.equals(action)) {
96 } else if (Telephony.Sms.Intents.SMS_SERVICE_CATEGORY_PROGRAM_DATA_RECEIVED_ACTION
  /frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
PhotoViewFragment.java 40 import com.android.ex.photo.Intents;
197 Intents.EXTRA_DISPLAY_THUMBS_FULLSCREEN, false);
211 mResolvedPhotoUri = mIntent.getStringExtra(Intents.EXTRA_RESOLVED_PHOTO_URI);
212 mThumbnailUri = mIntent.getStringExtra(Intents.EXTRA_THUMBNAIL_URI);
213 mContentDescription = mIntent.getStringExtra(Intents.EXTRA_CONTENT_DESCRIPTION);
214 mWatchNetworkState = mIntent.getBooleanExtra(Intents.EXTRA_WATCH_NETWORK, false);
228 mPhotoView.setMaxInitialScale(mIntent.getFloatExtra(Intents.EXTRA_MAX_INITIAL_SCALE, 1));
  /frameworks/base/core/java/android/provider/
Contacts.java     [all...]
  /frameworks/base/docs/html/guide/components/
intents-filters.jd 1 page.title=Intents and Intent Filters
36 <li><a href="{@docRoot}training/basics/intents/index.html">Interacting with Other Apps</a></li>
48 Although intents facilitate communication between components in several ways, there are three
94 <p>There are two types of intents:</p>
97 <li><b>Explicit intents</b> specify the component to start by name (the
103 <li><b>Implicit intents</b> do not name a specific component, but instead declare a general action
132 specifies the type of intents that the component
193 <p>You can specify your own actions for use by intents within your app (or for use by other
255 placed in an intent, but most intents do not require a category.
301 for standardized data types. If you need to declare your own extra keys (for intents tha
    [all...]
fundamentals.jd 197 Intents bind individual components to each other at runtime (you can think of them
218 <p>The other component type, content provider, is not activated by intents. Rather, it is
243 <p>For more information about using intents, see the <a
244 href="{@docRoot}guide/components/intents-filters.html">Intents and
338 the real power of intents lies in the concept of <em>implicit intents</em>. An implicit intent
349 intent filters that declare the capabilities of the activity so it can respond to intents
355 declare an intent filter to respond to "send" intents (in order to send a new email) like this:</p>
377 href="{@docRoot}guide/components/intents-filters.html">Intents and Intent Filters</a> document
    [all...]
  /packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/tests/
SendTestMessages.java 24 import android.provider.Telephony.Sms.Intents;
431 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
439 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
447 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
455 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
463 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
474 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
482 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
490 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
499 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION)
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
SmsFacade.java 50 import android.provider.Telephony.Sms.Intents;
241 new IntentFilter(Intents.SMS_RECEIVED_ACTION));
266 IntentFilter mmsReceived = new IntentFilter(Intents.MMS_DOWNLOADED_ACTION);
267 mmsReceived.addAction(Intents.WAP_PUSH_RECEIVED_ACTION);
268 mmsReceived.addAction(Intents.DATA_SMS_RECEIVED_ACTION);
529 if (Intents.SMS_RECEIVED_ACTION.equals(action)) {
536 SmsMessage[] msgs = Intents.getMessagesFromIntent(intent);
584 if (Intents.MMS_DOWNLOADED_ACTION.equals(action)) {
588 else if (Intents.WAP_PUSH_RECEIVED_ACTION.equals(action)) {
592 else if (Intents.DATA_SMS_RECEIVED_ACTION.equals(action))
    [all...]
  /frameworks/base/packages/Keyguard/res/values-ca/
strings.xml 77 <string name="kg_invalid_puk" msgid="3638289409676051243">"Torna a introduir el codi PUK correcte. Els intents repetits faran que es desactivi la SIM de manera permanent."</string>
79 <string name="kg_login_too_many_attempts" msgid="6486842094005698475">"Massa intents incorrectes"</string>
83 <string name="kg_failed_attempts_almost_at_wipe" product="tablet" msgid="8774056606869646621">"Has provat de desbloquejar la tauleta incorrectament <xliff:g id="NUMBER_0">%1$d</xliff:g> vegades. Et queden <xliff:g id="NUMBER_1">%2$d</xliff:g> intents més. Si no ho fas bé, la tauleta es restablirà i se n\'esborraran totes les dades."</string>
84 <string name="kg_failed_attempts_almost_at_wipe" product="default" msgid="1843331751334128428">"Has provat de desbloquejar el telèfon incorrectament <xliff:g id="NUMBER_0">%1$d</xliff:g> vegades. Et queden <xliff:g id="NUMBER_1">%2$d</xliff:g> intents més. Si no ho fas bé, el telèfon es restablirà i se n\'esborraran totes les dades."</string>
87 <string name="kg_failed_attempts_almost_at_erase_user" product="tablet" msgid="6159955099372112688">"Has provat de desbloquejar la tauleta incorrectament <xliff:g id="NUMBER_0">%1$d</xliff:g> vegades. Et queden <xliff:g id="NUMBER_1">%2$d</xliff:g> intents més. Si no ho fas bé, l\'usuari se suprimirà, juntament amb totes les seves dades."</string>
88 <string name="kg_failed_attempts_almost_at_erase_user" product="default" msgid="6945823186629369880">"Has provat de desbloquejar el telèfon incorrectament <xliff:g id="NUMBER_0">%1$d</xliff:g> vegades. Et queden <xliff:g id="NUMBER_1">%2$d</xliff:g> intents més. Si no ho fas bé, l\'usuari se suprimirà, juntament amb totes les seves dades."</string>
91 <string name="kg_failed_attempts_almost_at_erase_profile" product="tablet" msgid="4621778507387853694">"Has provat de desbloquejar la tauleta incorrectament <xliff:g id="NUMBER_0">%1$d</xliff:g> vegades. Et queden <xliff:g id="NUMBER_1">%2$d</xliff:g> intents més. Si no ho fas bé, el perfil professional se suprimirà, juntament amb totes les dades que contingui."</string>
92 <string name="kg_failed_attempts_almost_at_erase_profile" product="default" msgid="6853071165802933545">"Has provat de desbloquejar el telèfon incorrectament <xliff:g id="NUMBER_0">%1$d</xliff:g> vegades. Et queden <xliff:g id="NUMBER_1">%2$d</xliff:g> intents més. Si no ho fas bé, el perfil professional se suprimirà, juntament amb totes les dades que contingui."</string>
99 <item quantity="other">El codi PIN de la SIM no és correcte. Et queden <xliff:g id="NUMBER_1">%d</xliff:g> intents.</item>
104 <item quantity="other">El codi PUK de la SIM no és correcte. Et queden <xliff:g id="NUMBER_1">%d</xliff:g> intents; si no l\'encertes, la SIM no es podrà tornar a fer servir.</item
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewController.java 245 if (intent.hasExtra(Intents.EXTRA_PHOTOS_URI)) {
246 mPhotosUri = intent.getStringExtra(Intents.EXTRA_PHOTOS_URI);
250 Intents.EXTRA_ENABLE_TIMER_LIGHTS_OUT, true);
252 if (intent.getBooleanExtra(Intents.EXTRA_SCALE_UP_ANIMATION, false)) {
254 mAnimationStartX = intent.getIntExtra(Intents.EXTRA_ANIMATION_START_X, 0);
255 mAnimationStartY = intent.getIntExtra(Intents.EXTRA_ANIMATION_START_Y, 0);
256 mAnimationStartWidth = intent.getIntExtra(Intents.EXTRA_ANIMATION_START_WIDTH, 0);
257 mAnimationStartHeight = intent.getIntExtra(Intents.EXTRA_ANIMATION_START_HEIGHT, 0);
260 Intents.EXTRA_ACTION_BAR_HIDDEN_INITIALLY, false)
263 Intents.EXTRA_DISPLAY_THUMBS_FULLSCREEN, false)
    [all...]
  /frameworks/base/core/java/android/content/
ContextWrapper.java 388 public void startActivities(Intent[] intents) {
389 mBase.startActivities(intents);
393 public void startActivities(Intent[] intents, Bundle options) {
394 mBase.startActivities(intents, options);
399 public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) {
400 mBase.startActivitiesAsUser(intents, options, userHandle);
  /frameworks/base/docs/html/reference/android/support/test/espresso/intent/
ResettingStubber.html 289 <p>A sneaky singleton object used to respond to intents with fake responses.
290 This interface is not meant for public consumption. Test authors should use <code><a href="/reference/android/support/test/espresso/intent/Intents.html">Intents</a></code>
557 <p>Marks this spy as initialized. Once initialized, ResettingStubber begins recording intents
686 <li class="api apilevel-"><a href="/reference/android/support/test/espresso/intent/Intents.html">Intents</a></li>

Completed in 1348 milliseconds

1 2 3 4 5 67 8 91011>>