HomeSort by relevance Sort by last modified time
    Searched full:bundle (Results 251 - 275 of 5506) sorted by null

<<11121314151617181920>>

  /packages/apps/Settings/src/com/android/settings/accounts/
AddAccountSettings.java 28 import android.os.Bundle;
78 private final AccountManagerCallback<Bundle> mCallback = new AccountManagerCallback<Bundle>() {
80 public void run(AccountManagerFuture<Bundle> future) {
83 Bundle bundle = future.getResult();
84 //bundle.keySet();
85 Intent intent = (Intent) bundle.get(AccountManager.KEY_INTENT);
88 Bundle addAccountOptions = new Bundle();
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
BrowserAccessibilityManager.java 10 import android.os.Bundle;
152 * @see AccessibilityNodeProvider#performAction(int, int, Bundle)
154 protected boolean performAction(int virtualViewId, int action, Bundle arguments) {
272 private Bundle getOrCreateBundleForAccessibilityEvent(AccessibilityEvent event) {
273 Bundle bundle = (Bundle) event.getParcelableData(); local
274 if (bundle == null) {
275 bundle = new Bundle();
567 Bundle bundle = getOrCreateBundleForAccessibilityEvent(event); local
580 Bundle bundle = getOrCreateBundleForAccessibilityEvent(event); local
590 Bundle bundle = getOrCreateBundleForAccessibilityEvent(event); local
602 Bundle bundle = getOrCreateBundleForAccessibilityEvent(event); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/META-INF/
MANIFEST.MF 2 Bundle-Localization: plugin
3 Bundle-RequiredExecutionEnvironment: J2SE-1.4
4 Bundle-SymbolicName: org.eclipse.pde.build;singleton:=true
7 Bundle-Activator: org.eclipse.pde.internal.build.BuildActivator
8 Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)
9 ",org.eclipse.ant.core;bundle-version="[3.1.100,4.0.0)",org.eclipse.c
10 ore.runtime.compatibility;bundle-version="[3.1.100,4.0.0)";resolution
11 :=optional,org.eclipse.osgi;bundle-version="[3.3.0,4.0.0)",org.eclips
12 e.equinox.p2.jarprocessor;bundle-version="[1.0.1,2.0.0)",org.eclipse
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
FastScrollingIndexCache.java 23 import android.os.Bundle;
77 * values, which are {@link Bundle}s that will be appended to a {@link Cursor} as extras.
159 * Creates and returns a {@link Bundle} that is appended to a {@link Cursor} as extras.
161 public static final Bundle buildExtraBundle(String[] titles, int[] counts) {
162 Bundle bundle = new Bundle(); local
163 bundle.putStringArray(ContactCounts.EXTRA_ADDRESS_BOOK_INDEX_TITLES, titles);
164 bundle.putIntArray(ContactCounts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS, counts);
165 return bundle;
    [all...]
  /frameworks/base/core/java/android/os/
Bundle.java 32 public final class Bundle implements Parcelable, Cloneable {
33 private static final String TAG = "Bundle";
35 public static final Bundle EMPTY;
41 EMPTY = new Bundle();
53 * data are stored as a Parcel containing a Bundle. When the data
68 * Constructs a new, empty Bundle.
70 public Bundle() {
76 * Constructs a Bundle whose data is stored as a Parcel. The data
79 * @param parcelledData a Parcel containing a Bundle
81 Bundle(Parcel parcelledData)
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
RemotePlayer.java 23 import android.os.Bundle;
58 public void onItemStatusChanged(Bundle data,
74 public void onSessionStatusChanged(Bundle data,
134 public void onResult(Bundle data, String sessionId, MediaSessionStatus sessionStatus,
150 public void onError(String error, int code, Bundle data) {
174 public void onResult(Bundle data, String sessionId, MediaSessionStatus sessionStatus,
192 public void onError(String error, int code, Bundle data) {
212 public void onResult(Bundle data, String sessionId, MediaSessionStatus sessionStatus) {
220 public void onError(String error, int code, Bundle data) {
237 public void onResult(Bundle data, String sessionId, MediaSessionStatus sessionStatus)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentArguments.java 25 import android.os.Bundle;
33 * Demonstrates a fragment that can be configured through both Bundle arguments
38 @Override protected void onCreate(Bundle savedInstanceState) {
62 Bundle b = new Bundle();
73 Bundle savedInstanceState) {
86 @Override public void onCreate(Bundle savedInstanceState) {
89 Bundle args = getArguments();
99 Bundle savedInstanceState) {
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentArgumentsSupport.java 27 import android.os.Bundle;
35 * Demonstrates a fragment that can be configured through both Bundle arguments
40 @Override protected void onCreate(Bundle savedInstanceState) {
64 Bundle b = new Bundle();
75 Bundle savedInstanceState) {
88 @Override public void onCreate(Bundle savedInstanceState) {
91 Bundle args = getArguments();
104 Bundle savedInstanceState) {
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/sync/
DelayedSyncControllerTest.java 12 import android.os.Bundle;
56 Bundle extras = new Bundle();
70 Bundle extras = new Bundle();
79 Bundle extras = new Bundle();
93 Bundle extras = new Bundle();
  /frameworks/base/core/java/android/speech/
RecognitionListener.java 19 import android.os.Bundle;
32 void onReadyForSpeech(Bundle params);
72 * ArrayList&lt;String&gt;} format use {@link Bundle#getStringArrayList(String)} with
76 void onResults(Bundle results);
80 * time between {@link #onBeginningOfSpeech()} and {@link #onResults(Bundle)} when partial
87 * ArrayList&lt;String&gt; format use {@link Bundle#getStringArrayList(String)} with
90 void onPartialResults(Bundle partialResults);
96 * @param params a Bundle containing the passed parameters
98 void onEvent(int eventType, Bundle params);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/editor/
SelectAccountDialogFragment.java 25 import android.os.Bundle;
55 * {@link Bundle#EMPTY}.
59 AccountListFilter accountListFilter, Bundle extraArgs) {
60 final Bundle args = new Bundle();
63 args.putBundle(KEY_EXTRA_ARGS, (extraArgs == null) ? Bundle.EMPTY : extraArgs);
72 public Dialog onCreateDialog(Bundle savedInstanceState) {
74 final Bundle args = getArguments();
118 void onAccountChosen(AccountWithDataSet account, Bundle extraArgs);
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoFragment.java 20 import android.os.Bundle;
94 public void onCreate(Bundle bundle) {
95 super.onCreate(bundle);
102 public View onCreateView(LayoutInflater inflater, ViewGroup viewGroup, Bundle bundle) {
103 super.onCreateView(inflater, viewGroup, bundle);
120 // If the bundle argument contains data, uses it as a URL for the picture to display
121 if (bundle != null) {
122 mURLString = bundle.getString(PHOTO_URL_KEY)
    [all...]
  /external/chromium/chrome/browser/sync/glue/
autofill_profile_model_associator_unittest.cc 69 browser_sync::AutofillProfileModelAssociator::DataBundle *bundle) {
70 return TraverseAndAssociateAllSyncNodes(trans, autofill_root, bundle);
75 DataBundle* bundle,
79 bundle,
196 browser_sync::AutofillProfileModelAssociator::DataBundle bundle; local
207 &bundle,
212 &bundle);
221 browser_sync::AutofillProfileModelAssociator::DataBundle bundle; local
225 bundle.current_profiles.insert(guid);
230 associator.AddNativeProfileIfNeededWrapper(profile_specifics, &bundle,
239 browser_sync::AutofillProfileModelAssociator::DataBundle bundle; local
    [all...]
  /external/jmonkeyengine/engine/src/android/jme3test/android/
DemoMainActivity.java 5 import android.os.Bundle;
17 public void onCreate(Bundle savedInstanceState) {
25 //Next create the bundle and initialize it
26 final Bundle bundle = new Bundle(); local
43 //Add the parameters to bundle as
44 bundle.putString("EGLCONFIG", parent.getItemAtPosition(pos).toString());
68 //Add the parameters to bundle as
69 bundle.putBoolean("VERBOSE", parent.getItemAtPosition(pos).toString().equals("Verbose"))
    [all...]
  /external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/
MockAccountManager.java 21 import android.os.Bundle;
132 public boolean addAccountExplicitly(Account account, String password, Bundle userdata) {
175 public AccountManagerFuture<Bundle> confirmCredentials(Account account, Bundle bundle,
176 Activity activity, AccountManagerCallback<Bundle> callback, Handler handler) {
177 String password = bundle.getString(AccountManager.KEY_PASSWORD);
184 new AccountManagerTask<Bundle>(handler, callback, new Callable<Bundle>() {
186 public Bundle call() throws Exception
    [all...]
  /development/apps/BluetoothDebug/src/com/android/bluetoothdebug/
DebugReceiver.java 28 import android.os.Bundle;
49 Bundle bundle = intent.getExtras(); local
50 if (bundle == null) return;
51 for (String extra : bundle.keySet()) {
52 Log.d(TAG, "\t" + shorten(extra) + " = " + bundle.get(extra));
  /development/samples/VoiceRecognitionService/src/com/example/android/voicerecognitionservice/
VoiceRecognitionService.java 24 import android.os.Bundle;
67 Bundle bundle = new Bundle(); local
68 bundle.putStringArrayList(SpeechRecognizer.RESULTS_RECOGNITION, results);
71 listener.results(bundle);
  /device/sample/apps/SampleEmailPolicy/src/com/android/email/policy/
EmailPolicy.java 19 import android.os.Bundle;
40 * in the "arguments" bundle. If there is a single argument, it will typically use the same key
43 * In all cases, getPolicy() should return a bundle. For default behavior, or for any unknown
44 * policy, simply return Bundle.EMPTY.
46 * To return actual data, create a new bundle and place result values in it. If there is a single
47 * return value, this value is placed in the return bundle using the same key as the request.
52 * argument values cannot be found, the method should Bundle.EMPTY.
62 * For the default behavior, return the empty bundle.
63 * For the alternate behavior, return a bundle containing a single entry with a key of
77 * For default behavior (no values inserted), return the empty bundle
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/tests/
sdktools_commands_test.py 28 bundle = manifest_util.Bundle(bundle_name)
29 bundle.revision = 1337
30 bundle.version = 23
31 bundle.description = bundle_name
32 bundle.stability = 'beta'
33 bundle.recommended = 'no'
34 bundle.repath = bundle_name
36 bundle.AddArchive(archive)
37 manifest.SetBundle(bundle)
    [all...]
  /external/libppp/src/
server.h 29 struct bundle;
57 extern enum server_stat server_LocalOpen(struct bundle *, const char *, mode_t);
58 extern enum server_stat server_TcpOpen(struct bundle *, u_short);
59 extern enum server_stat server_Reopen(struct bundle *);
60 extern int server_Close(struct bundle *);
61 extern int server_Clear(struct bundle *);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMessage.java 9 import android.os.Bundle;
15 private Bundle data;
23 public void setData(Bundle data) {
33 public Bundle peekData() {
38 public Bundle getData() {
40 data = new Bundle();
  /frameworks/base/core/java/android/accounts/
AccountAuthenticatorActivity.java 21 import android.os.Bundle;
32 * {@link #setAccountAuthenticatorResult(android.os.Bundle)}.
39 private Bundle mResultBundle = null;
47 public final void setAccountAuthenticatorResult(Bundle result) {
56 protected void onCreate(Bundle icicle) {
72 // send the result bundle back if set, otherwise send an error.
IAccountManager.aidl 22 import android.os.Bundle;
39 boolean addAccountExplicitly(in Account account, String password, in Bundle extras);
51 in Bundle options);
54 in Bundle options);
56 String authTokenType, boolean expectActivityLaunch, in Bundle options);
60 in Bundle options, boolean expectActivityLaunch, int userId);
  /frameworks/base/core/java/android/app/
ActivityGroup.java 22 import android.os.Bundle;
51 protected void onCreate(Bundle savedInstanceState) {
53 Bundle states = savedInstanceState != null
54 ? (Bundle) savedInstanceState.getBundle(STATES_KEY) : null;
65 protected void onSaveInstanceState(Bundle outState) {
67 Bundle state = mLocalActivityManager.saveInstanceState();
  /frameworks/base/core/java/com/android/internal/app/
MediaRouteChooserDialogFragment.java 22 import android.os.Bundle;
52 Bundle args = getArguments();
58 Bundle args = getArguments();
60 args = new Bundle();
90 Context context, Bundle savedInstanceState) {
95 public Dialog onCreateDialog(Bundle savedInstanceState) {

Completed in 886 milliseconds

<<11121314151617181920>>