Searched refs:Bundle (Results 76 - 100 of 185) sorted by relevance

12345678

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DMediaCodecVideoEncoder.java37 import android.os.Bundle;
208 Bundle b = new Bundle();
241 Bundle params = new Bundle();
/external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
H A DLinker.java7 import android.os.Bundle;
142 * getSharedRelros() which returns a Bundle instance containing a map that
145 * This Bundle must be passed to each service process, for example through
146 * a Binder call (note that the Bundle includes file descriptors and cannot
150 * section Bundle is received. This is typically done by calling
210 private static Bundle sSharedRelros = null;
430 // Create new Bundle containing RELRO section information
455 // Clear the Bundle to ensure its file descriptor references can't be reused.
488 * Call this to send a Bundle containing the shared RELRO sections to be
492 * @param bundle The Bundle instanc
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
H A DChromiumSyncAdapter.java13 import android.os.Bundle;
57 public void onPerformSync(Account account, Bundle extras, String authority,
128 final Context context, final Account acct, Bundle extras,
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/crypto/
H A DCipherFactory.java8 import android.os.Bundle;
31 * Android has a mechanism for saving instance state through {@link Bundle}s, which help
34 * Android gives a {@link Bundle} to the Activity when the user restarts the Activity. The
35 * {@link Bundle} is expected to be small and fast to generate, and is managed by Android.
37 * Android does not restore the {@link Bundle} when the user restarts the Activity.
41 * - Store {@link Cipher} parameters in the Bundle via {@link CipherFactory#saveToBundle(Bundle)}.
43 * Explicitly ending the session destroys the {@link Bundle}, making the previous session's data
214 public void saveToBundle(Bundle outState) {
226 * Restores the encryption key from the given Bundle
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/base/
H A DWindowAndroid.java13 import android.os.Bundle;
207 public void saveInstanceState(Bundle bundle) {
216 public void restoreInstanceState(Bundle bundle) {
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLocation.java4 import android.os.Bundle;
42 private Bundle extras = new Bundle();
429 public Bundle getExtras() {
434 public void setExtras(Bundle extras) {
H A DShadowBundle.java12 import android.os.Bundle;
20 @Implements(Bundle.class)
24 public void __constructor__(Bundle b) {
282 public void putBundle(String key, Bundle value) {
287 public Bundle getBundle(String key) {
289 return value == null || !(value instanceof Bundle) ? null : (Bundle) value;
381 public void putAll(Bundle bundle) {
455 Robolectric.Reflection.setFinalStaticField(Bundle.class, "EMPTY", new Bundle());
[all...]
H A DShadowContentResolver.java8 import android.os.Bundle;
59 public Bundle syncExtras;
174 public static void requestSync(Account account, String authority, Bundle extras) {
202 public static void addPeriodicSync(Account account, String authority, Bundle extras,
210 public static void removePeriodicSync(Account account, String authority, Bundle extras) {
222 public static void validateSyncExtrasBundle(Bundle extras) {
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestWindow.java7 import android.os.Bundle;
156 @Override public Bundle saveHierarchyState() {
160 @Override public void restoreHierarchyState(Bundle savedInstanceState) {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DParcelTest.java12 import android.os.Bundle;
257 Bundle b1 = new Bundle();
261 Bundle b2 = parcel.readBundle();
277 Bundle innerBundle = new Bundle();
280 Bundle b1 = new Bundle();
285 Bundle b2 = parcel.readBundle();
304 Bundle b
[all...]
H A DContentResolverTest.java20 import android.os.Bundle;
239 ContentResolver.requestSync(a, AUTHORITY, new Bundle());
263 ContentResolver.addPeriodicSync(a, AUTHORITY, new Bundle(), 6000l);
273 ContentResolver.addPeriodicSync(a, AUTHORITY, new Bundle(), 6000l);
274 ContentResolver.removePeriodicSync(a, AUTHORITY, new Bundle());
281 ContentResolver.addPeriodicSync(a, AUTHORITY, new Bundle(), 6000l);
295 Bundle bundle = new Bundle();
307 Bundle bundle = new Bundle();
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DChildProcessConnectionImpl.java11 import android.os.Bundle;
77 final Bundle mSharedRelros;
80 IChildProcessCallback callback, Bundle sharedRelros) {
253 Bundle sharedRelros) {
299 Bundle bundle = new Bundle();
H A DLocationProviderFactory.java12 import android.os.Bundle;
118 public void onStatusChanged(String provider, int status, Bundle extras) {
H A DPepperPluginManager.java15 import android.os.Bundle;
43 private static String getPluginDescription(Bundle metaData) {
/external/chromium_org/sync/android/java/src/org/chromium/sync/signin/
H A DAccountManagerHelper.java18 import android.os.Bundle;
164 AccountManagerFuture<Bundle> future = mAccountManager.getAuthToken(account,
217 private String getAuthTokenInner(AccountManagerFuture<Bundle> future,
220 Bundle result = future.getResult();
251 AccountManagerFuture<Bundle> future;
259 final AccountManagerFuture<Bundle> finalFuture = future;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/
H A Dcheck_chromevox.py22 from jsbundler import Bundle, CalcDeps, ReadSources namespace
86 bundle = Bundle()
/external/chromium_org/tools/android/memconsumer/java/src/org/chromium/memconsumer/
H A DMemConsumer.java12 import android.os.Bundle;
43 protected void onCreate(Bundle savedInstanceState) {
/external/svox/pico/src/com/svox/pico/
H A DEngineSettings.java21 import android.os.Bundle;
40 protected void onCreate(Bundle savedInstanceState) {
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
H A DBrowserAccessibilityManager.java10 import android.os.Bundle;
157 * @see AccessibilityNodeProvider#performAction(int, int, Bundle)
159 protected boolean performAction(int virtualViewId, int action, Bundle arguments) {
346 private Bundle getOrCreateBundleForAccessibilityEvent(AccessibilityEvent event) {
347 Bundle bundle = (Bundle) event.getParcelableData();
349 bundle = new Bundle();
685 Bundle bundle = getOrCreateBundleForAccessibilityEvent(event);
698 Bundle bundle = getOrCreateBundleForAccessibilityEvent(event);
708 Bundle bundl
[all...]
/external/chromium_org/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/
H A DContentShellActivity.java9 import android.os.Bundle;
44 protected void onCreate(final Bundle savedInstanceState) {
107 private void finishInitialization(Bundle savedInstanceState) {
125 protected void onSaveInstanceState(Bundle outState) {
/external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
H A DWebRTCDemo.java21 import android.os.Bundle;
38 private final Bundle args;
45 Bundle args) {
82 public void onCreate(Bundle savedInstanceState) {
H A DVideoMenuFragment.java15 import android.os.Bundle;
35 Bundle savedInstanceState) {
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
H A DHelpActivity.java16 import android.os.Bundle;
110 public void onCreate(Bundle savedInstanceState) {
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/android/src/org/webrtc/vieautotest/
H A DViEAutotest.java16 import android.os.Bundle;
50 public void onCreate(Bundle savedInstanceState) {
/external/replicaisland/src/com/replica/replicaisland/
H A DGameOverActivity.java25 import android.os.Bundle;
131 public void onCreate(Bundle savedInstanceState) {

Completed in 873 milliseconds

12345678