/frameworks/base/docs/html/tools/extras/ |
index.jd | 1 page.title=Extras 5 <p>SDK extras add functionality to your development environment. You can download all of the SDK extras into your development environment using the SDK Manager. </p>
|
/external/qemu/distrib/sdl-1.2.15/Xcode/ |
stationary.csh | 10 sudo /Developer/Tools/CpMac -r "Project Stationary/SDL Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/" 12 sudo /Developer/Tools/CpMac -r "Project Stationary/SDL Cocoa Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/" 14 sudo /Developer/Tools/CpMac -r "Project Stationary/SDL Custom Cocoa Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/" 16 sudo /Developer/Tools/CpMac -r "Project Stationary/SDL OpenGL Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/" 20 sudo mkdir -p "/Developer/ProjectBuilder Extras/Target Templates/SDL" 22 sudo /Developer/Tools/CpMac -r "Project Stationary/Application.trgttmpl" "/Developer/ProjectBuilder Extras/Target Templates/SDL"
|
uninstall.csh | 19 sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Application" 20 sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Cocoa Application" 21 sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Custom Cocoa Application" 22 sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL OpenGL Application" 23 sudo rm -r "/Developer/ProjectBuilder Extras/Target Templates/SDL"
|
/frameworks/base/core/java/android/content/ |
SyncActivityTooManyDeletes.java | 50 Bundle extras = getIntent().getExtras(); local 51 if (extras == null) { 56 mNumDeletes = extras.getLong("numDeletes"); 57 mAccount = (Account) extras.getParcelable("account"); 58 mAuthority = extras.getString("authority"); 59 mProvider = extras.getString("provider"); 117 Bundle extras = new Bundle(); local 118 extras.putBoolean(ContentResolver.SYNC_EXTRAS_OVERRIDE_TOO_MANY_DELETIONS, true); 119 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true); 120 extras.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true) 126 Bundle extras = new Bundle(); local [all...] |
PeriodicSync.java | 32 /** Any extras that parameters that are to be passed to the sync adapter. */ 33 public final Bundle extras; field in class:PeriodicSync 48 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) { 51 if (extras == null) { 52 this.extras = new Bundle(); 54 this.extras = new Bundle(extras); 68 this.extras = new Bundle(other.extras); 77 public PeriodicSync(Account account, String authority, Bundle extras, [all...] |
IAnonymousSyncAdapter.aidl | 31 * extras, which is guaranteed to not be null. 35 * @param extras SyncAdapter-specific parameters. 38 void startSync(ISyncContext syncContext, in Bundle 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");
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowIntent.java | 29 private final Bundle extras = new Bundle(); field in class:ShadowIntent 55 extras.putAll(other.extras); 192 extras.putAll(src); 199 extras.putAll(srcShadowIntent.extras); 205 return extras != null ? new Bundle(extras) : null; 210 extras.putInt(key, value); 216 extras.putDouble(key, value) [all...] |
ShadowPeriodicSync.java | 17 public void __constructor__(Account account, String authority, Bundle extras, long period) throws Exception { 21 setField("extras", extras);
|
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/sync/ |
DelayedSyncControllerTest.java | 56 Bundle extras = new Bundle(); local 57 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true); 58 assertTrue(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local 62 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true); 63 assertTrue(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local 70 Bundle extras = new Bundle(); local 71 assertTrue(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local 79 Bundle extras = new Bundle(); local 80 assertFalse(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local 93 Bundle extras = new Bundle() local 94 assertFalse(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local [all...] |
/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);
|
/frameworks/base/core/java/android/appwidget/ |
AppWidgetProvider.java | 29 * with the received extras. 62 Bundle extras = intent.getExtras(); local 63 if (extras != null) { 64 int[] appWidgetIds = extras.getIntArray(AppWidgetManager.EXTRA_APPWIDGET_IDS); 71 Bundle extras = intent.getExtras(); local 72 if (extras != null && extras.containsKey(AppWidgetManager.EXTRA_APPWIDGET_ID)) { 73 final int appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID); 78 Bundle extras = intent.getExtras(); local 79 if (extras != null && extras.containsKey(AppWidgetManager.EXTRA_APPWIDGET_ID [all...] |
/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...] |
/cts/tests/res/xml/ |
input_extras.xml | 17 <input-extras xmlns:android="http://schemas.android.com/apk/res/android"> 20 </input-extras>
|
/external/antlr/antlr-3.4/runtime/Python/dist/ |
antlr_python_runtime-3.4-py2.4.egg | |
antlr_python_runtime-3.4-py2.6.egg | |
/external/chromium_org/native_client_sdk/ |
native_client_sdk_untrusted.gyp | 25 'src/libraries/third_party/newlib-extras', 31 'src/libraries/third_party/newlib-extras',
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
MatrixCursorWithExtra.java | 23 public MatrixCursorWithExtra(String[] columnNames, int initialCapacity, Bundle extras) { 26 mExtras = extras;
|
/packages/apps/Email/src/com/android/email/service/ |
PopImapSyncAdapterService.java | 62 public void onPerformSync(android.accounts.Account account, Bundle extras, 64 PopImapSyncAdapterService.performSync(getContext(), account, extras, provider, local 102 final Bundle extras, final SyncResult syncResult, final boolean uiRefresh, 133 EmailServiceStatus.syncMailboxStatus(resolver, extras, mailboxId, 143 EmailServiceStatus.syncMailboxStatus(resolver, extras, mailboxId, status, 0, 152 EmailServiceStatus.syncMailboxStatus(resolver, extras, mailboxId, cause, 0, 157 EmailServiceStatus.syncMailboxStatus(resolver, extras, mailboxId, cause, 0, 163 EmailServiceStatus.syncMailboxStatus(resolver, extras, mailboxId, cause, 0, 179 Bundle extras, ContentProviderClient provider, SyncResult syncResult) { 189 if (extras.getBoolean(ContentResolver.SYNC_EXTRAS_UPLOAD)) [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
JsonBackedSuggestionExtras.java | 45 public JsonBackedSuggestionExtras(SuggestionExtras extras) throws JSONException { 47 mColumns = extras.getExtraColumnNames(); 48 for (String column : extras.getExtraColumnNames()) { 49 String value = extras.getExtra(column);
|
/packages/apps/VideoEditor/src/com/android/videoeditor/ |
OverlayTitleTemplatePicker.java | 67 // Put selected overlay type into extras and finish. 68 final Intent extras = new Intent(); local 71 extras.putExtra(PARAM_OVERLAY_ATTRIBUTES, bundle); 72 setResult(RESULT_OK, extras);
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/ |
CommonDatabaseUtils.java | 72 public static void extrasVarArgsToValues(ContentValues values, String... extras) { 73 for (int i = 0; i < extras.length; ) { 74 values.put(extras[i], extras[i + 1]);
|
/cts/tests/tests/graphics/src/android/opengl/cts/ |
CompressedTextureTest.java | 31 Bundle extras = new Bundle(); local 32 extras.putString("TextureFormat", format); 34 CompressedTextureStubActivity.class, extras);
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
AlbumPicker.java | 32 Bundle extras = intent.getExtras(); local 33 Bundle data = extras == null ? new Bundle() : new Bundle(extras);
|