Searched refs:Bundle (Results 1 - 25 of 830) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
H A DNativeMedia.java22 import android.os.Bundle;
67 public void onCreate(Bundle icicle) {
/frameworks/testing/androidtestlib/src/com/android/test/runner/
H A DAndroidJUnitRunner.java21 import android.os.Bundle;
182 private final Bundle mResults = new Bundle();
183 private Bundle mArguments;
186 public void onCreate(Bundle arguments) {
194 * Get the Bundle object that contains the arguments passed to the instrumentation
196 * @return the Bundle object
199 public Bundle getArguments(){
203 private boolean getBooleanArgument(Bundle arguments, String tag) {
260 TestRequest buildRequest(Bundle argument
[all...]
/frameworks/testing/androidtestlib/tests/src/com/android/test/runner/
H A DAndroidJUnitRunnerTest.java19 import android.os.Bundle;
63 * Test {@link AndroidJUnitRunner#buildRequest(Bundle, PrintStream)} when
68 Bundle b = new Bundle();
76 * Test {@link AndroidJUnitRunner#buildRequest(Bundle, PrintStream)} when
81 Bundle b = new Bundle();
90 * Test {@link AndroidJUnitRunner#buildRequest(Bundle, PrintStream)} when
95 Bundle b = new Bundle();
[all...]
/frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
H A DRunTestCommand.java19 import android.os.Bundle;
44 private Bundle mParams = new Bundle();
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/testrunner/
H A DIAutomationSupport.java19 import android.os.Bundle;
33 public void sendStatus(int resultCode, Bundle status);
H A DUiAutomatorTestCase.java20 import android.os.Bundle;
37 * {@link Bundle} for command line parameters.
44 private Bundle mParams;
75 * pairs, the {@link Bundle} will have the key value pairs conveniently available to the
78 public Bundle getParams() {
103 void setParams(Bundle params) {
H A DUiAutomatorTestRunner.java23 import android.os.Bundle;
56 private Bundle mParams = null;
62 public void sendStatus(int resultCode, Bundle status) {
68 public void run(List<String> testClasses, Bundle params, boolean debug) {
73 Bundle results = new Bundle();
105 Bundle testRunOutput = new Bundle();
155 public void instrumentationStatus(ComponentName name, int resultCode, Bundle results) {
178 public void instrumentationFinished(ComponentName name, int resultCode, Bundle result
[all...]
/frameworks/testing/uiautomator/samples/SkeletonTest/src/com/android/uiautomator/samples/skeleton/
H A DDemoTestCase.java21 import android.os.Bundle;
29 Bundle status = new Bundle();
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DSampler.java24 import android.os.Bundle;
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentStatePagerAdapter.java22 import android.os.Bundle;
178 Bundle state = null;
180 state = new Bundle();
189 state = new Bundle();
201 Bundle bundle = (Bundle)state;
H A DFragmentTabHost.java26 import android.os.Bundle;
56 private final Bundle args;
59 TabInfo(String _tag, Class<?> _class, Bundle _args) {
214 public void addTab(TabHost.TabSpec tabSpec, Class<?> clss, Bundle args) {
/frameworks/support/v4/java/android/support/v4/app/
H A DDialogFragment.java23 import android.os.Bundle;
225 * set, no Dialog will be created in {@link #onActivityCreated(Bundle)},
273 public void onCreate(Bundle savedInstanceState) {
290 public LayoutInflater getLayoutInflater(Bundle savedInstanceState) {
317 * {@link #onCreateView(LayoutInflater, ViewGroup, Bundle)} does not need
320 * <p>This method will be called after {@link #onCreate(Bundle)} and
321 * before {@link #onCreateView(LayoutInflater, ViewGroup, Bundle)}. The
336 public Dialog onCreateDialog(Bundle savedInstanceState) {
354 public void onActivityCreated(Bundle savedInstanceState) {
373 Bundle dialogStat
[all...]
H A DFragment.java25 import android.os.Bundle;
57 final Bundle mArguments;
59 Bundle mSavedFragmentState;
178 Bundle mSavedFragmentState;
188 Bundle mArguments;
299 final Bundle mState;
301 SavedState(Bundle state) {
335 * Thrown by {@link Fragment#instantiate(Context, String, Bundle)} when
365 * Like {@link #instantiate(Context, String, Bundle)} but with a null
366 * argument Bundle
[all...]
H A DFragmentActivity.java25 import android.os.Bundle;
192 protected void onCreate(Bundle savedInstanceState) {
525 protected void onSaveInstanceState(Bundle outState) {
H A DFragmentManager.java21 import android.os.Bundle;
272 * Put a reference to a fragment in a Bundle. This Bundle can be
274 * {@link #getFragment(Bundle, String)} will return the current
281 public abstract void putFragment(Bundle bundle, String key, Fragment fragment);
285 * placed with {@link #putFragment(Bundle, String, Fragment)}.
292 public abstract Fragment getFragment(Bundle bundle, String key);
306 * that is it can't use {@link #putFragment(Bundle, String, Fragment)} to
423 Bundle mStateBundle = null;
544 public void putFragment(Bundle bundl
[all...]
H A DFragmentStatePagerAdapter.java21 import android.os.Bundle;
174 Bundle state = null;
176 state = new Bundle();
185 state = new Bundle();
197 Bundle bundle = (Bundle)state;
H A DFragmentTabHost.java23 import android.os.Bundle;
64 private final Bundle args;
67 TabInfo(String _tag, Class<?> _class, Bundle _args) {
222 public void addTab(TabHost.TabSpec tabSpec, Class<?> clss, Bundle args) {
H A DListFragment.java20 import android.os.Bundle;
90 Bundle savedInstanceState) {
143 public void onViewCreated(View view, Bundle savedInstanceState) {
H A DLoaderManager.java20 import android.os.Bundle;
51 public Loader<D> onCreateLoader(int id, Bundle args);
126 public abstract <D> Loader<D> initLoader(int id, Bundle args,
144 public abstract <D> Loader<D> restartLoader(int id, Bundle args,
213 final Bundle mArgs;
228 public LoaderInfo(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callbacks) {
487 private LoaderInfo createLoader(int id, Bundle args,
495 private LoaderInfo createAndInstallLoader(int id, Bundle args,
536 * {@link LoaderCallbacks#onCreateLoader(int, Bundle) LoaderCallbacks.onCreateLoader()}.
542 public <D> Loader<D> initLoader(int id, Bundle arg
[all...]
H A DTaskStackBuilder.java26 import android.os.Bundle;
74 int flags, Bundle options);
79 int flags, Bundle options) {
88 int flags, Bundle options) {
99 int flags, Bundle options) {
302 * See {@link android.content.Context#startActivity(Intent, Bundle)
304 public void startActivities(Bundle options) {
346 * See {@link android.content.Context#startActivity(Intent, Bundle)
349 public PendingIntent getPendingIntent(int requestCode, int flags, Bundle options) {
/frameworks/support/v4/java/android/support/v4/content/
H A DContextCompat.java23 import android.os.Bundle;
84 * See {@link android.content.Context#startActivity(Intent, Bundle)
88 Bundle options) {
/frameworks/support/v4/java/android/support/v4/view/
H A DAccessibilityDelegateCompat.java20 import android.os.Bundle;
52 Bundle args);
114 Bundle args) {
266 public boolean performAccessibilityAction(View host, int action, Bundle args) {
285 Bundle args) {
488 * {@link View#performAccessibilityAction(int, Bundle)
489 * View#performAccessibilityAction(int, Bundle)} for the case of
496 * @see View#performAccessibilityAction(int, Bundle)
497 * View#performAccessibilityAction(int, Bundle)
499 public boolean performAccessibilityAction(View host, int action, Bundle arg
[all...]
H A DViewCompat.java21 import android.os.Bundle;
131 public boolean performAccessibilityAction(View view, int action, Bundle arguments);
192 public boolean performAccessibilityAction(View view, int action, Bundle arguments) {
295 public boolean performAccessibilityAction(View view, int action, Bundle arguments) {
634 * {@link AccessibilityDelegateCompat#performAccessibilityAction(View, int, Bundle)}
642 public static boolean performAccessibilityAction(View view, int action, Bundle arguments) {
H A DViewPager.java26 import android.os.Bundle;
2665 public boolean performAccessibilityAction(View host, int action, Bundle args) {
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java21 import android.os.Bundle;
51 public boolean performAction(Object info, int action, Bundle arguments);
259 public boolean performAction(Object info, int action, Bundle arguments) {
683 public boolean performAction(Object info, int action, Bundle arguments) {
767 * Bundle arguments = new Bundle();
793 * Bundle arguments = new Bundle();
819 * Bundle arguments = new Bundle();
[all...]

Completed in 207 milliseconds

1234567891011>>