/external/chromium_org/chrome/browser/history/ |
in_memory_url_index.cc | 53 InMemoryURLIndex::RestoreCacheObserver::~RestoreCacheObserver() {} 55 InMemoryURLIndex::SaveCacheObserver::~SaveCacheObserver() {} 59 InMemoryURLIndex::RebuildPrivateDataFromHistoryDBTask:: 61 InMemoryURLIndex* index, 70 bool InMemoryURLIndex::RebuildPrivateDataFromHistoryDBTask::RunOnDBThread( 81 void InMemoryURLIndex::RebuildPrivateDataFromHistoryDBTask:: 86 InMemoryURLIndex::RebuildPrivateDataFromHistoryDBTask:: 90 // InMemoryURLIndex ------------------------------------------------------------ 92 InMemoryURLIndex::InMemoryURLIndex(Profile* profile [all...] |
in_memory_url_index.h | 59 // InMemoryURLIndex class: One will quickly notice that no effort is made to 71 class InMemoryURLIndex : public content::NotificationObserver, 72 public base::SupportsWeakPtr<InMemoryURLIndex> { 103 InMemoryURLIndex(Profile* profile, 106 virtual ~InMemoryURLIndex(); 151 InMemoryURLIndex(); 157 InMemoryURLIndex* index, 168 InMemoryURLIndex* index_; // Call back to this index at completion. 292 DISALLOW_COPY_AND_ASSIGN(InMemoryURLIndex);
|
in_memory_history_backend.h | 34 class InMemoryURLIndex;
|
history_service.h | 69 class InMemoryURLIndex; 168 history::InMemoryURLIndex* InMemoryIndex() const { [all...] |
in_memory_url_index_unittest.cc | 55 class CacheFileSaverObserver : public InMemoryURLIndex::SaveCacheObserver { 98 // Pass-through functions to simplify our friendship with InMemoryURLIndex. 127 scoped_ptr<InMemoryURLIndex> url_index_; 275 new InMemoryURLIndex(&profile_, base::FilePath(), "en,ja,hi,zh")); 433 new InMemoryURLIndex(&profile_, base::FilePath(), "en,ja,hi,zh")); [all...] |
url_index_private_data.h | 33 class InMemoryURLIndex; 39 // A structure private to InMemoryURLIndex describing its internal data and 41 // this class is for exclusive use by the InMemoryURLIndex class there should
|
history_service.cc | 255 // Give the InMemoryURLIndex a chance to shutdown. [all...] |
/external/chromium/chrome/browser/autocomplete/ |
history_quick_provider.h | 63 history::InMemoryURLIndex* GetIndex(); 72 void SetIndexForTesting(history::InMemoryURLIndex* index); 77 scoped_ptr<history::InMemoryURLIndex> index_for_testing_;
|
history_quick_provider.cc | 31 using history::InMemoryURLIndex; 93 history::InMemoryURLIndex::String16Vector terms( 94 InMemoryURLIndex::WordVectorFromString16(term_string, false)); 163 InMemoryURLIndex::OffsetsFromTermMatches(history_match.url_matches); 168 InMemoryURLIndex::ReplaceOffsetsInTermMatches(history_match.url_matches, 180 history::InMemoryURLIndex* HistoryQuickProvider::GetIndex() { 193 history::InMemoryURLIndex* index) {
|
history_quick_provider_unittest.cc | 150 history::InMemoryURLIndex* index = 151 new history::InMemoryURLIndex(FilePath(FILE_PATH_LITERAL("/dummy")));
|
/external/chromium/chrome/browser/history/ |
in_memory_history_backend.h | 33 class InMemoryURLIndex; 47 // as the directory where the InMemoryURLIndex's cache is kept. |db| is 48 // used for building the InMemoryURLIndex. |languages| gives the 74 history::InMemoryURLIndex* InMemoryIndex() const { return index_.get(); } 100 scoped_ptr<history::InMemoryURLIndex> index_;
|
in_memory_url_index_unittest.cc | 120 InMemoryURLIndex::String16Vector Make1Term(const char* term) { 121 InMemoryURLIndex::String16Vector terms; 126 InMemoryURLIndex::String16Vector Make2Terms(const char* term_1, 128 InMemoryURLIndex::String16Vector terms; 134 scoped_ptr<InMemoryURLIndex> url_index_; 163 url_index_.reset(new InMemoryURLIndex(FilePath(FILE_PATH_LITERAL("/dummy")))); 175 url_index_.reset(new InMemoryURLIndex); 186 url_index_.reset(new InMemoryURLIndex(FilePath(FILE_PATH_LITERAL("/dummy")))); 188 InMemoryURLIndex::String16Vector terms; 246 url_index_.reset(new InMemoryURLIndex(FilePath(FILE_PATH_LITERAL("/dummy")))) [all...] |
in_memory_url_index.cc | 50 const size_t InMemoryURLIndex::kNoCachedResultForTerm = -1; 75 struct InMemoryURLIndex::TermCharWordSet { 137 InMemoryURLIndex::InMemoryURLIndex(const FilePath& history_dir) 143 InMemoryURLIndex::InMemoryURLIndex() 147 InMemoryURLIndex::~InMemoryURLIndex() {} 151 bool InMemoryURLIndex::Init(history::URLDatabase* history_db, 158 void InMemoryURLIndex::ShutDown() [all...] |
in_memory_url_index.h | 84 // InMemoryURLIndex class: One will quickly notice that no effort is made to 96 class InMemoryURLIndex { 101 explicit InMemoryURLIndex(const FilePath& history_dir); 102 ~InMemoryURLIndex(); 192 InMemoryURLIndex(); 240 AddHistoryMatch(const InMemoryURLIndex& index, 249 const InMemoryURLIndex& index_; 384 // the InMemoryURLIndex was last populated. 405 DISALLOW_COPY_AND_ASSIGN(InMemoryURLIndex);
|
in_memory_history_backend.cc | 48 index_.reset(new InMemoryURLIndex(history_dir));
|
history.h | 55 class InMemoryURLIndex; 160 history::InMemoryURLIndex* InMemoryIndex(); [all...] |
history.cc | 227 history::InMemoryURLIndex* HistoryService::InMemoryIndex() {
|
/external/chromium_org/chrome/browser/autocomplete/ |
history_quick_provider.h | 64 history::InMemoryURLIndex* GetIndex(); 67 void set_index(history::InMemoryURLIndex* index) { 75 scoped_ptr<history::InMemoryURLIndex> index_for_testing_;
|
history_quick_provider.cc | 48 using history::InMemoryURLIndex; 100 // Delete the match from the InMemoryURLIndex. 308 history::InMemoryURLIndex* HistoryQuickProvider::GetIndex() {
|
/external/chromium_org/chrome/test/base/ |
history_index_restore_observer.h | 13 // HistoryIndexRestoreObserver is used when blocking until the InMemoryURLIndex 14 // finishes restoring. As soon as the InMemoryURLIndex finishes restoring the 17 : public history::InMemoryURLIndex::RestoreCacheObserver {
|
testing_profile.cc | 538 history::InMemoryURLIndex* index = history_service->InMemoryIndex();
|