OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:multi_values
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/autofill/
autofill_manager.cc
853
std::vector<string16>
multi_values
;
local
854
profile->GetMultiInfo(type, &
multi_values
);
856
for (size_t i = 0; i <
multi_values
.size(); ++i) {
857
if (!
multi_values
[i].empty() &&
858
StartsWith(
multi_values
[i], field.value, false)) {
860
values->push_back(
multi_values
[i]);
890
std::vector<string16>
multi_values
;
local
891
profile->GetMultiInfo(type, &
multi_values
);
893
for (size_t i = 0; i <
multi_values
.size(); ++i) {
894
if (!
multi_values
[i].empty() &
[
all
...]
autofill_manager_unittest.cc
[
all
...]
/external/chromium_org/components/autofill/core/browser/
personal_data_manager.cc
577
std::vector<base::string16>
multi_values
;
local
578
profile->GetMultiInfo(type, app_locale_, &
multi_values
);
580
for (size_t i = 0; i <
multi_values
.size(); ++i) {
583
if (!
multi_values
[i].empty() &&
584
StartsWith(
multi_values
[i], field_contents, false)) {
586
values->push_back(
multi_values
[i]);
590
if (
multi_values
[i].empty())
594
StringToLowerASCII(
multi_values
[i]));
610
for (size_t j = 0; j <
multi_values
.size(); ++j) {
611
if (!
multi_values
[j].empty())
[
all
...]
autofill_manager_unittest.cc
[
all
...]
Completed in 804 milliseconds