Home
last modified time | relevance | path

Searched refs:param_value (Results 1 – 19 of 19) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
Dcommon.py181 for param_name, param_value in self._parameters:
187 for param_name, param_value in self._parameters:
189 return param_value
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 is None:
292 quoted_value = http_header_util.quote_if_necessary(param_value)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
Dcommon.py182 for param_name, param_value in self._parameters:
188 for param_name, param_value in self._parameters:
190 return param_value
214 param_value = http_header_util.consume_token_or_quoted_string(state)
216 param_value = http_header_util.consume_token(state)
217 if param_value is None:
222 definition.add_parameter(param_name, param_value)
289 for param_name, param_value in extension.get_parameters():
290 if param_value is None:
293 quoted_value = http_header_util.quote_if_necessary(param_value)
/external/chromium_org/net/tools/gdig/
Dfile_net_log.cc30 scoped_ptr<Value> param_value(entry.ParametersToValue()); in OnAddEntry() local
32 if (param_value.get() != NULL) { in OnAddEntry()
34 bool ret = serializer.Serialize(*param_value); in OnAddEntry()
/external/chromium_org/net/base/
Dcapturing_net_log.cc109 Value* param_value = entry.ParametersToValue(); in OnAddEntry() local
110 if (param_value && !param_value->GetAsDictionary(&param_dict)) in OnAddEntry()
111 delete param_value; in OnAddEntry()
Durl_util.cc36 std::string param_value = EscapeQueryParamValue(value, true); in AppendOrReplaceQueryParameter() local
52 key_value_pair = (param_name + "=" + param_value); in AppendOrReplaceQueryParameter()
67 output += (param_name + "=" + param_value); in AppendOrReplaceQueryParameter()
/external/chromium_org/chrome/browser/chromeos/extensions/
Dinfo_private_api.cc123 std::string param_value; in RunImpl() local
124 EXTENSION_FUNCTION_VALIDATE(args_->GetString(1, &param_value)); in RunImpl()
126 base::StringValue(param_value)); in RunImpl()
/external/chromium/chrome/browser/google/
Dgoogle_util.cc20 const std::string& param_value) { in AppendParam() argument
24 query += param_name + "=" + param_value; in AppendParam()
/external/chromium_org/content/test/
Dmock_google_streaming_server.cc58 std::string param_value = net::UnescapeURLComponent(param_parts[1], in OnRequestStart() local
61 request_language = param_value; in OnRequestStart()
63 request_grammar = param_value; in OnRequestStart()
/external/chromium_org/net/http/
Dhttp_content_disposition.cc328 bool DecodeExtValue(const std::string& param_value, std::string* decoded) { in DecodeExtValue() argument
329 if (param_value.find('"') != std::string::npos) in DecodeExtValue()
334 if (!ParseExtValueComponents(param_value, &charset, &value)) in DecodeExtValue()
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
Dasn_mime.c75 char *param_value; /* Param value e.g. "sha1" */ member
460 if(!prm || !prm->param_value) { in SMIME_read_ASN1()
465 ret = multi_split(bio, prm->param_value, &parts); in SMIME_read_ASN1()
857 mparam->param_value = tmpval; in mime_hdr_addparam()
912 if(param->param_value) OPENSSL_free(param->param_value); in mime_param_free()
/external/openssl/crypto/asn1/
Dasn_mime.c75 char *param_value; /* Param value e.g. "sha1" */ member
460 if(!prm || !prm->param_value) { in SMIME_read_ASN1()
465 ret = multi_split(bio, prm->param_value, &parts); in SMIME_read_ASN1()
857 mparam->param_value = tmpval; in mime_hdr_addparam()
912 if(param->param_value) OPENSSL_free(param->param_value); in mime_param_free()
/external/gtest/test/
Dgtest-param-test_test.cc706 static int param_value() { return param_value_; } in param_value() function in GeneratorEvaluationTest
707 static void set_param_value(int param_value) { param_value_ = param_value; } in set_param_value() argument
719 Values(GeneratorEvaluationTest::param_value()));
/external/chromium_org/testing/gtest/test/
Dgtest-param-test_test.cc708 static int param_value() { return param_value_; } in param_value() function in GeneratorEvaluationTest
709 static void set_param_value(int param_value) { param_value_ = param_value; } in set_param_value() argument
721 Values(GeneratorEvaluationTest::param_value()));
/external/chromium/testing/gtest/test/
Dgtest-param-test_test.cc706 static int param_value() { return param_value_; } in param_value() function in GeneratorEvaluationTest
707 static void set_param_value(int param_value) { param_value_ = param_value; } in set_param_value() argument
719 Values(GeneratorEvaluationTest::param_value()));
/external/protobuf/gtest/test/
Dgtest-param-test_test.cc672 static int param_value() { return param_value_; } in param_value() function in GeneratorEvaluationTest
673 static void set_param_value(int param_value) { param_value_ = param_value; } in set_param_value() argument
685 Values(GeneratorEvaluationTest::param_value()));
/external/chromium_org/third_party/mesa/src/include/CL/
Dcl_gl.h148 void * param_value,
/external/mesa3d/include/CL/
Dcl_gl.h148 void * param_value,
/external/chromium/net/base/
Dnet_util.cc1229 std::string param_value = GetHeaderParamValue(header, "filename*", in GetFileNameFromCD() local
1231 if (!param_value.empty()) { in GetFileNameFromCD()
1232 if (param_value.find('"') == std::string::npos) { in GetFileNameFromCD()
1235 if (DecodeCharset(param_value, &charset, &value)) { in GetFileNameFromCD()
1247 param_value = GetHeaderParamValue(header, "filename", in GetFileNameFromCD()
1249 if (param_value.empty()) { in GetFileNameFromCD()
1251 param_value = GetHeaderParamValue(header, "name", in GetFileNameFromCD()
1254 if (param_value.empty()) in GetFileNameFromCD()
1256 if (DecodeParamValue(param_value, referrer_charset, &decoded)) in GetFileNameFromCD()
/external/chromium_org/tools/grit/grit/
Dutil.py288 def FixupNamedParam(function, param_name, param_value): argument
303 kw[param_name] = param_value