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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
pragma-align-mac68k-unsupported.c 4 /* expected-error {{mac68k alignment pragma is not supported}} */ #pragma options align=mac68k
  /external/clang/test/Parser/
pragma-options.c 3 /* 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 align = reset fo
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
commandtest.py 35 def assert_execute_outputs(self, command, args, expected_stdout="", expected_stderr="", expected_exception=None, options=MockOptions(), tool=MockTool()):
36 options.blocks = None
37 options.cc = 'MOCK cc'
38 options.component = 'MOCK component'
39 options.confirm = True
40 options.email = 'MOCK email'
41 options.git_commit = 'MOCK git commit'
42 options.obsolete_patches = True
43 options.open_bug = True
44 options.port = 'MOCK port
    [all...]
upload_unittest.py 54 options = MockOptions()
55 options.cc = None
56 options.check_style = True
57 options.comment = None
58 options.description = "MOCK description"
59 options.request_commit = False
60 options.review = True
61 options.suggest_reviewers = False
68 self.assert_execute_outputs(Post(), [42], options=options, expected_stderr=expected_stderr
    [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...]
  /external/oprofile/pp/
opgprof_options.h 3 * Options for opgprof tool
19 namespace options { namespace
34 void handle_options(options::spec const & spec);
  /frameworks/base/tools/aidl/
options.cpp 2 #include "options.h"
12 "usage: aidl OPTIONS INPUT [OUTPUT]\n"
15 "OPTIONS:\n"
35 parse_options(int argc, const char* const* argv, Options *options)
43 options->outputFileName = argv[2];
45 options->filesToPreprocess.push_back(argv[i]);
47 options->task = PREPROCESS_AIDL;
51 options->task = COMPILE_AIDL;
52 options->failOnParcelable = false
    [all...]
  /external/clang/test/CodeGen/
2008-08-07-AlignPadding2.c 13 const OptionDef options[] = { variable
14 /* main options */
  /external/openssh/
readconf.c 51 # 1. command line options
96 # Defaults for various options
254 * Adds a local TCP/IP port forward to options. Never returns if there is an
259 add_local_forward(Options *options, const Forward *newfwd)
267 options->local_forwards = xrealloc(options->local_forwards,
268 options->num_local_forwards + 1,
269 sizeof(*options->local_forwards));
270 fwd = &options->local_forwards[options->num_local_forwards++]
    [all...]
ssh.c 155 * General data structure for command line options and options configurable
158 Options options; variable
320 initialize_options(&options);
332 options.protocol = SSH_PROTO_1;
335 options.protocol = SSH_PROTO_2;
338 options.address_family = AF_INET;
341 options.address_family = AF_INET6;
351 options.forward_x11 = 0
    [all...]
servconf.c 60 /* Initializes the server options to their default values. */
63 initialize_server_options(ServerOptions *options)
65 memset(options, 0, sizeof(*options));
67 /* Portable-specific options */
68 options->use_pam = -1;
70 /* Standard Options */
71 options->num_ports = 0;
72 options->ports_from_cmdline = 0;
73 options->listen_addrs = NULL
    [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...]
  /external/webkit/Tools/Scripts/webkitpy/tool/
mocktool_unittest.py 39 # Test that we can still set options after we construct the
41 options = MockOptions()
42 options.foo = 'bar'
43 self.assertEqual(options.foo, 'bar')
46 # Test that unset options raise an exception (regular Mock
49 options = MockOptions()
50 self.assertRaises(AttributeError, lambda: options.foo)
54 options = MockOptions(foo='bar')
55 self.assertEqual(options.foo, 'bar')
  /packages/apps/Contacts/src/com/android/contacts/util/
BitmapUtil.java 33 final BitmapFactory.Options options = new BitmapFactory.Options(); local
36 options.inJustDecodeBounds = true;
37 BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options);
40 return Math.min(options.outWidth, options.outHeight);
70 final BitmapFactory.Options options; local
72 options = null
    [all...]
  /sdk/monkeyrunner/test/com/android/monkeyrunner/
MonkeyRunnerOptionsTest.java 31 MonkeyRunnerOptions options = local
33 assertEquals(options.getScriptFile(), new File(FILENAME));
37 MonkeyRunnerOptions options = local
39 assertEquals("stub", options.getBackendName());
40 assertEquals(options.getScriptFile(), new File(FILENAME));
44 MonkeyRunnerOptions options = local
46 assertEquals(options.getScriptFile(), new File(FILENAME));
47 Iterator<String> i = options.getArguments().iterator();
53 MonkeyRunnerOptions options = local
55 assertEquals(options.getScriptFile(), new File(FILENAME))
60 MonkeyRunnerOptions options = local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DecodeUtils.java 22 import android.graphics.BitmapFactory.Options;
39 Options mOptions;
41 public DecodeCanceller(Options options) {
42 mOptions = options;
51 public static Bitmap decode(JobContext jc, FileDescriptor fd, Options options) {
52 if (options == null) options = new Options();
    [all...]
  /external/v8/tools/
test-wrapper-gypbuild.py 135 def ProcessOptions(options):
136 if options.arch_and_mode == ".":
137 options.arch = []
138 options.mode = []
140 if options.arch_and_mode != None and options.arch_and_mode != "":
141 tokens = options.arch_and_mode.split(".")
142 options.arch = tokens[0]
143 options.mode = tokens[1]
144 options.mode = options.mode.split(','
    [all...]
  /external/webkit/Tools/Scripts/
new-run-webkit-httpd 52 def run(options):
53 if not options.server:
57 if (options.root is None) and (options.port is not None):
63 port_obj = port.get(None, options)
66 port=options.port,
67 root=options.root,
68 run_background=options.run_background,
69 layout_tests_dir=options.layout_tests_dir)
70 if options.server == 'start'
    [all...]
  /external/libvpx/examples/includes/HTML-Toc-0.91/
Toc.pm 73 # Default to empty 'options' array
74 $self->{options} = {};
85 # Set default options
122 ($self->{options}{'doNestGroup'} == 0) &&
167 $levelIndent = $self->{options}{'levelIndent'}; #=~ s/[0-9]+/&/;
209 ($level =~ m/$self->{options}{'levelToToc'}/) &&
210 ($groupId =~ m/$self->{options}{'groupToToc'}/)
239 $self->{options}{'doSingleStepLevel'} &&
296 $numberingStyle = defined($self->{options}{'numberingStyle'}) ?
297 $self->{options}{'numberingStyle'} : NUMBERING_STYLE_DECIMAL
    [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...]
  /bionic/libc/unistd/
wait.c 31 extern pid_t __wait4 (pid_t pid, int *status, int options, struct rusage *rusage);
32 extern int __waitid(idtype_t which, id_t id, siginfo_t *info, int options, struct rusage *ru);
39 pid_t wait3(int* status, int options, struct rusage* rusage)
41 return __wait4( (pid_t)-1, status, options, rusage );
44 pid_t waitpid(pid_t pid, int* status, int options)
46 return __wait4( pid, status, options, NULL );
49 int waitid(idtype_t which, id_t id, siginfo_t *info, int options)
52 return __waitid(which, id, info, options, NULL);
  /external/icu4c/test/perf/unisetperf/
unisetperf.pl 16 my $options = {
63 runTests($options, $tests, $dataFiles);
65 $options = {
86 runTests($options, $tests, $dataFiles);
  /external/webkit/Source/WebCore/html/
HTMLDataListElement.idl 35 readonly attribute HTMLCollection options;
  /external/webkit/Tools/Scripts/webkitpy/style/
optparser_unittest.py 51 options = self._create_options('vs7', 5, ['+foo', '-bar'], 'git')
54 self._printer.to_flag_string(options))
58 options = self._create_options()
60 self._printer.to_flag_string(options))
143 (files, options) = parse([])
147 self.assertEquals(options.filter_rules, [])
148 self.assertEquals(options.git_commit, None)
149 self.assertEquals(options.diff_files, False)
150 self.assertEquals(options.is_verbose, False)
151 self.assertEquals(options.min_confidence, 3
    [all...]
  /external/qemu/proxy/
proxy_http.h 22 const ProxyOption* options );

Completed in 1205 milliseconds

1 2 3 4 5 6 7 8 91011>>