OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:found_scheme
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/url/
url_util_unittest.cc
15
Component
found_scheme
;
local
22
kStr1, static_cast<int>(strlen(kStr1)), "http", &
found_scheme
));
23
EXPECT_TRUE(
found_scheme
== Component(0, 4));
27
kStr1, static_cast<int>(strlen(kStr1)), "https", &
found_scheme
));
28
EXPECT_TRUE(
found_scheme
== Component(0, 4));
33
kStr2, static_cast<int>(strlen(kStr2)), "http", &
found_scheme
));
34
EXPECT_TRUE(
found_scheme
== Component());
39
kStr3, static_cast<int>(strlen(kStr3)), "", &
found_scheme
));
40
EXPECT_TRUE(
found_scheme
== Component(0, 0));
43
EXPECT_FALSE(FindAndCompareScheme("", 0, "", &
found_scheme
));
[
all
...]
url_util.h
61
// Locates the scheme in the given string and places it into |
found_scheme
|,
70
Component*
found_scheme
);
74
Component*
found_scheme
);
77
Component*
found_scheme
) {
79
compare,
found_scheme
);
83
Component*
found_scheme
) {
85
compare,
found_scheme
);
url_util.cc
99
Component*
found_scheme
) {
110
if (
found_scheme
)
111
*
found_scheme
= Component();
114
if (
found_scheme
)
115
*
found_scheme
= our_scheme;
407
Component*
found_scheme
) {
408
return DoFindAndCompareScheme(str, str_len, compare,
found_scheme
);
414
Component*
found_scheme
) {
415
return DoFindAndCompareScheme(str, str_len, compare,
found_scheme
);
/external/chromium_org/components/url_fixer/
url_fixer.cc
418
bool
found_scheme
= false;
local
423
found_scheme
= true;
427
if (!
found_scheme
) {
Completed in 274 milliseconds