HomeSort by relevance Sort by last modified time
    Searched full:bundle (Results 676 - 700 of 7390) sorted by null

<<21222324252627282930>>

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
ForgetPrivateStepFragment.java 19 import android.os.Bundle;
41 final Bundle b = new Bundle(1);
48 public @NonNull GuidanceStylist.Guidance onCreateGuidance(Bundle savedInstanceState) {
56 public void onCreateActions(@NonNull List<GuidedAction> actions, Bundle savedInstanceState) {
FormatAsPrivateStepFragment.java 19 import android.os.Bundle;
42 final Bundle b = new Bundle(1);
49 public @NonNull GuidanceStylist.Guidance onCreateGuidance(Bundle savedInstanceState) {
57 public void onCreateActions(@NonNull List<GuidedAction> actions, Bundle savedInstanceState) {
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerReceiver.java 24 import android.os.Bundle;
73 Bundle args = new Bundle();
80 Bundle args = new Bundle();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test__osx_support.py 126 'BLDSHARED': 'gcc-test -bundle -arch ppc -arch i386 -g',
127 'LDSHARED': 'gcc-test -bundle -arch ppc -arch i386 '
136 'BLDSHARED': 'clang -bundle -arch ppc -arch i386 -g',
137 'LDSHARED': 'clang -bundle -arch ppc -arch i386 '
159 'BLDSHARED': 'gcc-4.0 -bundle -arch ppc -arch i386 -g',
160 'LDSHARED': 'gcc-4.0 -bundle -arch ppc -arch i386 '
167 'BLDSHARED': 'gcc-4.0 -bundle -g',
168 'LDSHARED': 'gcc-4.0 -bundle -g',
182 'BLDSHARED': 'gcc-4.0 -bundle -arch ppc -arch i386 -g',
183 'LDSHARED': 'gcc-4.0 -bundle -arch ppc -arch i386
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test__osx_support.py 126 'BLDSHARED': 'gcc-test -bundle -arch ppc -arch i386 -g',
127 'LDSHARED': 'gcc-test -bundle -arch ppc -arch i386 '
136 'BLDSHARED': 'clang -bundle -arch ppc -arch i386 -g',
137 'LDSHARED': 'clang -bundle -arch ppc -arch i386 '
159 'BLDSHARED': 'gcc-4.0 -bundle -arch ppc -arch i386 -g',
160 'LDSHARED': 'gcc-4.0 -bundle -arch ppc -arch i386 '
167 'BLDSHARED': 'gcc-4.0 -bundle -g',
168 'LDSHARED': 'gcc-4.0 -bundle -g',
182 'BLDSHARED': 'gcc-4.0 -bundle -arch ppc -arch i386 -g',
183 'LDSHARED': 'gcc-4.0 -bundle -arch ppc -arch i386
    [all...]
  /external/icu/icu4c/source/tools/genrb/
derb.1.in 10 \- disassemble a resource bundle
43 .IR bundle " \.\.\."
47 .I bundle
51 extension while compiled resource bundle source files typically have a
57 .I bundle
62 for the root bundle.
66 resource bundle, and to know which locale to ask for when opening
67 the bundle.
108 for the resource bundle, which is used both in the generated text and
129 .I bundle
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ResourceBundleWrapper.java 28 private ResourceBundle bundle = null; field in class:ResourceBundleWrapper
34 private ResourceBundleWrapper(ResourceBundle bundle){
35 this.bundle=bundle;
47 obj = current.bundle.getObject(aKey);
54 throw new MissingResourceException("Can't find resource for bundle "
71 Enumeration<String> e = current.bundle.getKeys();
86 return bundle.getClass().getName().replace('.','/');
109 throw new MissingResourceException("Could not find the bundle "+ baseName+separator+ localeID,"","");
113 // recursively build bundle and override the super-class metho
    [all...]
  /external/ltrace/sysdeps/linux-gnu/ia64/
trace.c 40 /* What we think of as a bundle, ptrace thinks of it as two unsigned
43 /* An IA64 instruction bundle has a 5 bit header describing the
44 * type of bundle, then 3 41 bit instructions
89 union bundle_t bundle; local
93 * broke was in the previous bundle, so wind back the
98 bundle.code[0] = ptrace(PTRACE_PEEKTEXT, proc->pid, ip, 0);
99 bundle.code[1] = ptrace(PTRACE_PEEKTEXT, proc->pid, ip + 8, 0);
101 unsigned long bot = 0UL | bundle.bitmap.word0.bot_slot1;
102 unsigned long top = 0UL | bundle.bitmap.word1.top_slot1;
108 insn = bundle.bitmap.word1.slot2
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
FragmentManagerTest.java 3 import android.os.Bundle;
140 Bundle bundle = new Bundle(); local
141 shadowOf(fragment).setSavedInstanceState(bundle);
143 assertSame(bundle, fragment.onCreateSavedInstanceState);
150 Bundle outState = new Bundle();
159 shadowOf(fragment).setSavedInstanceState(new Bundle());
189 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
    [all...]
  /frameworks/base/core/java/android/content/
PeriodicSync.java 20 import android.os.Bundle;
33 public final Bundle extras;
43 * Creates a new PeriodicSync, copying the Bundle. This constructor is no longer used.
45 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) {
49 this.extras = new Bundle();
51 this.extras = new Bundle(extras);
65 this.extras = new Bundle(other.extras);
74 public PeriodicSync(Account account, String authority, Bundle extras,
78 this.extras = new Bundle(extras);
136 public static boolean syncExtrasEquals(Bundle b1, Bundle b2)
    [all...]
  /frameworks/base/docs/html/guide/topics/manifest/
meta-data-element.jd 24 them are collected in a single {@link android.os.Bundle} object and made
62 to the item. The ID can be retrieved from the meta-data Bundle by the
63 {@link android.os.Bundle#getInt Bundle.getInt()} method.</dd>
66 <dd>The value assigned to the item. The data types that can be assigned as values and the Bundle methods that components use to retrieve those values are listed in the following table:
71 <th>Bundle method</th>
75 <td>{@link android.os.Bundle#getString(String) getString()}</td>
78 <td>{@link android.os.Bundle#getInt(String) getInt()}</td>
81 <td>{@link android.os.Bundle#getBoolean(String) getBoolean()}</td>
85 <td>{@link android.os.Bundle#getInt(String) getInt()}</td
    [all...]
  /frameworks/opt/colorpicker/src/com/android/colorpicker/
ColorPickerDialog.java 23 import android.os.Bundle;
77 Bundle bundle = new Bundle(); local
78 bundle.putInt(KEY_TITLE_ID, titleResId);
79 bundle.putInt(KEY_COLUMNS, columns);
80 bundle.putInt(KEY_SIZE, size);
81 setArguments(bundle);
89 public void onCreate(Bundle savedInstanceState) {
107 public Dialog onCreateDialog(Bundle savedInstanceState)
    [all...]
  /frameworks/support/customtabs/api/
23.txt 5 method public void extraCallback(java.lang.String, android.os.Bundle);
6 method public void onNavigationEvent(int, android.os.Bundle);
15 method public android.os.Bundle extraCommand(java.lang.String, android.os.Bundle);
36 field public final android.os.Bundle startAnimationBundle;
55 method protected abstract android.os.Bundle extraCommand(java.lang.String, android.os.Bundle);
56 method protected abstract boolean mayLaunchUrl(android.support.customtabs.CustomTabsSessionToken, android.net.Uri, android.os.Bundle, java.util.List<android.os.Bundle>);
71 method public boolean mayLaunchUrl(android.net.Uri, android.os.Bundle, java.util.List<android.os.Bundle>)
    [all...]
current.txt 5 method public void extraCallback(java.lang.String, android.os.Bundle);
6 method public void onNavigationEvent(int, android.os.Bundle);
15 method public android.os.Bundle extraCommand(java.lang.String, android.os.Bundle);
36 field public final android.os.Bundle startAnimationBundle;
55 method protected abstract android.os.Bundle extraCommand(java.lang.String, android.os.Bundle);
56 method protected abstract boolean mayLaunchUrl(android.support.customtabs.CustomTabsSessionToken, android.net.Uri, android.os.Bundle, java.util.List<android.os.Bundle>);
71 method public boolean mayLaunchUrl(android.net.Uri, android.os.Bundle, java.util.List<android.os.Bundle>)
    [all...]
  /frameworks/support/v4/api21/android/support/v4/media/session/
MediaSessionCompatApi21.java 29 import android.os.Bundle;
87 public static void sendSessionEvent(Object sessionObj, String event, Bundle extras) {
131 public static void setExtras(Object sessionObj, Bundle extras) {
136 public void onCommand(String command, Bundle extras, ResultReceiver cb);
139 public void onPlayFromMediaId(String mediaId, Bundle extras);
140 public void onPlayFromSearch(String search, Bundle extras);
150 public void onCustomAction(String action, Bundle extras);
161 public void onCommand(String command, Bundle args, ResultReceiver cb) {
177 public void onPlayFromMediaId(String mediaId, Bundle extras) {
182 public void onPlayFromSearch(String search, Bundle extras)
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
FragmentStatePagerAdapter.java 21 import android.os.Bundle;
174 Bundle state = null;
176 state = new Bundle();
185 state = new Bundle();
197 Bundle bundle = (Bundle)state; local
198 bundle.setClassLoader(loader);
199 Parcelable[] fss = bundle.getParcelableArray("states");
207 Iterable<String> keys = bundle.keySet()
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
FragmentStatePagerAdapter2.java 22 import android.os.Bundle;
158 Bundle state = null;
160 state = new Bundle();
169 state = new Bundle();
180 Bundle bundle = (Bundle)state; local
181 bundle.setClassLoader(loader);
184 Parcelable[] fss = bundle.getParcelableArray("states");
192 Iterable<String> keys = bundle.keySet()
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentCustomAnimations.java 24 import android.os.Bundle;
40 protected void onCreate(Bundle savedInstanceState) {
63 public void onSaveInstanceState(Bundle outState) {
100 Bundle args = new Bundle();
111 public void onCreate(Bundle savedInstanceState) {
122 Bundle savedInstanceState) {
FragmentStack.java 24 import android.os.Bundle;
36 protected void onCreate(Bundle savedInstanceState) {
65 public void onSaveInstanceState(Bundle outState) {
99 Bundle args = new Bundle();
110 public void onCreate(Bundle savedInstanceState) {
121 Bundle savedInstanceState) {
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
FragmentPagerSupport.java 25 import android.os.Bundle;
49 protected void onCreate(Bundle savedInstanceState) {
100 Bundle args = new Bundle();
111 public void onCreate(Bundle savedInstanceState) {
122 Bundle savedInstanceState) {
130 public void onActivityCreated(Bundle savedInstanceState) {
FragmentStatePagerSupport.java 25 import android.os.Bundle;
49 protected void onCreate(Bundle savedInstanceState) {
100 Bundle args = new Bundle();
111 public void onCreate(Bundle savedInstanceState) {
122 Bundle savedInstanceState) {
130 public void onActivityCreated(Bundle savedInstanceState) {
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentCustomAnimationSupport.java 25 import android.os.Bundle;
37 protected void onCreate(Bundle savedInstanceState) {
60 public void onSaveInstanceState(Bundle outState) {
97 Bundle args = new Bundle();
108 public void onCreate(Bundle savedInstanceState) {
119 Bundle savedInstanceState) {
FragmentPagerSupport.java 22 import android.os.Bundle;
48 protected void onCreate(Bundle savedInstanceState) {
99 Bundle args = new Bundle();
110 public void onCreate(Bundle savedInstanceState) {
121 Bundle savedInstanceState) {
129 public void onActivityCreated(Bundle savedInstanceState) {
FragmentStackSupport.java 26 import android.os.Bundle;
38 protected void onCreate(Bundle savedInstanceState) {
72 public void onSaveInstanceState(Bundle outState) {
106 Bundle args = new Bundle();
117 public void onCreate(Bundle savedInstanceState) {
128 Bundle savedInstanceState) {
FragmentStatePagerSupport.java 26 import android.os.Bundle;
49 protected void onCreate(Bundle savedInstanceState) {
100 Bundle args = new Bundle();
111 public void onCreate(Bundle savedInstanceState) {
122 Bundle savedInstanceState) {
130 public void onActivityCreated(Bundle savedInstanceState) {

Completed in 148 milliseconds

<<21222324252627282930>>