/external/kernel-headers/original/linux/ |
smb.h | 44 /* Connection-Options */ 50 /* The following are LANMAN 1.0 options */ 57 /* The following are NT LM 0.12 options */
|
/external/qemu/android/ |
cmdline-option.h | 28 #include "android/cmdline-options.h" 32 /* parse command-line arguments options and remove them from (argc,argv) 33 * 'opt' will be set to the content of parsed options
|
/external/v8/tools/ |
process-heap-prof.py | 37 # ('-c' enables color, see hp2ps manual page for more options) 45 def ProcessLogFile(filename, options): 46 if options.js_cons_profile: 77 if options.count: 79 if options.size: 99 def ProcessOptions(options): 100 if not options.size and not options.count: 101 options.size = True 107 (options, args) = parser.parse_args( [all...] |
/external/webkit/WebCore/manual-tests/ |
select-option-in-onload.html | 9 for (var i = 0; i < myPopup.options.length; i++) { 10 if (myPopup.options[i].value == "2") 11 myPopup.options[i].selected = true;
|
/external/webkit/WebCore/platform/graphics/gtk/ |
FontPlatformDataGtk.cpp | 65 const cairo_font_options_t* options = NULL; local 113 options = gdk_screen_get_font_options(screen); 115 // gdk_screen_get_font_options() returns NULL if no default options are 117 if (!options) 118 options = defaultOptions; 120 m_scaledFont = cairo_scaled_font_create(fontFace, &fontMatrix, &ctm, options); 150 const cairo_font_options_t* options = NULL; local 153 options = gdk_screen_get_font_options(screen); 155 // gdk_screen_get_font_options() returns NULL if no default options are 157 if (!options) [all...] |
/packages/apps/Email/src/com/android/email/service/ |
EasAuthenticatorService.java | 54 String authTokenType, String[] requiredFeatures, Bundle options) 59 if (options != null && options.containsKey(OPTIONS_PASSWORD) 60 && options.containsKey(OPTIONS_USERNAME)) { 61 final Account account = new Account(options.getString(OPTIONS_USERNAME), 64 account, options.getString(OPTIONS_PASSWORD), null); 69 if (options.containsKey(OPTIONS_CONTACTS_SYNC_ENABLED) && 70 options.getBoolean(OPTIONS_CONTACTS_SYNC_ENABLED)) { 79 if (options.containsKey(OPTIONS_CALENDAR_SYNC_ENABLED) && 80 options.getBoolean(OPTIONS_CALENDAR_SYNC_ENABLED)) [all...] |
/external/chromium/third_party/icu/source/tools/gencfu/ |
gencfu.cpp | 17 // Usage: gencfu [options] -r confusables-file.txt -w whole-script-confusables.txt -o output-file.cfu 19 // options: -v verbose 49 static UOption options[]={ variable 62 printf("Usage: %s [-v] [-options] -r confusablesRules.txt -w wholeScriptConfusables.txt -o output-file\n", progName); 64 "options:\n" 143 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options); 150 if(options[0].doesOccur || options[1].doesOccur) [all...] |
/external/icu4c/tools/gencfu/ |
gencfu.cpp | 17 // Usage: gencfu [options] -r confusables-file.txt -w whole-script-confusables.txt -o output-file.cfu 19 // options: -v verbose 49 static UOption options[]={ variable 62 printf("Usage: %s [-v] [-options] -r confusablesRules.txt -w wholeScriptConfusables.txt -o output-file\n", progName); 64 "options:\n" 143 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options); 150 if(options[0].doesOccur || options[1].doesOccur) [all...] |
/external/webkit/WebKitTools/Scripts/webkitpy/commands/ |
download.py | 87 def _prepare_state(self, options, args, tool): 97 # def _fetch_list_of_patches_to_process(self, options, args, tool): 98 # def _prepare_to_process(self, options, args, tool): 107 def execute(self, options, args, tool): 108 self._prepare_to_process(options, args, tool) 109 patches = self._fetch_list_of_patches_to_process(options, args, tool) 116 self._process_patch(patch, options, args, tool) 124 options = [] 127 options = sorted(set(self._prepare_sequence.options() + self._main_sequence.options()) [all...] |
/packages/apps/Camera/src/com/android/camera/ |
Util.java | 110 public static int computeSampleSize(BitmapFactory.Options options, 112 int initialSize = computeInitialSampleSize(options, minSideLength, 128 private static int computeInitialSampleSize(BitmapFactory.Options options, 130 double w = options.outWidth; 131 double h = options.outHeight; 174 BitmapFactory.Options options = new BitmapFactory.Options(); local [all...] |
/external/icu4c/tools/genrb/ |
genrb.c | 65 UOption options[]={ variable 124 argc = u_parseArgs(argc, argv, (int32_t)(sizeof(options)/sizeof(options[0])), options); 132 if(options[WRITE_POOL_BUNDLE].doesOccur && options[USE_POOL_BUNDLE].doesOccur) { 136 if(options[FORMAT_VERSION].doesOccur) { 137 const char *s = options[FORMAT_VERSION].value; 142 (options[WRITE_POOL_BUNDLE].doesOccur || options[USE_POOL_BUNDLE].doesOccur [all...] |
/bionic/libc/unistd/ |
getopt_long.c | 76 #define PRINT_ERROR ((opterr) && (*options != ':')) 78 #define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */ 79 #define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */ 84 #define BADARG ((*options == ':') ? (int)':' : (int)'?') 100 static int nonopt_end = -1; /* first option after non options (for permute) */ 167 * Parse long options in argc/argv argument vector. 171 parse_long_options(char * const *nargv, const char *options, 292 getopt_internal(int nargc, char * const *nargv, const char *options, 299 if (options == NULL) 303 * Disable GNU extensions if POSIXLY_CORRECT is set or options [all...] |
/frameworks/ex/common/java/com/android/common/ |
OperationScheduler.java | 37 /** Tunable parameter options for {@link #getNextTimeMillis}. */ 38 public static class Options { 57 "OperationScheduler.Options[backoff=%.1f+%.1f max=%.1f min=%.1f period=%.1f]", 76 * Parse scheduler options supplied in this string form: 86 * The default options: <code>backoff=0+5 max=86400 min=0 period=0</code><br> 90 * @param spec describing some or all scheduler options. 91 * @param options to update with parsed values. 92 * @return the options passed in (for convenience) 95 public static Options parseOptions(String spec, Options options [all...] |
/external/chromium/third_party/icu/public/common/unicode/ |
unorm.h | 148 * Constants for options flags for normalization. 149 * Use 0 for default options, 156 * Options bit set value to select Unicode 3.2 normalization 165 * Lowest-order bit number of unorm_compare() options bits corresponding to 166 * normalization options bits. 168 * The options parameter for unorm_compare() uses most bits for 172 * (That is, from unorm_compare(..., options, ...), 173 * options>>UNORM_COMPARE_NORM_OPTIONS_SHIFT will be passed on to the 184 * and options. 191 * @param options The normalization options, ORed together (0 for no options) [all...] |
/external/icu4c/common/unicode/ |
unorm.h | 154 * Constants for options flags for normalization. 155 * Use 0 for default options, 162 * Options bit set value to select Unicode 3.2 normalization 171 * Lowest-order bit number of unorm_compare() options bits corresponding to 172 * normalization options bits. 174 * The options parameter for unorm_compare() uses most bits for 178 * (That is, from unorm_compare(..., options, ...), 179 * options>>UNORM_COMPARE_NORM_OPTIONS_SHIFT will be passed on to the 190 * and options. 197 * @param options The normalization options, ORed together (0 for no options) [all...] |
/external/webkit/JavaScriptCore/icu/unicode/ |
unorm.h | 148 * Constants for options flags for normalization. 149 * Use 0 for default options, 156 * Options bit set value to select Unicode 3.2 normalization 165 * Lowest-order bit number of unorm_compare() options bits corresponding to 166 * normalization options bits. 168 * The options parameter for unorm_compare() uses most bits for 172 * (That is, from unorm_compare(..., options, ...), 173 * options>>UNORM_COMPARE_NORM_OPTIONS_SHIFT will be passed on to the 184 * and options. 190 * @param options The normalization options, ORed together (0 for no options) [all...] |
/external/webkit/WebCore/icu/unicode/ |
unorm.h | 148 * Constants for options flags for normalization. 149 * Use 0 for default options, 156 * Options bit set value to select Unicode 3.2 normalization 165 * Lowest-order bit number of unorm_compare() options bits corresponding to 166 * normalization options bits. 168 * The options parameter for unorm_compare() uses most bits for 172 * (That is, from unorm_compare(..., options, ...), 173 * options>>UNORM_COMPARE_NORM_OPTIONS_SHIFT will be passed on to the 184 * and options. 190 * @param options The normalization options, ORed together (0 for no options) [all...] |
/external/webkit/WebKit/mac/icu/unicode/ |
unorm.h | 148 * Constants for options flags for normalization. 149 * Use 0 for default options, 156 * Options bit set value to select Unicode 3.2 normalization 165 * Lowest-order bit number of unorm_compare() options bits corresponding to 166 * normalization options bits. 168 * The options parameter for unorm_compare() uses most bits for 172 * (That is, from unorm_compare(..., options, ...), 173 * options>>UNORM_COMPARE_NORM_OPTIONS_SHIFT will be passed on to the 184 * and options. 190 * @param options The normalization options, ORed together (0 for no options) [all...] |
/frameworks/base/docs/html/sdk/api_diff/4/changes/ |
android.graphics.BitmapFactory.Options.html | 10 android.graphics.BitmapFactory.Options 74 Class android.graphics.<A HREF="../../../../reference/android/graphics/BitmapFactory.Options.html" target="_top"><font size="+2"><code>BitmapFactory.Options</code></font></A> 87 <A NAME="android.graphics.BitmapFactory.Options.inDensity"></A> 88 <nobr><code>int</code> <A HREF="../../../../reference/android/graphics/BitmapFactory.Options.html#inDensity" target="_top"><code>inDensity</code></A></nobr> 94 <A NAME="android.graphics.BitmapFactory.Options.inInputShareable"></A> 95 <nobr><code>boolean</code> <A HREF="../../../../reference/android/graphics/BitmapFactory.Options.html#inInputShareable" target="_top"><code>inInputShareable</code></A></nobr> 101 <A NAME="android.graphics.BitmapFactory.Options.inPurgeable"></A> 102 <nobr><code>boolean</code> <A HREF="../../../../reference/android/graphics/BitmapFactory.Options.html#inPurgeable" target="_top"><code>inPurgeable</code></A></nobr> 108 <A NAME="android.graphics.BitmapFactory.Options.inScaled"></A [all...] |
/external/chromium/third_party/icu/source/tools/ctestfw/ |
uperf.cpp | 22 "Usage: %s [OPTIONS] [FILES]\n" 24 "Options:\n" 61 static UOption options[OPTIONS_COUNT+20]={ variable 113 // add specific options 116 memcpy(options+optionsCount, addOptions, addOptionsCount*sizeof(UOption)); 121 _remainingArgc = u_parseArgs(_argc, (char**)_argv, optionsCount, options); 123 // copy back values for additional options 125 memcpy(addOptions, options+OPTIONS_COUNT, addOptionsCount*sizeof(UOption)); 129 if(_argc==1 || options[HELP1].doesOccur || options[HELP2].doesOccur) [all...] |
/external/icu4c/tools/ctestfw/ |
uperf.cpp | 22 "Usage: %s [OPTIONS] [FILES]\n" 24 "Options:\n" 61 static UOption options[OPTIONS_COUNT+20]={ variable 113 // add specific options 116 memcpy(options+optionsCount, addOptions, addOptionsCount*sizeof(UOption)); 121 _remainingArgc = u_parseArgs(_argc, (char**)_argv, optionsCount, options); 123 // copy back values for additional options 125 memcpy(addOptions, options+OPTIONS_COUNT, addOptionsCount*sizeof(UOption)); 129 if(_argc==1 || options[HELP1].doesOccur || options[HELP2].doesOccur) [all...] |
/external/webkit/WebKitTools/Scripts/webkitpy/ |
multicommandtool.py | 32 # tool-name [global options] command-name [command options] 45 def __init__(self, help_text, argument_names=None, options=None, long_help=None, requires_local_commits=False): 50 self.options = options 55 self.option_parser = HelpPrintingOptionParser(usage=SUPPRESS_USAGE, add_help_option=False, option_list=self.options) 65 options = self.options or [] 66 for option in options: 94 if self.options [all...] |
/external/iproute2/man/man8/ |
lnstat.8 | 6 .RI [ options ] 15 .SH OPTIONS 17 options starting with two dashes (`-'). 18 lnstat supports the following options. 21 Show summary of options.
|
/external/webkit/WebKitTools/Scripts/webkitpy/steps/ |
checkstyle.py | 33 from webkitpy.steps.options import Options 38 def options(cls): member in class:CheckStyle 40 Options.non_interactive, 41 Options.check_style,
|
metastep.py | 35 def __init__(self, tool, options): 36 AbstractStep.__init__(self, tool, options) 39 self._step_instances.append(step_class(tool, options)) 45 collected_options = collected_options + step.options() 49 def options(cls): member in class:MetaStep
|