HomeSort by relevance Sort by last modified time
    Searched defs:extras (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/fonttools/Lib/fontTools/ttLib/tables/
T_S_I__3.py 7 extras = {0xfffa: "reserved0", 0xfffb: "reserved1", 0xfffc: "reserved2", 0xfffd: "reserved3"} variable in class:table_T_S_I__3
T_S_I__1.py 7 extras = {0xfffa: "ppgm", 0xfffb: "cvt", 0xfffc: "reserved", 0xfffd: "fpgm"} variable in class:table_T_S_I__1
30 if self.extras[extraCode] == "fpgm": # this is the last one
37 self.extraPrograms[self.extras[extraCode]] = text
63 codes = sorted(self.extras.items())
  /external/chromium_org/build/android/pylib/device/
intent.py 14 category=None, component=None, data=None, extras=None,
25 extras: A dict containing extra parameters to be passed along with the
39 self._extras = extras
69 def extras(self): member in class:Intent
  /cts/tests/tests/graphics/src/android/opengl/cts/
CompressedTextureTest.java 31 Bundle extras = new Bundle(); local
32 extras.putString("TextureFormat", format);
34 CompressedTextureCtsActivity.class, extras);
EglConfigTest.java 60 Bundle extras = new Bundle(); local
61 extras.putInt(EglConfigCtsActivity.CONFIG_ID_EXTRA, configId);
62 extras.putInt(EglConfigCtsActivity.CONTEXT_CLIENT_VERSION_EXTRA, contextClientVersion);
64 EglConfigCtsActivity.class, extras);
CompressedTextureCtsActivity.java 42 Bundle extras = getIntent().getExtras(); local
43 String formatTest = extras.getString("TextureFormat", null);
  /cts/tests/tests/media/src/android/media/cts/
MediaPlayerSurfaceTest.java 31 Bundle extras = new Bundle(); local
33 MediaPlayerSurfaceStubActivity.class, extras);
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentActivity.java 18 Bundle extras = getIntent().getExtras(); local
19 if (extras != null) {
22 mThemeId = extras.getInt("theme");
34 if (extras != null) {
36 int category = extras.getInt("category");
37 int position = extras.getInt("position");
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NoteEdit.java 44 Bundle extras = getIntent().getExtras(); local
45 if (extras != null) {
46 String title = extras.getString(NotesDbAdapter.KEY_TITLE);
47 String body = extras.getString(NotesDbAdapter.KEY_BODY);
48 mRowId = extras.getLong(NotesDbAdapter.KEY_ROWID);
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NoteEdit.java 44 Bundle extras = getIntent().getExtras(); local
45 if (extras != null) {
46 String title = extras.getString(NotesDbAdapter.KEY_TITLE);
47 String body = extras.getString(NotesDbAdapter.KEY_BODY);
48 mRowId = extras.getLong(NotesDbAdapter.KEY_ROWID);
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/sync/
ChromiumSyncAdapterTest.java 87 Bundle extras = new Bundle(); local
89 extras.putInt(ChromiumSyncAdapter.INVALIDATION_OBJECT_SOURCE_KEY, 61);
91 extras.putString(ChromiumSyncAdapter.INVALIDATION_OBJECT_ID_KEY, "objectid_value");
92 extras.putLong(ChromiumSyncAdapter.INVALIDATION_VERSION_KEY, 42);
93 extras.putString(ChromiumSyncAdapter.INVALIDATION_PAYLOAD_KEY, "payload_value");
94 mSyncAdapter.onPerformSync(TEST_ACCOUNT, extras,
DelayedSyncControllerTest.java 55 Bundle extras = new Bundle(); local
56 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
57 assertTrue(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
61 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
62 assertTrue(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
69 Bundle extras = new Bundle(); local
70 assertTrue(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
78 Bundle extras = new Bundle(); local
79 assertFalse(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
92 Bundle extras = new Bundle() local
93 assertFalse(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
RecommendationBuilder.java 109 Bundle extras = new Bundle(); local
111 extras.putString(EXTRA_BACKGROUND_IMAGE_URL, mBackgroundUri);
132 .setExtras(extras))
  /developers/samples/android/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/
WeatherWidgetService.java 86 final Bundle extras = new Bundle(); local
87 extras.putString(WeatherWidgetProvider.EXTRA_DAY_ID, day);
88 fillInIntent.putExtras(extras);
  /development/samples/ApiDemos/src/com/example/android/apis/media/
MediaPlayerDemo_Audio.java 47 Bundle extras = getIntent().getExtras(); local
48 playAudio(extras.getInt(MEDIA));
  /development/samples/StackWidget/src/com/example/android/stackwidget/
StackWidgetService.java 86 Bundle extras = new Bundle(); local
87 extras.putInt(StackWidgetProvider.EXTRA_ITEM, position);
89 fillInIntent.putExtras(extras);
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherWidgetService.java 91 final Bundle extras = new Bundle(); local
92 extras.putString(WeatherWidgetProvider.EXTRA_DAY_ID, day);
93 fillInIntent.putExtras(extras);
  /device/sample/apps/LeanbackCustomizer/src/com/google/android/leanbacklauncher/partnercustomizer/
PartnerReceiver.java 122 Bundle extras = new Bundle(); local
123 extras.putString(BLACKLIST_PACKAGE, pkgName);
133 .setExtras(extras);
  /developers/build/prebuilts/gradle/AppRestrictions/Application/src/main/java/com/example/android/apprestrictions/
GetRestrictionsReceiver.java 119 Bundle extras = new Bundle(); local
120 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
121 result.setResult(Activity.RESULT_OK, null, extras);
143 final Bundle extras = new Bundle(); local
155 extras.putParcelable(Intent.EXTRA_RESTRICTIONS_INTENT, customIntent);
158 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
159 result.setResult(Activity.RESULT_OK, null, extras);
  /developers/samples/android/content/multiuser/AppRestrictions/Application/src/main/java/com/example/android/apprestrictions/
GetRestrictionsReceiver.java 119 Bundle extras = new Bundle(); local
120 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
121 result.setResult(Activity.RESULT_OK, null, extras);
143 final Bundle extras = new Bundle(); local
155 extras.putParcelable(Intent.EXTRA_RESTRICTIONS_INTENT, customIntent);
158 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
159 result.setResult(Activity.RESULT_OK, null, extras);
  /development/samples/browseable/AppRestrictions/src/com.example.android.apprestrictions/
GetRestrictionsReceiver.java 119 Bundle extras = new Bundle(); local
120 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
121 result.setResult(Activity.RESULT_OK, null, extras);
143 final Bundle extras = new Bundle(); local
155 extras.putParcelable(Intent.EXTRA_RESTRICTIONS_INTENT, customIntent);
158 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
159 result.setResult(Activity.RESULT_OK, null, extras);
  /development/samples/ApiDemos/src/com/example/android/apis/appwidget/
ExampleAppWidgetConfigure.java 70 Bundle extras = intent.getExtras(); local
71 if (extras != null) {
72 mAppWidgetId = extras.getInt(
  /development/samples/ApiDemos/src/com/example/android/apis/os/
SmsMessageReceiver.java 34 Bundle extras = intent.getExtras(); local
35 if (extras == null)
38 Object[] pdus = (Object[]) extras.get("pdus");
  /external/chromium_org/third_party/WebKit/Source/core/animation/
KeyframeEffectModel.cpp 50 PropertySet extras = m_keyframes[i]->properties(); local
51 for (PropertySet::const_iterator it = extras.begin(); it != extras.end(); ++it) {
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverSyncTestCase.java 124 Bundle extras = new Bundle(); local
125 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
140 Bundle extras = new Bundle(); local
141 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
143 ContentResolver.requestSync(account, authority, extras);
305 fail("did not throw IllegalArgumentException when extras is null.");
315 Bundle extras = new Bundle();
316 extras.putInt("Integer", 20);
317 extras.putLong("Long", 10l);
318 extras.putBoolean("Boolean", true)
    [all...]

Completed in 501 milliseconds

1 2 3