Home
last modified time | relevance | path

Searched refs:option_value (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/chrome/test/chromedriver/
Dcapabilities.cc138 const base::Value* option_value = NULL; in ParseProxy() local
141 if (!proxy_dict->Get(proxy_servers_options[i][0], &option_value) || in ParseProxy()
142 option_value->IsType(base::Value::TYPE_NULL)) { in ParseProxy()
146 if (!option_value->GetAsString(&value)) { in ParseProxy()
161 if (proxy_dict->Get("noProxy", &option_value) && in ParseProxy()
162 !option_value->IsType(base::Value::TYPE_NULL)) { in ParseProxy()
163 if (!option_value->GetAsString(&proxy_bypass_list)) in ParseProxy()
/external/libvpx/libvpx/vpx/src/
Dsvc_encodeframe.c382 char *option_value; in parse_options() local
393 option_value = strtok_r(NULL, " ", &input_ptr); in parse_options()
394 if (option_value == NULL) { in parse_options()
401 res = set_option_encoding_mode(svc_ctx, option_value); in parse_options()
404 svc_ctx->spatial_layers = atoi(option_value); in parse_options()
406 res = parse_scale_factors(svc_ctx, option_value); in parse_options()
409 res = parse_quantizer_values(svc_ctx, option_value); in parse_options()
/external/ppp/pppd/
Doptions.c80 struct option_value { struct
81 struct option_value *next; argument
766 struct option_value *ovp, **pp;
773 pp = (struct option_value **) &opt->addr2;
945 struct option_value *ovp;
947 ovp = (struct option_value *) opt->addr2;
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
Dport_unittest.cc1134 int option_value = -1; in TEST_F() local
1136 &option_value); in TEST_F()
1138 ASSERT_EQ(1, option_value); in TEST_F()