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

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/e2fsck/
e2fsck.conf.ubuntu 0 [options]
  /external/webkit/LayoutTests/fast/js/resources/
select-options-remove.js 1 description("This test checks the behavior of the remove() method on the select.options object.");
6 debug("1.1 Remove (object) from empty Options");
8 shouldBe("select1.options.remove(value)", "undefined");
9 shouldBe("select1.options.length", "0");
13 debug("1.2 Remove (string) from empty Options");
15 shouldBe("select1.options.remove(value)", "undefined");
16 shouldBe("select1.options.length", "0");
20 debug("1.3 Remove (float) from empty Options");
22 shouldBe("select1.options.remove(value)", "undefined");
23 shouldBe("select1.options.length", "0")
    [all...]
  /external/e2fsprogs/tests/m_std/
script 1 DESCRIPTION="standard filesystem options"
  /external/dhcpcd/
dhcpcd.c 171 add_environ(struct options *options, const char *value, int uniq)
174 char **lst = options->environ;
207 options->environ = newlist;
311 parse_option(int opt, char *oarg, struct options *options)
320 options->options |= DHCPCD_BACKGROUND;
323 strlcpy(options->script, oarg, sizeof(options->script))
631 struct options *options; local
    [all...]
  /frameworks/base/core/jni/android/graphics/
AutoDecodeCancel.h 9 AutoDecoderCancel(jobject options, SkImageDecoder* decoder);
12 static bool RequestCancel(jobject options);
17 jobject fJOptions; // java options object
  /frameworks/base/tools/aidl/
options.h 15 // This struct is the parsed version of the command line options
16 struct Options
30 // takes the inputs from the command line and fills in the Options struct
33 int parse_options(int argc, const char* const* argv, Options *options);
options.cpp 2 #include "options.h"
12 "usage: aidl OPTIONS INPUT [OUTPUT]\n"
15 "OPTIONS:\n"
34 parse_options(int argc, const char* const* argv, Options *options)
42 options->outputFileName = argv[2];
44 options->filesToPreprocess.push_back(argv[i]);
46 options->task = PREPROCESS_AIDL;
50 options->task = COMPILE_AIDL;
51 options->failOnParcelable = false
    [all...]
  /frameworks/ex/common/tests/src/com/android/common/
OperationSchedulerTest.java 47 OperationScheduler.Options options = new OperationScheduler.Options(); local
48 assertEquals(Long.MAX_VALUE, scheduler.getNextTimeMillis(options));
54 assertEquals(beforeTrigger + 1000000, scheduler.getNextTimeMillis(options));
58 assertEquals(beforeTrigger + 1000000, scheduler.getNextTimeMillis(options));
60 assertEquals(beforeTrigger + 1500000, scheduler.getNextTimeMillis(options));
64 assertEquals(Long.MAX_VALUE, scheduler.getNextTimeMillis(options));
66 assertEquals(beforeTrigger + 1500000, scheduler.getNextTimeMillis(options));
73 assertEquals(beforeTrigger + 1500000, scheduler.getNextTimeMillis(options));
124 OperationScheduler.Options options = new OperationScheduler.Options(); local
146 OperationScheduler.Options options = new OperationScheduler.Options(); local
171 OperationScheduler.Options options = new OperationScheduler.Options(); local
    [all...]
  /external/e2fsprogs/tests/m_raid_opt/
script 1 DESCRIPTION="raid options"
  /external/iptables/extensions/
libipt_unclean.man 1 This module takes no options, but attempts to match packets which seem
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
CommandLine.java 33 static Hashtable options = new Hashtable(); static { field in class:CommandLine
34 options.put("--nocdata", Boolean.FALSE); // CDATA elements are normal
35 options.put("--files", Boolean.FALSE); // process arguments as separate files
36 options.put("--reuse", Boolean.FALSE); // reuse a single Parser
37 options.put("--nons", Boolean.FALSE); // no namespaces
38 options.put("--nobogons", Boolean.FALSE); // suppress unknown elements
39 options.put("--any", Boolean.FALSE); // unknowns have ANY content model
40 options.put("--emptybogons", Boolean.FALSE); // unknowns have EMPTY content model
41 options.put("--norootbogons", Boolean.FALSE); // unknowns can't be the root
42 options.put("--pyxin", Boolean.FALSE); // input is PY
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/commands/
download_unittest.py 35 options = Mock()
36 options.force_clean = False
37 options.clean = True
38 options.check_builders = True
39 options.quiet = False
40 options.non_interactive = False
41 options.update = True
42 options.build = True
43 options.test = True
44 options.close_bug = Tru
    [all...]
  /external/jdiff/src/jdiff/
Options.java 8 * Class to handle options for JDiff.
13 public class Options {
16 public Options() {
23 * parse the options it does not recognize. It then calls
27 * The options arrive as case-sensitive strings. For options that
38 // Standard options
57 // Options to control JDiff
62 // Options to control the location of the XML files
69 // Options for the exclusion level for classes and member
    [all...]
  /external/chromium/third_party/icu/source/tools/genccode/
genccode.c 78 static UOption options[]={ variable
102 options[kOptDestDir].value = ".";
104 /* read command line options */
105 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
113 if(argc<0 || options[kOptHelpH].doesOccur || options[kOptHelpQuestionMark].doesOccur) {
115 "usage: %s [-options] filename1 filename2 ...\n"
118 "options:\n
    [all...]
  /external/icu4c/tools/genccode/
genccode.c 78 static UOption options[]={ variable
102 options[kOptDestDir].value = ".";
104 /* read command line options */
105 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
113 if(argc<0 || options[kOptHelpH].doesOccur || options[kOptHelpQuestionMark].doesOccur) {
115 "usage: %s [-options] filename1 filename2 ...\n"
118 "options:\n
    [all...]
  /packages/apps/Gallery/src/com/android/camera/gallery/
UriImage.java 124 private BitmapFactory.Options snifBitmapOptions() {
128 BitmapFactory.Options options = new BitmapFactory.Options(); local
129 options.inJustDecodeBounds = true;
131 input.getFileDescriptor(), options); local
132 return options;
139 BitmapFactory.Options options = snifBitmapOptions(); local
140 return (options != null && options.outMimeType != null
146 BitmapFactory.Options options = snifBitmapOptions(); local
151 BitmapFactory.Options options = snifBitmapOptions(); local
    [all...]
  /external/chromium/third_party/icu/source/test/perf/normperf/
normperf.cpp 74 void NormalizerPerformanceTest::normalizeInput(ULine* dest,const UChar* src ,int32_t srcLen,UNormalizationMode mode, int32_t options){
79 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
83 reqLen= unorm_normalize(src,srcLen,mode, options,dest->name,reqLen+1,&status);
91 UChar* NormalizerPerformanceTest::normalizeInput(int32_t& len, const UChar* src ,int32_t srcLen,UNormalizationMode mode, int32_t options){
97 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
101 reqLen= unorm_normalize(src,srcLen,mode, options,dest,reqLen+1,&status);
113 UOPTION_DEF("options", 'o', UOPT_OPTIONAL_ARG)
117 : UPerfTest(argc,argv,status), options(0) {
137 options=(int32_t)strtol(cmdLineOptions[0].value, NULL, 16);
150 normalizeInput(&NFDFileLines[i],filelines[i].name,filelines[i].len,UNORM_NFD, options);
    [all...]
normperf.h 28 typedef int32_t (*NormFn)(const UChar* src,int32_t srcLen, UChar* dest,int32_t dstLen, int32_t options, UErrorCode* status);
29 typedef int32_t (*QuickCheckFn)(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status);
42 int32_t options; member in class:QuickCheckPerfFunction
49 retVal = (*fn)(lines[i].name,lines[i].len,mode, options, status);
53 retVal = (*fn)(lines[i].name,-1,mode, options, status);
59 retVal = (*fn)(src,srcLen,mode, options, status);
61 retVal = (*fn)(src,-1,mode, options, status);
77 QuickCheckPerfFunction(QuickCheckFn func, ULine* srcLines,int32_t srcNumLines, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) {
87 QuickCheckPerfFunction(QuickCheckFn func, const UChar* source,int32_t sourceLen, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) {
113 int32_t options; member in class:NormPerfFunction
187 int32_t options; member in class:NormalizerPerformanceTest
    [all...]
  /external/icu4c/test/perf/normperf/
normperf.cpp 74 void NormalizerPerformanceTest::normalizeInput(ULine* dest,const UChar* src ,int32_t srcLen,UNormalizationMode mode, int32_t options){
79 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
83 reqLen= unorm_normalize(src,srcLen,mode, options,dest->name,reqLen+1,&status);
91 UChar* NormalizerPerformanceTest::normalizeInput(int32_t& len, const UChar* src ,int32_t srcLen,UNormalizationMode mode, int32_t options){
97 reqLen=unorm_normalize(src,srcLen,mode, options,NULL,0,&status);
101 reqLen= unorm_normalize(src,srcLen,mode, options,dest,reqLen+1,&status);
113 UOPTION_DEF("options", 'o', UOPT_OPTIONAL_ARG)
117 : UPerfTest(argc,argv,status), options(0) {
137 options=(int32_t)strtol(cmdLineOptions[0].value, NULL, 16);
150 normalizeInput(&NFDFileLines[i],filelines[i].name,filelines[i].len,UNORM_NFD, options);
    [all...]
normperf.h 28 typedef int32_t (*NormFn)(const UChar* src,int32_t srcLen, UChar* dest,int32_t dstLen, int32_t options, UErrorCode* status);
29 typedef int32_t (*QuickCheckFn)(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status);
42 int32_t options; member in class:QuickCheckPerfFunction
49 retVal = (*fn)(lines[i].name,lines[i].len,mode, options, status);
53 retVal = (*fn)(lines[i].name,-1,mode, options, status);
59 retVal = (*fn)(src,srcLen,mode, options, status);
61 retVal = (*fn)(src,-1,mode, options, status);
77 QuickCheckPerfFunction(QuickCheckFn func, ULine* srcLines,int32_t srcNumLines, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) {
87 QuickCheckPerfFunction(QuickCheckFn func, const UChar* source,int32_t sourceLen, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) {
113 int32_t options; member in class:NormPerfFunction
187 int32_t options; member in class:NormalizerPerformanceTest
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
ResourceTexture.java 44 BitmapFactory.Options options = new BitmapFactory.Options(); local
45 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
46 bitmap = BitmapFactory.decodeResource(view.getResources(), mResourceId, options);
51 BitmapFactory.Options options = new BitmapFactory.Options(); local
52 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
53 bitmap = BitmapFactory.decodeStream(inputStream, null, options);
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
smb.h 45 /* Connection-Options */
51 /* The following are LANMAN 1.0 options */
58 /* The following are NT LM 0.12 options */
  /external/chromium/third_party/icu/source/tools/gencmn/
gencmn.c 34 static UOption options[]={ variable
55 /* preset then read command line options */
56 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
67 if(argc<0 || options[0].doesOccur || options[1].doesOccur) {
76 if (options[0].doesOccur || options[1].doesOccur) {
81 "Options:\n
    [all...]
  /external/icu4c/tools/gencmn/
gencmn.c 34 static UOption options[]={ variable
55 /* preset then read command line options */
56 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
67 if(argc<0 || options[0].doesOccur || options[1].doesOccur) {
76 if (options[0].doesOccur || options[1].doesOccur) {
81 "Options:\n
    [all...]
  /development/testrunner/test_defs/
instrumentation_test.py 88 def GetBuildDependencies(self, options):
89 if options.coverage:
93 def Run(self, options, adb):
99 options: command line options to provide to test run
107 if options.test_class is not None:
108 test_class = options.test_class.lstrip()
111 if options.test_method is not None:
112 test_class = "%s#%s" % (test_class, options.test_method)
115 if options.test_package
    [all...]

Completed in 2194 milliseconds

1 2 3 4 5 6 7 8 91011>>