HomeSort by relevance Sort by last modified time
    Searched refs:KeywordTable (Results 1 - 13 of 13) sorted by null

  /external/javassist/src/main/javassist/compiler/
KeywordTable.java 18 public final class KeywordTable extends java.util.HashMap {
19 public KeywordTable() { super(); }
  /external/chromium_org/chrome/browser/webdata/
keyword_table.h 78 class KeywordTable : public WebDatabaseTable {
94 KeywordTable();
95 virtual ~KeywordTable();
97 // Retrieves the KeywordTable* owned by |database|.
98 static KeywordTable* FromWebDatabase(WebDatabase* db);
182 DISALLOW_COPY_AND_ASSIGN(KeywordTable);
keyword_table.cc 29 const char KeywordTable::kDefaultSearchProviderKey[] =
145 KeywordTable::KeywordTable() {
148 KeywordTable::~KeywordTable() {}
150 KeywordTable* KeywordTable::FromWebDatabase(WebDatabase* db) {
151 return static_cast<KeywordTable*>(db->GetTable(GetKey()));
154 WebDatabaseTable::TypeKey KeywordTable::GetTypeKey() const {
158 bool KeywordTable::CreateTablesIfNecessary()
    [all...]
web_data_service.cc 73 KeywordTable::Operation(KeywordTable::ADD, data));
86 KeywordTable::Operation(KeywordTable::REMOVE, data));
97 KeywordTable::Operation(KeywordTable::UPDATE, data));
189 const KeywordTable::Operations& operations,
191 return KeywordTable::FromWebDatabase(db)->PerformOperations(operations) ?
198 if (KeywordTable::FromWebDatabase(db)->GetKeywords(&result.keywords)) {
200 KeywordTable::FromWebDatabase(db)->GetDefaultSearchProviderID()
    [all...]
keyword_table_unittest.cc 34 table_.reset(new KeywordTable);
83 KeywordTable::Keywords GetKeywords() const {
84 KeywordTable::Keywords keywords;
107 scoped_ptr<KeywordTable> table_;
117 KeywordTable::Keywords keywords(GetKeywords());
162 KeywordTable::Keywords keywords(GetKeywords());
190 KeywordTable::Keywords keywords(GetKeywords());
web_data_service.h 84 KeywordTable::Keywords keywords;
101 // optimization; see comments on KeywordTable::PerformOperations().
142 // On success, consumer is notified with WDResult<KeywordTable::Keywords>.
215 const KeywordTable::Operations& operations,
277 KeywordTable::Operations queued_keyword_operations_;
web_data_service_factory.cc 86 scoped_ptr<WebDatabaseTable>(new KeywordTable()));
  /external/chromium_org/v8/src/
dateparser.cc 106 const int8_t DateParser::KeywordTable::
107 array[][DateParser::KeywordTable::kEntrySize] = {
140 int DateParser::KeywordTable::Lookup(const uint32_t* pre, int len) {
dateparser-inl.h 178 ASSERT(KeywordTable::kPrefixLength == 3);
181 int index = KeywordTable::Lookup(buffer, length);
182 return DateToken::Keyword(KeywordTable::GetType(index),
183 KeywordTable::GetValue(index),
dateparser.h 265 // KeywordTable maps names of months, time zones, am/pm to numbers.
266 class KeywordTable : public AllStatic {
  /external/chromium_org/components/webdata/common/
web_database_migration_unittest.cc 189 KeywordTable keyword_table;
762 stmt = "SELECT " + KeywordTable::GetKeywordColumns() + " FROM keywords";
    [all...]
  /external/chromium_org/chrome/browser/search_engines/
util.cc 340 for (KeywordTable::Keywords::iterator i(keyword_result.keywords.begin());
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 

Completed in 214 milliseconds