OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:t_iter
(Results
1 - 3
of
3
) sorted by null
/external/chromium/chrome/browser/importer/
ie_importer.cc
400
std::map<std::string, TemplateURL*>::iterator
t_iter
=
local
403
(
t_iter
!= search_engines_map.end()) ?
t_iter
->second : NULL;
426
std::map<std::string, TemplateURL*>::iterator
t_iter
;
local
429
for (
t_iter
= search_engines_map.begin();
t_iter
!= search_engines_map.end();
430
++
t_iter
) {
431
search_engines.push_back(
t_iter
->second);
432
if (default_search_engine ==
t_iter
->second) {
firefox_importer_utils.cc
234
std::map<std::string, TemplateURL*>::iterator
t_iter
;
local
235
for (
t_iter
= search_engine_for_url.begin();
236
t_iter
!= search_engine_for_url.end(); ++
t_iter
) {
237
if (
t_iter
->second == default_turl)
240
search_engines->push_back(
t_iter
->second);
/external/chromium/chrome/browser/history/
in_memory_url_index.cc
633
TermCharWordSetVector::iterator
t_iter
= term_char_word_set_cache_.begin();
local
636
(
t_iter
!= term_char_word_set_cache_.end()) &&
637
(*c_iter ==
t_iter
->char_);
638
++c_iter, ++
t_iter
)
639
t_iter
->used_ = true; // Update the cache.
640
return
t_iter
- term_char_word_set_cache_.begin() - 1;
[
all
...]
Completed in 704 milliseconds