/frameworks/support/v4/donut/android/support/v4/app/ |
RemoteInputCompatBase.java | 19 import android.os.Bundle; 28 protected abstract Bundle getExtras(); 32 CharSequence[] choices, boolean allowFreeFormInput, Bundle extras);
|
/packages/apps/UnifiedEmail/src/com/android/mail/ |
ConversationListContext.java | 21 import android.os.Bundle; 65 * De-serializes a context from a bundle. 67 public static ConversationListContext forBundle(Bundle bundle) { 70 Account account = bundle.getParcelable(Utils.EXTRA_ACCOUNT); 71 Folder folder = bundle.getParcelable(Utils.EXTRA_FOLDER); 72 return new ConversationListContext(account, bundle.getString(EXTRA_SEARCH_QUERY), folder); 96 * To create a class, use the static {@link #forFolder} or {@link #forBundle(Bundle)} method. 117 * Serializes the context to a bundle. 119 public Bundle toBundle() [all...] |
/cts/tests/tests/telephony/src/android/telephony/gsm/cts/ |
GsmCellLocationTest.java | 19 import android.os.Bundle; 31 Bundle bundle = new Bundle(); local 37 gsmCellLocation.fillInNotifierBundle(bundle); 38 gsmCellLocation = new GsmCellLocation(bundle);
|
/development/samples/SupportPercentDemos/src/com/example/android/support/percent/ |
SupportPercentDemos.java | 21 import android.os.Bundle; 35 protected void onCreate(Bundle savedInstanceState) { 50 Bundle args = new Bundle(); 76 Bundle savedInstanceState) { 77 Bundle args = getArguments();
|
/external/icu/icu4c/source/io/ |
locbund.h | 57 * @param bundle The ULocaleBundle to clone. 61 u_locbund_clone(const ULocaleBundle *bundle);*/ 65 * @param bundle The ULocaleBundle to delete 68 u_locbund_close(ULocaleBundle *bundle); 72 * @param bundle The ULocaleBundle to use 76 u_locbund_getNumberFormat(ULocaleBundle *bundle, UNumberFormatStyle style);
|
/packages/apps/ExactCalculator/src/com/android/calculator2/ |
AlertDialogFragment.java | 24 import android.os.Bundle; 35 final Bundle args = new Bundle(); 49 public Dialog onCreateDialog(Bundle savedInstanceState) { 50 final Bundle args = getArguments() == null ? Bundle.EMPTY : getArguments();
|
Licenses.java | 4 import android.os.Bundle; 13 protected void onCreate(Bundle savedInstanceState) {
|
/packages/apps/Settings/src/com/android/settings/net/ |
SummaryForAllUidLoader.java | 24 import android.os.Bundle; 33 private final Bundle mArgs; 35 public static Bundle buildArgs(NetworkTemplate template, long start, long end) { 36 final Bundle args = new Bundle(); 43 public SummaryForAllUidLoader(Context context, INetworkStatsSession session, Bundle args) {
|
/prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.3/ |
gson-2.3.pom | 134 <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment> 136 <Bundle-Version>${project.version}</Bundle-Version> 137 <Bundle-ContactAddress>http://code.google.com/p/google-gson/</Bundle-ContactAddress> 138 <Bundle-Vendor>Google Gson Project</Bundle-Vendor> 139 <Bundle-Name>${project.name}</Bundle-Name [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/ |
CalibrationPreferenceActivity.java | 7 import android.os.Bundle; 20 protected void onCreate(Bundle savedInstanceState) {
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/ |
ProtocolParamsEmulatorActivity.java | 4 import android.os.Bundle; 11 protected void onCreate(Bundle savedInstanceState) {
|
/developers/build/prebuilts/gradle/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/ |
MainActivity.java | 22 import android.os.Bundle; 38 protected void onCreate(Bundle savedInstanceState) { 65 // We need to create a bundle containing the query string to send along to the 67 Bundle bundle = new Bundle(); local 68 bundle.putString(QUERY_KEY, query); 73 getLoaderManager().restartLoader(CONTACT_QUERY_LOADER, bundle, loaderCallbacks);
|
/developers/samples/android/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/ |
WidgetDataFragment.java | 3 import android.os.Bundle; 16 public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
/developers/samples/android/content/contacts/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/ |
MainActivity.java | 22 import android.os.Bundle; 38 protected void onCreate(Bundle savedInstanceState) { 65 // We need to create a bundle containing the query string to send along to the 67 Bundle bundle = new Bundle(); local 68 bundle.putString(QUERY_KEY, query); 73 getLoaderManager().restartLoader(CONTACT_QUERY_LOADER, bundle, loaderCallbacks);
|
/development/samples/ApiDemos/src/com/example/android/apis/content/ |
ProcessTextLauncher.java | 4 import android.os.Bundle; 14 protected void onCreate(Bundle savedInstanceState) {
|
/development/samples/browseable/BasicContactables/src/com.example.android.basiccontactables/ |
MainActivity.java | 22 import android.os.Bundle; 38 protected void onCreate(Bundle savedInstanceState) { 65 // We need to create a bundle containing the query string to send along to the 67 Bundle bundle = new Bundle(); local 68 bundle.putString(QUERY_KEY, query); 73 getLoaderManager().restartLoader(CONTACT_QUERY_LOADER, bundle, loaderCallbacks);
|
/external/icu/icu4c/source/extra/uconv/unicode/ |
uwmsg.h | 7 Get a message out of the default resource bundle, messageformat it, 18 /* Set the path to wmsg's bundle.
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ICUResourceTableAccess.java | 18 * Utility to fetch locale display data from resource bundle tables. Convenience 23 ICUResourceBundle bundle = (ICUResourceBundle) UResourceBundle. local 25 return getTableString(bundle, tableName, null, itemName); 29 * Utility to fetch locale display data from resource bundle tables. Uses fallback 32 public static String getTableString(ICUResourceBundle bundle, String tableName, 37 ICUResourceBundle table = bundle.findWithFallback(tableName); 83 bundle = (ICUResourceBundle) UResourceBundle.getBundleInstance( 84 bundle.getBaseName(), fallbackLocale);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
UResourceBundleIterator.java | 37 private UResourceBundle bundle; field in class:UResourceBundleIterator 41 * Construct a resource bundle iterator for the 42 * given resource bundle 44 * @param bndl The resource bundle to iterate over 48 bundle = bndl; 49 size = bundle.getSize(); 60 return bundle.get(index++); 73 return bundle.getString(index++);
|
/external/slf4j/osgi-over-slf4j/src/main/java/org/slf4j/osgi/logservice/impl/ |
LogServiceFactory.java | 35 import org.osgi.framework.Bundle; 49 * @see org.osgi.framework.ServiceFactory#getService(org.osgi.framework.Bundle, 52 public Object getService(Bundle bundle, ServiceRegistration arg1) { 53 return new LogServiceImpl(bundle); 59 * @see org.osgi.framework.ServiceFactory#ungetService(org.osgi.framework.Bundle, 62 public void ungetService(Bundle bundle, ServiceRegistration arg1, Object arg2) {
|
/frameworks/base/core/java/android/os/ |
Bundle.aidl | 1 /* //device/java/android/android/os/Bundle.aidl 20 parcelable Bundle;
|
/frameworks/base/core/java/android/speech/ |
IRecognitionListener.aidl | 19 import android.os.Bundle; 33 void onReadyForSpeech(in Bundle params); 69 * @param results a Bundle containing the most likely results (N-best list). 71 void onResults(in Bundle results); 76 * @param results a Bundle containing the current most likely result. 78 void onPartialResults(in Bundle results); 84 * @param params a Bundle containing the passed parameters 86 void onEvent(in int eventType, in Bundle params);
|
/frameworks/base/media/java/android/service/media/ |
IMediaBrowserService.aidl | 8 import android.os.Bundle; 17 void connect(String pkg, in Bundle rootHints, IMediaBrowserServiceCallbacks callbacks);
|
/frameworks/support/customtabs/src/android/support/customtabs/ |
CustomTabsIntent.java | 27 import android.os.Bundle; 37 * Class holding the {@link Intent} and start bundle for a Custom Tabs Activity. 83 * Bundle used for adding a custom action button to the custom tab toolbar. The client should 112 * Use an {@code ArrayList<Bundle>} for specifying menu related params. There should be a 113 * separate {@link Bundle} for each custom menu item. 124 * Bundle constructed out of {@link ActivityOptions} that will be running when the 138 * A {@link Bundle} containing the start animation for the Custom Tabs Activity. 140 @Nullable public final Bundle startAnimationBundle; 156 private CustomTabsIntent(Intent intent, Bundle startAnimationBundle) { 166 private ArrayList<Bundle> mMenuItems = null 188 Bundle bundle = new Bundle(); local 233 Bundle bundle = new Bundle(); local 249 Bundle bundle = new Bundle(); local 280 Bundle bundle = local [all...] |
/libcore/luni/src/main/java/java/util/ |
MissingResourceException.java | 23 * resource bundle cannot be found or a resource is missing from a resource 24 * bundle. 37 * message, the class name of the resource bundle and the name of the 43 * the class name of the resource bundle. 55 * Returns the class name of the resource bundle from which a resource could 57 * missing resource bundle. 59 * @return the class name of the resource bundle. 67 * resource bundle is missing.
|