Searched refs:options (Results 1 - 25 of 2765) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dpragma-align-mac68k-unsupported.c4 /* expected-error {{mac68k alignment pragma is not supported}} */ #pragma options align=mac68k
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
H A Dreplay_test.py36 options = parser.parse_args([])
37 options = replay.OptionsWrapper(options, parser)
38 self.assertEqual({}, options.shaping_dns)
39 self.assertEqual({}, options.shaping_http)
40 self.assertEqual({}, options.shaping_dummynet)
44 options = parser.parse_args(['--shaping=proxy'])
45 options = replay.OptionsWrapper(options, parser)
46 self.assertEqual({}, options
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/options/
H A Dpackage-info.java16 * Contains code relating to parsing and managing command line options. This is distinct from
20 package com.google.caliper.options;
/external/clang/test/Parser/
H A Dpragma-options.cpp5 #pragma options align=natural
H A Dpragma-options.c3 /* expected-warning {{expected 'align' following '#pragma options'}} */ #pragma options
4 /* expected-warning {{expected '=' following '#pragma options align'}} */ #pragma options align
5 /* expected-warning {{expected identifier in '#pragma options'}} */ #pragma options align =
6 /* expected-warning {{invalid alignment option in '#pragma options align'}} */ #pragma options align = foo
7 /* expected-warning {{extra tokens at end of '#pragma options'}} */ #pragma options alig
[all...]
/external/libchrome/dbus/
H A Dmock_bus.cc11 MockBus::MockBus(const Bus::Options& options) : Bus(options) { argument
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DDeltaEncoder.java13 private final DeltaOptions options; field in class:DeltaEncoder
16 DeltaEncoder(DeltaOptions options) { argument
17 props[0] = (byte)(options.getDistance() - 1);
18 this.options = (DeltaOptions)options.clone();
34 return options.getOutputStream(out);
H A DLZMA2Encoder.java15 private final LZMA2Options options; field in class:LZMA2Encoder
18 LZMA2Encoder(LZMA2Options options) { argument
19 if (options.getPresetDict() != null)
23 if (options.getMode() == LZMA2Options.MODE_UNCOMPRESSED) {
26 int d = Math.max(options.getDictSize(),
32 this.options = (LZMA2Options)options.clone();
48 return options.getOutputStream(out);
/external/webrtc/webrtc/modules/desktop_capture/
H A Dscreen_capturer.cc24 DesktopCaptureOptions options; local
25 options.set_use_update_notifications(use_update_notifications);
26 return Create(options);
30 DesktopCaptureOptions options; local
31 options.set_disable_effects(disable_effects);
32 return Create(options);
/external/autotest/cli/
H A Dquery_keyvals9 usage = "usage: %prog [options] job_id"
17 options, args = parser.parse_args()
18 options.show_test_keyvals = options.type in ("all", "test")
19 options.show_attr_keyvals = options.type in ("all", "iteration", "attr")
20 options.show_perf_keyvals = options.type in ("all", "iteration", "perf")
21 options.show_iter_keyvals = (
22 options
[all...]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
H A DAgentOptionsTest.java39 AgentOptions options = new AgentOptions();
40 assertEquals(AgentOptions.DEFAULT_DESTFILE, options.getDestfile());
41 assertTrue(options.getAppend());
42 assertEquals("*", options.getIncludes());
43 assertEquals("", options.getExcludes());
45 options.getExclClassloader());
46 assertFalse(options.getInclBootstrapClasses());
47 assertNull(options.getSessionId());
48 assertTrue(options.getDumpOnExit());
49 assertEquals(AgentOptions.OutputMode.file, options
[all...]
/external/autotest/site_utils/
H A Des_reindex.py46 options = parser.parse_args()
51 result = autotest_es.execute_query(index=options.old, host=options.host,
52 port=options.port, query)
53 print 'Total number of records in index %s: %d' % (options.old,
57 (options.old, options.new, options.host, options.port))
59 client = Elasticsearch(hosts=[{'host': options
[all...]
/external/icu/icu4c/source/tools/gencmn/
H A Dgencmn.c36 static UOption options[]={ variable
57 /* preset then read command line options */
58 argc=u_parseArgs(argc, argv, UPRV_LENGTHOF(options), options);
69 if(argc<0 || options[0].doesOccur || options[1].doesOccur) {
78 if (options[0].doesOccur || options[1].doesOccur) {
102 sourceTOC=options[8].doesOccur;
104 verbose = options[
[all...]
/external/smali/baksmali/src/test/java/org/jf/baksmali/
H A DImplicitReferenceTest.java65 baksmaliOptions options = new baksmaliOptions();
66 options.useImplicitReferences = true;
68 BaksmaliTestUtils.assertSmaliCompiledEquals(source, expected, options);
96 baksmaliOptions options = new baksmaliOptions();
97 options.useImplicitReferences = false;
99 BaksmaliTestUtils.assertSmaliCompiledEquals(source, expected, options);
121 baksmaliOptions options = new baksmaliOptions();
122 options.useImplicitReferences = true;
124 BaksmaliTestUtils.assertSmaliCompiledEquals(source, expected, options);
146 baksmaliOptions options
[all...]
/external/icu/icu4c/source/test/perf/unisetperf/
H A Dunisetperf.pl20 my $options = {
68 runTests($options, $tests, $dataFiles);
70 $options = {
93 runTests($options, $tests, $dataFiles);
/external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
H A Dbrowser_options_unittest.py13 options = browser_options.BrowserFinderOptions()
14 parser = options.CreateParser()
17 self.assertEquals(options.x, 3) # pylint: disable=no-member
20 options = browser_options.BrowserFinderOptions()
21 parser = options.CreateParser()
24 self.assertEquals(options.x, 10) # pylint: disable=no-member
27 options = browser_options.BrowserFinderOptions()
28 setattr(options, 'x', 7)
29 parser = options.CreateParser()
32 self.assertEquals(options
[all...]
/external/toolchain-utils/binary_search_tool/cros_pkg/
H A Dcreate_cleanup_script.py68 options = parser.parse_args(argv[1:])
70 if options.old_link or options.renamed_tree:
71 if not options.tree_existed:
75 if options.old_link and options.renamed_tree:
76 Usage(parser, '--old_link and --renamed_tree are incompatible options.')
78 if options.tree_existed:
79 if not options.old_link and not options
[all...]
/external/toolchain-utils/
H A Dbuild_chromeos.py106 options = parser.parse_args(argv[1:])
108 if options.chromeos_root is None:
110 options.chromeos_root = os.path.expanduser(options.chromeos_root)
111 scripts_dir = os.path.join(options.chromeos_root, 'src', 'scripts')
115 if options.board is None:
118 if options.debug:
119 options.dev = True
121 build_packages_env = options.env
128 if options
[all...]
H A Dremote_test.py37 options = parser.parse_args(argv)
38 if options.chromeos_root is None:
41 if options.remote is None:
44 options.chromeos_root = os.path.expanduser(options.chromeos_root)
49 chromeos_root=options.chromeos_root,
50 machine=options.remote)
58 dest_machine=options.remote,
60 chromeos_root=options.chromeos_root)
63 dest_machine=options
[all...]
/external/webrtc/webrtc/tools/
H A Dcompare_videos.py25 """Registers the command-line options."""
26 usage = 'usage: %prog [options]'
58 options, _ = parser.parse_args()
60 if not options.ref_video:
62 if not os.path.exists(options.ref_video):
63 parser.error('Cannot find the reference video at %s' % options.ref_video)
65 if not options.test_video:
67 if not os.path.exists(options.test_video):
68 parser.error('Cannot find the test video at %s' % options.test_video)
70 if not options
[all...]
/external/chromium-trace/catapult/telemetry/examples/benchmarks/
H A Dtbm_benchmark.py11 def CreateStorySet(self, options):
15 options = timeline_based_measurement.Options()
16 options.SetTimelineBasedMetrics(['sample_metric.html'])
17 return options
/external/clang/test/CodeGen/
H A D2008-08-07-AlignPadding2.c13 const OptionDef options[] = { variable
14 /* main options */
/external/desugar/java/com/google/devtools/common/options/
H A DOpaqueOptionsData.java15 package com.google.devtools.common.options;
18 * Opaque options data type, returned by {@link OptionsParser#getOptionsData} and consumed by
/external/icu/icu4c/source/test/perf/convperf/
H A Dconvperf_ansi.pl26 my $options = {
60 runTests($options, $tests, $dataFiles);
H A Dconvperf_iml.pl26 my $options = {
66 runTests($options, $tests, $dataFiles);

Completed in 656 milliseconds

1234567891011>>