HomeSort by relevance Sort by last modified time
    Searched full:bundle (Results 1 - 25 of 2077) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tools/aapt/
Main.h 13 #include "Bundle.h"
17 extern int doVersion(Bundle* bundle);
18 extern int doList(Bundle* bundle);
19 extern int doDump(Bundle* bundle);
20 extern int doAdd(Bundle* bundle);
21 extern int doRemove(Bundle* bundle)
    [all...]
Images.h 12 status_t preProcessImage(Bundle* bundle, const sp<AaptAssets>& assets,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/META-INF/
MANIFEST.MF 2 Bundle-ManifestVersion: 2
3 Bundle-Name: Android Plugin Tests
4 Bundle-SymbolicName: com.android.ide.eclipse.tests
5 Bundle-Version: 0.9.9.qualifier
6 Bundle-Activator: com.android.ide.eclipse.tests.AndroidTestPlugin
7 Require-Bundle: org.eclipse.ui,
16 Bundle-ActivationPolicy: lazy
17 Bundle-Vendor: The Android Open Source Project
18 Bundle-ClassPath: kxml2-2.3.0.jar,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
Whitelist.java 19 import android.os.Bundle;
27 private List<Bundle> mConditions;
30 mConditions = new ArrayList<Bundle>();
33 public Whitelist(List<Bundle> conditions) {
38 Bundle bundle = new Bundle(); local
39 bundle.putString("packageName", app);
40 mConditions.add(bundle);
47 for (Bundle condition : mConditions)
    [all...]
FieldContext.java 19 import android.os.Bundle;
44 Bundle mFieldInfo;
48 mFieldInfo = new Bundle();
52 if (DBG) Log.i("FieldContext", "Bundle = " + mFieldInfo.toString());
62 private static void addEditorInfoToBundle(EditorInfo info, Bundle bundle) {
67 bundle.putString(LABEL, safeToString(info.label));
68 bundle.putString(HINT, safeToString(info.hintText));
69 bundle.putString(PACKAGE_NAME, safeToString(info.packageName));
70 bundle.putInt(FIELD_ID, info.fieldId)
    [all...]
  /external/chromium/base/
native_library_mac.mm 36 CFBundleRef bundle = CFBundleCreate(kCFAllocatorDefault, url.get());
37 if (!bundle)
41 native_lib->type = BUNDLE;
42 native_lib->bundle = bundle;
43 native_lib->bundle_resource_ref = CFBundleOpenBundleResourceMap(bundle);
49 if (library->type == BUNDLE) {
50 CFBundleCloseBundleResourceMap(library->bundle,
52 CFRelease(library->bundle);
62 if (library->type == BUNDLE) {
    [all...]
  /cts/tests/src/android/content/cts/
MockAccountAuthenticator.java 25 import android.os.Bundle;
40 private Bundle createResultBundle() {
41 Bundle result = new Bundle();
50 public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
51 String authTokenType, String[] requiredFeatures, Bundle options)
57 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
62 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account,
63 String authTokenType, Bundle options) throws NetworkErrorException {
68 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
Authenticator.java 25 import android.os.Bundle;
48 public Bundle addAccount(AccountAuthenticatorResponse response,
50 Bundle options) {
56 final Bundle bundle = new Bundle(); local
57 bundle.putParcelable(AccountManager.KEY_INTENT, intent);
58 return bundle;
65 public Bundle confirmCredentials(AccountAuthenticatorResponse response,
66 Account account, Bundle options)
82 final Bundle bundle = new Bundle(); local
130 final Bundle bundle = new Bundle(); local
177 final Bundle bundle = new Bundle(); local
    [all...]
  /frameworks/base/core/java/android/os/
RemoteCallback.java 29 final Bundle mResult;
31 DeliverResult(Bundle result) {
41 public void sendResult(Bundle bundle) {
42 mHandler.post(new DeliverResult(bundle));
51 protected void onResult(Bundle bundle) {
65 public void sendResult(Bundle bundle) throws RemoteException {
66 mTarget.sendResult(bundle);
    [all...]
  /external/chromium/third_party/icu/source/test/testdata/
testempty.txt 7 // empty resource bundle test
  /external/icu4c/test/testdata/
testempty.txt 7 // empty resource bundle test
  /libcore/luni/src/test/java/tests/api/java/util/
ResourceBundleTest.java 61 ResourceBundle bundle; local
66 bundle = ResourceBundle.getBundle(name, new Locale("fr", "FR", "VAR"));
67 assertEquals("Wrong bundle fr_FR_VAR", "frFRVARValue4", bundle.getString("parent4")
69 bundle = ResourceBundle.getBundle(name, new Locale("fr", "FR", "v1"));
70 assertEquals("Wrong bundle fr_FR_v1",
71 "frFRValue4", bundle.getString("parent4"));
72 bundle = ResourceBundle.getBundle(name, new Locale("fr", "US", "VAR"));
73 assertEquals("Wrong bundle fr_US_var", "frValue4", bundle.getString("parent4"
146 ResourceBundle bundle = ResourceBundle.getBundle(name, Locale local
198 ResourceBundle bundle; local
301 ResourceBundle bundle; local
334 ResourceBundle bundle; local
385 ResourceBundle bundle; local
424 ResourceBundle bundle; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/templates/
java_file.template 4 import android.os.Bundle;
9 public void onCreate(Bundle savedInstanceState) {
  /sdk/templates/
java_file.template 4 import android.os.Bundle;
10 public void onCreate(Bundle savedInstanceState)
  /external/chromium/third_party/icu/source/io/
locbund.c 107 u_locbund_clone(const ULocaleBundle *bundle)
116 result->fLocale = (char*) uprv_malloc(strlen(bundle->fLocale) + 1);
122 strcpy(result->fLocale, bundle->fLocale );
127 result->fNumberFormat[styleIdx] = unum_clone(bundle->fNumberFormat[styleIdx], &status);
136 result->fDateFormat = (bundle->fDateFormat == 0 ? 0 :
137 udat_clone(bundle->fDateFormat, &status));
138 result->fTimeFormat = (bundle->fTimeFormat == 0 ? 0 :
139 udat_clone(bundle->fTimeFormat, &status));
145 u_locbund_close(ULocaleBundle *bundle)
149 uprv_free(bundle->fLocale)
    [all...]
  /external/icu4c/io/
locbund.c 107 u_locbund_clone(const ULocaleBundle *bundle)
116 result->fLocale = (char*) uprv_malloc(strlen(bundle->fLocale) + 1);
122 strcpy(result->fLocale, bundle->fLocale );
127 result->fNumberFormat[styleIdx] = unum_clone(bundle->fNumberFormat[styleIdx], &status);
136 result->fDateFormat = (bundle->fDateFormat == 0 ? 0 :
137 udat_clone(bundle->fDateFormat, &status));
138 result->fTimeFormat = (bundle->fTimeFormat == 0 ? 0 :
139 udat_clone(bundle->fTimeFormat, &status));
145 u_locbund_close(ULocaleBundle *bundle)
149 uprv_free(bundle->fLocale)
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NoteEdit.java 21 import android.os.Bundle;
33 protected void onCreate(Bundle savedInstanceState) {
44 Bundle extras = getIntent().getExtras();
61 Bundle bundle = new Bundle();
63 bundle.putString(NotesDbAdapter.KEY_TITLE, mTitleText.getText().toString());
64 bundle.putString(NotesDbAdapter.KEY_BODY, mBodyText.getText().toString());
66 bundle.putLong(NotesDbAdapter.KEY_ROWID, mRowId);
70 mIntent.putExtras(bundle);
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NoteEdit.java 21 import android.os.Bundle;
33 protected void onCreate(Bundle savedInstanceState) {
44 Bundle extras = getIntent().getExtras();
61 Bundle bundle = new Bundle();
63 bundle.putString(NotesDbAdapter.KEY_TITLE, mTitleText.getText().toString());
64 bundle.putString(NotesDbAdapter.KEY_BODY, mBodyText.getText().toString());
66 bundle.putLong(NotesDbAdapter.KEY_ROWID, mRowId);
70 mIntent.putExtras(bundle);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/META-INF/
MANIFEST.MF 2 Bundle-ManifestVersion: 2
3 Bundle-Name: Dalvik Debug Monitor Service
4 Bundle-SymbolicName: com.android.ide.eclipse.ddms;singleton:=true
5 Bundle-Version: 0.9.9.qualifier
6 Bundle-Activator: com.android.ide.eclipse.ddms.DdmsPlugin
7 Bundle-Vendor: The Android Open Source Project
8 Bundle-Localization: plugin
9 Require-Bundle: org.eclipse.ui,
33 Bundle-ClassPath: .,
  /external/icu4c/tools/genrb/
reslist.c 30 * Align binary data at a 16-byte offset from the start of the resource bundle,
53 * for use in non-error cases when no resource is to be added to the bundle.
101 bundle_compactStrings(struct SRBRoot *bundle, UErrorCode *status);
110 res_write16(struct SRBRoot *bundle, struct SResource *res,
124 * before actually writing the bundle contents to the file,
129 struct SRBRoot *bundle, struct SResource *res,
139 struct SRBRoot *bundle, struct SResource *res,
143 reserve16BitUnits(struct SRBRoot *bundle, int32_t length, UErrorCode *status) {
147 if ((bundle->f16BitUnitsLength + length) > bundle->f16BitUnitsCapacity)
1059 struct SRBRoot *bundle; local
1440 const struct SRBRoot *bundle=(const struct SRBRoot *)context; local
    [all...]
  /external/chromium/third_party/icu/source/tools/genrb/
reslist.h 35 /* Resource bundle root table */
48 void bundle_write(struct SRBRoot *bundle, const char *outputDir, const char *outputPkg, char *writtenFilename, int writtenFilenameLen, UErrorCode *status);
51 void bundle_write_java(struct SRBRoot *bundle, const char *outputDir, const char* outputEnc, char *writtenFilename,
56 /* void bundle_write_xml(struct SRBRoot *bundle, const char *outputDir,const char* outputEnc,
60 void bundle_write_xml(struct SRBRoot *bundle, const char *outputDir,const char* outputEnc, const char* rbname,
63 void bundle_close(struct SRBRoot *bundle, UErrorCode *status);
64 void bundle_setlocale(struct SRBRoot *bundle, UChar *locale, UErrorCode *status);
65 int32_t bundle_addtag(struct SRBRoot *bundle, const char *tag, UErrorCode *status);
72 * for use in non-error cases when no resource is to be added to the bundle.
84 struct SResource* table_open(struct SRBRoot *bundle, char *tag, const struct UString* comment, UErrorCode *status)
    [all...]
  /frameworks/base/core/java/android/nfc/
INfcAdapterExtras.aidl 19 import android.os.Bundle;
26 Bundle open(IBinder b);
27 Bundle close();
28 Bundle transceive(in byte[] data_in);
  /packages/apps/Phone/src/com/android/phone/
GsmUmtsCallForwardOptions.java 5 import android.os.Bundle;
42 private Bundle mIcicle;
45 protected void onCreate(Bundle icicle) {
86 Bundle bundle = mIcicle.getParcelable(pref.getKey()); local
87 pref.setToggled(bundle.getBoolean(KEY_TOGGLE));
89 cf.number = bundle.getString(KEY_NUMBER);
90 cf.status = bundle.getInt(KEY_STATUS);
101 protected void onSaveInstanceState(Bundle outState) {
105 Bundle bundle = new Bundle() local
111 outState.putParcelable(pref.getKey(), bundle); local
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ResultReceiverTest.java 25 import android.os.Bundle;
40 args = {int.class, Bundle.class}
45 args = {int.class, Bundle.class}
65 Bundle bundle = new Bundle(); local
67 sender.send(resultCode, bundle);
70 assertSame(bundle, sender.getResultData());
84 private Bundle mResultData;
92 protected void onReceiveResult(int resultCode, Bundle resultData)
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebLocalizableStrings.mm 44 NSBundle *bundle;
52 bundle = mainBundle;
54 bundle = stringsBundle->bundle;
55 if (bundle == nil) {
56 bundle = [NSBundle bundleWithIdentifier:[NSString stringWithUTF8String:stringsBundle->identifier]];
57 ASSERT(bundle);
58 stringsBundle->bundle = bundle;
63 NSString *result = [bundle localizedStringForKey:(NSString *)keyString value:notFound table:nil]
    [all...]

Completed in 544 milliseconds

1 2 3 4 5 6 7 8 91011>>