OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:type_val
(Results
1 - 3
of
3
) sorted by null
/external/chromium/net/http/
http_util.cc
97
size_t
type_val
= content_type_str.find_first_not_of(HTTP_LWS);
98
type_val
= std::min(
type_val
, content_type_str.length());
99
size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(",
type_val
);
154
// also, if
type_val
is the same as mime_type, then just update the
165
LowerCaseEqualsASCII(content_type_str.begin() +
type_val
,
169
mime_type->assign(content_type_str.begin() +
type_val
,
/external/chromium_org/net/http/
http_util.cc
104
size_t
type_val
= content_type_str.find_first_not_of(HTTP_LWS);
105
type_val
= std::min(
type_val
, content_type_str.length());
106
size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(",
type_val
);
167
// also, if
type_val
is the same as mime_type, then just update the
177
bool eq = !mime_type->empty() && LowerCaseEqualsASCII(begin +
type_val
,
181
mime_type->assign(begin +
type_val
, begin + type_end);
/external/chromium/chrome/browser/autocomplete/
search_provider.cc
497
Value*
type_val
;
local
499
if (type_list && type_list->Get(i, &
type_val
) &&
500
type_val
->GetAsString(&type_str) && (type_str == "NAVIGATION")) {
[
all
...]
Completed in 3172 milliseconds