Searched defs:options (Results 1 - 10 of 10) sorted by relevance

/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
H A DAuthenticator.java65 String authTokenType, String[] requiredFeatures, Bundle options) {
76 AccountAuthenticatorResponse response, Account account, Bundle options) {
64 addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options) argument
75 confirmCredentials( AccountAuthenticatorResponse response, Account account, Bundle options) argument
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
H A DLatinKeyboard.java53 * This looks at the ime options given by the current editor, to set the
56 void setImeOptions(Resources res, int options) { argument
61 switch (options&(EditorInfo.IME_MASK_ACTION|EditorInfo.IME_FLAG_NO_ENTER_ACTION)) {
/development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
H A DNonsenseGenerator.java155 private String pickOneOf(String ... options) { argument
156 return options[mRandom.nextInt(options.length)];
/development/ndk/platforms/android-3/include/linux/mtd/
H A Dbbm.h18 int options; member in struct:nand_bbt_descr
64 int options; member in struct:bbm_info
H A Dnand.h109 #define NAND_CANAUTOINCR(chip) (!(chip->options & NAND_NO_AUTOINCR))
110 #define NAND_MUST_PAD(chip) (!(chip->options & NAND_NO_PADDING))
111 #define NAND_HAS_CACHEPROG(chip) ((chip->options & NAND_CACHEPRG))
112 #define NAND_HAS_COPYBACK(chip) ((chip->options & NAND_COPYBACK))
201 unsigned int options; member in struct:nand_chip
248 unsigned long options; member in struct:nand_flash_dev
257 int options; member in struct:nand_bbt_descr
308 unsigned int options; member in struct:platform_nand_chip
/development/ndk/platforms/android-9/arch-mips/include/asm/
H A Dcpu-info.h44 unsigned long options; member in struct:cpuinfo_mips
/development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
H A DImageResizer.java115 final BitmapFactory.Options options = new BitmapFactory.Options();
116 options.inJustDecodeBounds = true;
117 BitmapFactory.decodeResource(res, resId, options);
120 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
123 options.inJustDecodeBounds = false;
124 return BitmapFactory.decodeResource(res, resId, options);
140 final BitmapFactory.Options options = new BitmapFactory.Options();
141 options.inJustDecodeBounds = true;
142 BitmapFactory.decodeFile(filename, options);
191 calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) argument
[all...]
/development/ndk/platforms/android-3/include/
H A Djni.h1103 JavaVMOption* options; member in struct:JavaVMInitArgs
/development/samples/training/AnimationsDemo/libs/
H A Dandroid-support-v13.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v13/ android/support/v13/app/ ...
/development/samples/training/bitmapfun/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/widget/ ...

Completed in 1647 milliseconds