HomeSort by relevance Sort by last modified time
    Searched defs:options (Results 351 - 375 of 3098) sorted by null

<<11121314151617181920>>

  /external/desugar/java/com/google/devtools/common/options/
OptionsBase.java 15 package com.google.devtools.common.options;
26 * Base class for all options classes. Extend this class, adding public instance fields annotated
30 * X x = Options.getDefaults(X.class);
58 // invocation; unfortunately, that makes the options construction about 10x slower. So be
59 // careful with how you construct options classes.
90 * Returns a string that uniquely identifies the options. This value is
OptionsData.java 15 package com.google.devtools.common.options;
33 /** Mapping from each option to the (unparsed) options it expands to, if any. */
46 * Returns the expansion of an options field, regardless of whether it was defined using {@link
ShellQuotedParamsFilePreProcessor.java 14 package com.google.devtools.common.options;
  /external/desugar/java/com/google/devtools/common/options/testing/
OptionsTester.java 15 package com.google.devtools.common.options.testing;
21 import com.google.devtools.common.options.Converter;
22 import com.google.devtools.common.options.Option;
23 import com.google.devtools.common.options.OptionsBase;
29 * for parsing options in these classes, but can be helpful for e.g. ensuring that equality is not
  /external/elfutils/libdwfl/
argp-std.c 44 static const struct argp_option options[] = variable in typeref:struct:argp_option
46 { NULL, 0, NULL, 0, N_("Input selection options:"), 0 },
370 { .options = options, .parser = parse_opt };
  /external/elfutils/src/
ranlib.c 59 static const struct argp_option options[] = variable in typeref:struct:argp_option
73 options, NULL, args_doc, doc, arlib_argp_children, NULL, NULL
  /external/icu/icu4c/source/i18n/
collationcompare.cpp 34 int32_t options = settings.options; local
36 if((options & CollationSettings::ALTERNATE_MASK) == 0) {
112 if(CollationSettings::getStrength(options) >= UCOL_SECONDARY) {
113 if((options & CollationSettings::BACKWARD_SECONDARY) == 0) {
185 if((options & CollationSettings::CASE_LEVEL) != 0) {
186 int32_t strength = CollationSettings::getStrength(options);
241 if((options & CollationSettings::UPPER_FIRST) == 0) {
250 if(CollationSettings::getStrength(options) <= UCOL_SECONDARY) { return UCOL_EQUAL; }
252 uint32_t tertiaryMask = CollationSettings::getTertiaryMask(options);
    [all...]
  /external/icu/icu4c/source/tools/genccode/
genccode.c 76 static UOption options[]={ variable
100 options[kOptDestDir].value = ".";
102 /* read command line options */
103 argc=u_parseArgs(argc, argv, UPRV_LENGTHOF(options), options);
111 if(argc<0 || options[kOptHelpH].doesOccur || options[kOptHelpQuestionMark].doesOccur) {
113 "usage: %s [-options] filename1 filename2 ...\n"
116 "options:\n"
138 if(options[kOptAssembly].doesOccur)
    [all...]
  /external/icu/icu4c/source/tools/gennorm2/
gennorm2.cpp 68 static UOption options[]={ variable
85 /* preset then read command line options */
86 options[SOURCEDIR].value="";
87 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[HELP_H]), options);
95 if(!options[OUTPUT_FILENAME].doesOccur) {
99 options[HELP_H].doesOccur || options[HELP_QUESTION_MARK].doesOccur
102 "Usage: %s [-options] infiles+ -o outputfilename\n
    [all...]
  /external/icu/icu4c/source/tools/icuinfo/
icuinfo.cpp 40 static UOption options[]={ variable
221 /* preset then read command line options */
222 argc=u_parseArgs(argc, argv, UPRV_LENGTHOF(options), options);
230 if( options[0].doesOccur || options[1].doesOccur) {
232 fprintf(stderr, "Options:\n"
248 if(options[2].doesOccur) {
249 u_setDataDirectory(options[2].value);
252 if(options[5].doesOccur)
    [all...]
  /external/iptables/utils/
nfsynproxy.c 171 static const struct option options[] = { variable in typeref:struct:option
181 printf("%s [ options ] address...\n"
183 "Options:\n"
196 c = getopt_long(argc, argv, "hi:p:c:", options, &optidx);
  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/
FileOutputTest.java 38 AgentOptions options = new AgentOptions(); local
39 options.setDestfile(destFile.getAbsolutePath());
42 controller.startup(options, new RuntimeData());
52 AgentOptions options = new AgentOptions(); local
53 options.setDestfile(destFile.getAbsolutePath());
56 controller.startup(options, new RuntimeData());
67 AgentOptions options = new AgentOptions(); local
68 options.setDestfile(folder.newFolder("folder").getAbsolutePath());
72 controller.startup(options, new RuntimeData());
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
CompilingClassLoader.java 145 List<String> options = new LinkedList<String>(); local
148 options.add("-XDuseJavaUtilZip");
154 fileManager, diagnosticListener, options, null, singleton(javaFile));
  /external/kmod/libkmod/python/kmod/
module.pyx 59 options = property(fget=_options_get) variable in class:Module
  /external/libchrome/base/files/
file_descriptor_watcher_posix_unittest.cc 63 Thread::Options options; variable
64 options.message_loop_type = MessageLoop::TYPE_IO;
65 ASSERT_TRUE(other_thread_.StartWithOptions(options));
  /external/libchrome/base/threading/
simple_thread_unittest.cc 164 SimpleThread::Options options; local
165 options.joinable = false;
166 DelegateSimpleThread thread(&runner, "non_joinable", options);
184 SimpleThread::Options options; local
185 options.joinable = false;
187 new DelegateSimpleThread(runner.get(), "non_joinable", options));
  /external/libcups/filter/
rastertopwg.c 57 int num_options; /* Number of options */
58 cups_option_t *options = NULL;/* Options */ local
64 puts("Usage: rastertopwg job user title copies options [filename]");
87 num_options = cupsParseOptions(argv[5], 0, &options);
90 cupsMarkOptions(ppd, num_options, options);
205 options)) != NULL)
226 if ((val = cupsGetOption("print-quality", num_options, options)) != NULL)
240 options)) != NULL)
  /external/libdrm/tests/planetest/
dev.c 28 static struct option options[] = { local
39 c = getopt_long(argc, argv, "c:r:h", options, &option_index);
  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJTransform.java 156 * @param options the bitwise OR of one or more of the transform options
162 public TJTransform(int x, int y, int w, int h, int op, int options,
166 this.options = options;
180 * @param options the bitwise OR of one or more of the transform options
186 public TJTransform(Rectangle r, int op, int options,
190 this.options = options;
202 public int options = 0; field in class:TJTransform
    [all...]
  /external/libmicrohttpd/src/testcurl/https/
tls_test_common.h 67 int options[2]; member in struct:CipherDef
  /external/libtextclassifier/
text-classifier_test.cc 574 SelectionOptions options; local
575 EXPECT_EQ(classifier->SuggestSelection("857 225\n3556\nabc", {0, 3}, options),
729 AnnotationOptions options; local
730 EXPECT_THAT(classifier->Annotate("853 225 3556", options),
732 EXPECT_TRUE(classifier->Annotate("853 225\n3556", options).empty());
736 classifier->Annotate("853 225 3556\n\xf0\x9f\x98\x8b\x8b", options)
768 AnnotationOptions options; local
769 EXPECT_THAT(classifier->Annotate("853 225 3556", options),
771 EXPECT_TRUE(classifier->Annotate("853 225\n3556", options).empty());
957 ClassificationOptions options; local
1008 ClassificationOptions options; local
    [all...]
  /external/libxkbcommon/xkbcommon/test/
rules-file.c 36 const char *options; member in struct:test_data
53 data->rules, data->model, data->layout, data->variant, data->options
58 data->model, data->layout, data->variant, data->options);
99 .options = "my_option",
110 .model = "", .layout = "", .variant = "", .options = "",
120 .model = "pc104", .layout = "foo", .variant = "", .options = "",
130 .model = "foo", .layout = "ar", .variant = "bar", .options = "",
141 .options = "my_option",
151 .options = "some:opt",
160 .rules = "multiple-options",
    [all...]
  /external/ltp/testcases/kernel/hotplug/memory_hotplug/
memtoy.h 45 unsigned long options; /* command line options, ... */ member in struct:global_context
74 #define set_option(OPT) gcp->options |= (OPTION_##OPT)
75 #define clear_option(OPT) gcp->options &= ~(OPION_##OPTT)
76 #define is_option(OPT) ((gcp->options & OPTION_##OPT) != 0)
  /external/ltp/testcases/kernel/mem/hugetlb/hugeshmat/
hugeshmat01.c 52 static struct tst_option options[] = { variable in typeref:struct:tst_option
196 .options = options,
  /external/ltp/testcases/kernel/mem/hugetlb/hugeshmctl/
hugeshmctl03.c 58 static struct tst_option options[] = { variable in typeref:struct:tst_option
149 .options = options,

Completed in 892 milliseconds

<<11121314151617181920>>