Searched refs:opt_str (Results 1 - 6 of 6) sorted by relevance
/third_party/node/deps/openssl/openssl/apps/ |
H A D | cmp.c | 2311 static char *opt_str(void) in opt_str() function 2351 opt_server = opt_str(); in get_opts() 2354 opt_proxy = opt_str(); in get_opts() 2357 opt_no_proxy = opt_str(); in get_opts() 2361 opt_recipient = opt_str(); in get_opts() 2364 opt_path = opt_str(); in get_opts() 2384 opt_tls_cert = opt_str(); in get_opts() 2387 opt_tls_key = opt_str(); in get_opts() 2390 opt_tls_keypass = opt_str(); in get_opts() 2393 opt_tls_extra = opt_str(); in get_opts() [all...] |
/third_party/openssl/apps/ |
H A D | cmp.c | 2310 static char *opt_str(void) in opt_str() function 2350 opt_server = opt_str(); in get_opts() 2353 opt_proxy = opt_str(); in get_opts() 2356 opt_no_proxy = opt_str(); in get_opts() 2360 opt_recipient = opt_str(); in get_opts() 2363 opt_path = opt_str(); in get_opts() 2383 opt_tls_cert = opt_str(); in get_opts() 2386 opt_tls_key = opt_str(); in get_opts() 2389 opt_tls_keypass = opt_str(); in get_opts() 2392 opt_tls_extra = opt_str(); in get_opts() [all...] |
/third_party/python/Lib/ |
H A D | optparse.py | 142 def __init__(self, opt_str): 143 self.opt_str = opt_str 146 return _("no such option: %s") % self.opt_str 152 def __init__(self, opt_str, possibilities): 153 BadOptionError.__init__(self, opt_str) 158 % (self.opt_str, ", ".join(self.possibilities))) 997 add_option(opt_str, ..., kwarg=val, ...) 1031 def get_option(self, opt_str): 1032 return (self._short_opt.get(opt_str) o [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | libxavs2.c | 33 char opt_str[16] = {0}; \ 35 av_strlcatf(opt_str, sizeof(opt_str), format, __VA_ARGS__); \ 36 err = cae->api->opt_set2(cae->param, name, opt_str); \ 38 av_log(avctx, AV_LOG_WARNING, "Invalid value for %s: %s\n", name, opt_str);\
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
H A D | optional_test.cc | 821 absl::optional<std::string> opt_str; in TEST() local 823 opt_str = opt_cstr; in TEST() 824 EXPECT_TRUE(opt_str); in TEST() 825 EXPECT_EQ(std::string("abc"), *opt_str); in TEST() 826 opt_str = absl::optional<const char*>(); in TEST() 827 EXPECT_FALSE(opt_str); in TEST() 828 opt_str = absl::optional<const char*>("def"); in TEST() 829 EXPECT_TRUE(opt_str); in TEST() 830 EXPECT_EQ(std::string("def"), *opt_str); in TEST() 1280 absl::optional<std::string> opt_str in TEST() local [all...] |
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
H A D | pngcp.c | 1252 getallopts(struct display *dp, const char *opt_str, int *value) in getallopts() argument 1254 return getallopts_(dp, option_index(dp, opt_str, strlen(opt_str)), value, 0); in getallopts() 1258 getsearchopts(struct display *dp, const char *opt_str, int *value) in getsearchopts() argument 1262 png_byte opt = option_index(dp, opt_str, strlen(opt_str)); in getsearchopts()
|
Completed in 16 milliseconds