Searched refs:param_value (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/components/variations/android/
H A Dvariations_associated_data_android.cc26 std::string param_value = local
28 return ConvertUTF8ToJavaString(env, param_value).Release();
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dcommon.py181 for param_name, param_value in self._parameters:
187 for param_name, param_value in self._parameters:
189 return param_value
212 # TODO(toyoshim): Add code to validate that parsed param_value is token
213 param_value = http_header_util.consume_token_or_quoted_string(state)
215 param_value = http_header_util.consume_token(state)
216 if param_value is None:
221 definition.add_parameter(param_name, param_value)
288 for param_name, param_value in extension.get_parameters():
289 if param_value i
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A Dcommon.py181 for param_name, param_value in self._parameters:
187 for param_name, param_value in self._parameters:
189 return param_value
211 # TODO(tyoshino): Add code to validate that parsed param_value is token
212 param_value = http_header_util.consume_token_or_quoted_string(state)
213 if param_value is None:
218 definition.add_parameter(param_name, param_value)
285 for param_name, param_value in extension.get_parameters():
286 if param_value is None:
289 quoted_value = http_header_util.quote_if_necessary(param_value)
[all...]
/external/chromium_org/net/tools/gdig/
H A Dfile_net_log.cc30 scoped_ptr<base::Value> param_value(entry.ParametersToValue());
32 if (param_value.get() != NULL) {
34 bool ret = serializer.Serialize(*param_value);
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Dinfo_private_api.cc218 std::string param_value; local
219 EXTENSION_FUNCTION_VALIDATE(args_->GetString(1, &param_value));
221 base::StringValue(param_value));
225 bool param_value; local
226 EXTENSION_FUNCTION_VALIDATE(args_->GetBoolean(1, &param_value));
229 param_value);
/external/chromium_org/content/test/
H A Dmock_google_streaming_server.cc58 std::string param_value = net::UnescapeURLComponent(param_parts[1], local
61 request_language = param_value;
63 request_grammar = param_value;
/external/chromium_org/net/base/
H A Durl_util.cc36 std::string param_value = EscapeQueryParamValue(value, true); local
52 key_value_pair = (param_name + "=" + param_value);
67 output += (param_name + "=" + param_value);
H A Dcapturing_net_log.cc117 base::Value* param_value = entry.ParametersToValue(); local
118 if (param_value && !param_value->GetAsDictionary(&param_dict))
119 delete param_value;
/external/chromium_org/third_party/mesa/src/include/CL/
H A Dcl_gl.h98 void * /* param_value */,
141 void * /* param_value */,
148 void * param_value,
/external/mesa3d/include/CL/
H A Dcl_gl.h98 void * /* param_value */,
141 void * /* param_value */,
148 void * param_value,
/external/chromium_org/chrome/browser/password_manager/
H A Dchrome_password_manager_client.cc483 std::string param_value;
484 if (!net::GetValueForKeyInQuery(url, "rart", &param_value))
489 param_value.clear();
490 if (!net::GetValueForKeyInQuery(url, "continue", &param_value))
497 return RE2::FullMatch(GURL(param_value).host(), account_dashboard_pattern);
/external/chromium_org/net/http/
H A Dhttp_content_disposition.cc310 bool DecodeExtValue(const std::string& param_value, std::string* decoded) { argument
311 if (param_value.find('"') != std::string::npos)
316 if (!ParseExtValueComponents(param_value, &charset, &value))
/external/chromium_org/testing/gtest/test/
H A Dgtest-param-test_test.cc708 static int param_value() { return param_value_; } function in class:GeneratorEvaluationTest
709 static void set_param_value(int param_value) { param_value_ = param_value; } argument
721 Values(GeneratorEvaluationTest::param_value()));
/external/gtest/test/
H A Dgtest-param-test_test.cc708 static int param_value() { return param_value_; } function in class:GeneratorEvaluationTest
709 static void set_param_value(int param_value) { param_value_ = param_value; } argument
721 Values(GeneratorEvaluationTest::param_value()));
/external/protobuf/gtest/test/
H A Dgtest-param-test_test.cc672 static int param_value() { return param_value_; } function in class:GeneratorEvaluationTest
673 static void set_param_value(int param_value) { param_value_ = param_value; } argument
685 Values(GeneratorEvaluationTest::param_value()));
/external/openssl/crypto/asn1/
H A Dasn_mime.c75 char *param_value; /* Param value e.g. "sha1" */ member in struct:__anon28156
460 if(!prm || !prm->param_value) {
465 ret = multi_split(bio, prm->param_value, &parts);
859 mparam->param_value = tmpval;
914 if(param->param_value) OPENSSL_free(param->param_value);
/external/chromium_org/components/variations/
H A Dvariations_seed_simulator_unittest.cc71 // Add an experiment param with |param_name| and |param_value| to |experiment|.
73 const std::string& param_value,
77 param->set_value(param_value);
72 AddExperimentParam(const std::string& param_name, const std::string& param_value, Study_Experiment* experiment) argument
/external/chromium_org/tools/grit/grit/
H A Dutil.py288 def FixupNamedParam(function, param_name, param_value):
290 named parameter 'param_name' is always set to 'param_value' unless explicitly
296 param_value: 'bongo' (any type)
303 kw[param_name] = param_value

Completed in 4629 milliseconds