Searched refs:compile_opts (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Lib/distutils/ |
D | bcppcompiler.py | 88 compile_opts = extra_preargs or [] 89 compile_opts.append ('-c') 91 compile_opts.extend (self.compile_options_debug) 93 compile_opts.extend (self.compile_options) 135 self.spawn ([self.cc] + compile_opts + pp_opts +
|
D | _msvccompiler.py | 328 compile_opts = extra_preargs or [] 329 compile_opts.append('/c') 331 compile_opts.extend(self.compile_options_debug) 333 compile_opts.extend(self.compile_options) 393 args = [self.cc] + compile_opts + pp_opts
|
D | msvccompiler.py | 353 compile_opts = extra_preargs or [] 354 compile_opts.append ('/c') 356 compile_opts.extend(self.compile_options_debug) 358 compile_opts.extend(self.compile_options) 419 self.spawn([self.cc] + compile_opts + pp_opts +
|
D | msvc9compiler.py | 465 compile_opts = extra_preargs or [] 466 compile_opts.append ('/c') 468 compile_opts.extend(self.compile_options_debug) 470 compile_opts.extend(self.compile_options) 531 self.spawn([self.cc] + compile_opts + pp_opts +
|
/third_party/glib/glib/tests/ |
D | regex.c | 57 GRegexCompileFlags compile_opts; member 72 regex = g_regex_new (data->pattern, data->compile_opts, data->match_opts, &error); in test_new() 91 data->compile_opts = _compile_opts; \ 105 data->compile_opts = _compile_opts; \ 123 regex = g_regex_new (data->pattern, data->compile_opts, data->match_opts, &error); in test_new_fail() 135 data->compile_opts = _compile_opts; \ 146 GRegexCompileFlags compile_opts; member 160 match = g_regex_match_simple (data->pattern, data->string, data->compile_opts, data->match_opts); in test_match_simple() 170 data->compile_opts = _compile_opts; \ 193 regex = g_regex_new (data->pattern, data->compile_opts, data->match_opts, &error); in test_match() [all …]
|
/third_party/glib/glib/ |
D | gregex.c | 156 #define NEXT_CHAR(re, s) (((re)->compile_opts & G_REGEX_RAW) ? \ 159 #define PREV_CHAR(re, s) (((re)->compile_opts & G_REGEX_RAW) ? \ 184 GRegexCompileFlags compile_opts; /* options used at compile time on the pattern */ member 1385 if (!(match_info->regex->compile_opts & PCRE2_DUPNAMES)) in get_matched_substring_number() 1646 regex->compile_opts = compile_options; in g_regex_new() 1871 return map_to_pcre1_compile_flags (regex->compile_opts); in g_regex_get_compile_flags() 2222 regex->compile_opts | PCRE2_NO_AUTO_POSSESS, in g_regex_match_all_full()
|