Searched defs:keyword (Results 126 - 150 of 169) sorted by relevance

1234567

/external/lldb/source/Commands/
H A DCommandObjectMemory.cpp441 const char *keyword = g_keywords[i]; local
445 while ((idx = type_str.find (keyword, idx)) != std::string::npos)
/external/chromium_org/chrome/browser/history/
H A Dhistory_backend_unittest.cc2915 base::string16 keyword = base::UTF8ToUTF16("bar"); local
2917 url1_id, keyword_id, keyword));
2930 url2_id, keyword_id2, keyword));
2941 url3_id, keyword_id2, keyword));
2944 backend_->DeleteMatchingURLsForKeyword(keyword_id2, keyword);
2953 // Test that corresponding keyword search terms are deleted for rows 2 & 3,
/external/chromium_org/components/search_engines/
H A Dtemplate_url_prepopulate_data.cc1038 const base::string16& keyword,
1057 data->SetKeyword(keyword);
1099 base::string16 keyword; local
1107 engine->GetString("keyword", &keyword) && !keyword.empty() &&
1138 t_urls.push_back(MakePrepopulatedTemplateURLData(name, keyword,
1159 base::WideToUTF16(engine.keyword),
1036 MakePrepopulatedTemplateURLData( const base::string16& name, const base::string16& keyword, const base::StringPiece& search_url, const base::StringPiece& suggest_url, const base::StringPiece& instant_url, const base::StringPiece& image_url, const base::StringPiece& new_tab_url, const base::StringPiece& contextual_search_url, const base::StringPiece& search_url_post_params, const base::StringPiece& suggest_url_post_params, const base::StringPiece& instant_url_post_params, const base::StringPiece& image_url_post_params, const base::StringPiece& favicon_url, const base::StringPiece& encoding, const base::ListValue& alternate_urls, const base::StringPiece& search_terms_replacement_key, int id) argument
H A Dtemplate_url_service.cc127 // Log the number of instances of a keyword that exist, with zero or more
134 std::string keyword = base::UTF16ToASCII((*it)->keyword()); local
135 base::TrimString(keyword, "_", &keyword);
136 duplicates[keyword]++;
161 // we need to extend this to mark a prefix as "not less than" a keyword it
264 base::string16 keyword = local
266 if (keyword.empty())
305 (*default_provider_data)->SetKeyword(keyword);
341 CleanUserInputKeyword( const base::string16& keyword) argument
395 std::string keyword; local
449 CanReplaceKeyword( const base::string16& keyword, const GURL& url, TemplateURL** template_url_to_replace) argument
506 GetTemplateURLForKeyword( const base::string16& keyword) argument
548 AddWithOverrides(TemplateURL* template_url, const base::string16& short_name, const base::string16& keyword, const std::string& url) argument
637 RegisterOmniboxKeyword( const std::string& extension_id, const std::string& extension_name, const std::string& keyword, const std::string& template_url_string) argument
677 ResetTemplateURL(TemplateURL* url, const base::string16& title, const base::string16& keyword, const std::string& search_url) argument
898 GetKeywordShortName( const base::string16& keyword, bool* is_omnibox_api_extension_keyword) argument
1470 const base::string16& keyword = template_url->keyword(); local
1509 const base::string16& keyword = template_url->keyword(); local
1605 FindNonExtensionTemplateURLForKeyword( const base::string16& keyword) argument
1645 const base::string16& keyword = existing_turl->keyword(); local
2041 ResetTemplateURLNoNotify( TemplateURL* url, const base::string16& title, const base::string16& keyword, const std::string& search_url) argument
[all...]
/external/chromium_org/components/test/data/web_database/
H A Dversion_27.sql7 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_default_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DEFAULT 0,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0);
H A Dversion_30.sql8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_default_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DEFAULT 0,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR);
H A Dversion_31.sql8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_default_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DEFAULT 0,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR);
H A Dversion_34.sql8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_default_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DEFAULT 0,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR);
H A Dversion_50.sql16 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,show_in_default_list INTEGER,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR,alternate_urls VARCHAR,search_terms_replacement_key VARCHAR);
H A Dversion_52.sql10 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,show_in_default_list INTEGER,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR,alternate_urls VARCHAR,search_terms_replacement_key VARCHAR,image_url VARCHAR,search_url_post_params VARCHAR,suggest_url_post_params VARCHAR,instant_url_post_params VARCHAR,image_url_post_params VARCHAR);
H A Dversion_53.sql8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,show_in_default_list INTEGER,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR,alternate_urls VARCHAR,search_terms_replacement_key VARCHAR,image_url VARCHAR,search_url_post_params VARCHAR,suggest_url_post_params VARCHAR,instant_url_post_params VARCHAR,image_url_post_params VARCHAR,new_tab_url VARCHAR);
H A Dversion_54.sql8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,show_in_default_list INTEGER,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR,alternate_urls VARCHAR,search_terms_replacement_key VARCHAR,image_url VARCHAR,search_url_post_params VARCHAR,suggest_url_post_params VARCHAR,instant_url_post_params VARCHAR,image_url_post_params VARCHAR,new_tab_url VARCHAR);
H A Dversion_55.sql10 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,show_in_default_list INTEGER,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR,alternate_urls VARCHAR,search_terms_replacement_key VARCHAR,image_url VARCHAR,search_url_post_params VARCHAR,suggest_url_post_params VARCHAR,instant_url_post_params VARCHAR,image_url_post_params VARCHAR,new_tab_url VARCHAR);
H A Dversion_56.sql10 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,show_in_default_list INTEGER,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR,alternate_urls VARCHAR,search_terms_replacement_key VARCHAR,image_url VARCHAR,search_url_post_params VARCHAR,suggest_url_post_params VARCHAR,instant_url_post_params VARCHAR,image_url_post_params VARCHAR,new_tab_url VARCHAR);
H A Dversion_57.sql10 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,show_in_default_list INTEGER,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR,alternate_urls VARCHAR,search_terms_replacement_key VARCHAR,image_url VARCHAR,search_url_post_params VARCHAR,suggest_url_post_params VARCHAR,instant_url_post_params VARCHAR,image_url_post_params VARCHAR,new_tab_url VARCHAR);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DLoggingCanvas.cpp227 void LoggingCanvas::addComment(const char* keyword, const char* value) argument
231 params->setString("key", keyword);
233 this->SkCanvas::addComment(keyword, value);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
H A Dautopep8.py50 import keyword namespace
1403 # Don't break on '=' after keyword as this violates PEP 8.
1551 # The previous item was a keyword or identifier and the current
1848 return keyword.iskeyword(self._atom.token_string)
1962 E.g., the length of a function call or keyword.
/external/chromium_org/third_party/icu/source/common/
H A Duloc.cpp446 const char *keyword; /* keyword, or NULL if none */ member in struct:CanonicalizationMap
447 const char *value; /* keyword value, or NULL if kw==NULL */
505 const char *keyword; /* keyword, or NULL if none */ member in struct:VariantMap
506 const char *value; /* keyword value, or NULL if kw==NULL */
583 * @param status return status (keyword too long)
584 * @return length of the keyword name
592 /* keyword name too long for internal buffer */
597 /* normalize the keyword nam
607 char keyword[ULOC_KEYWORD_BUFFER_LEN]; member in struct:__anon12007
[all...]
H A Duresbund.cpp2400 const char *path, const char *resName, const char *keyword, const char *locid,
2403 char kwVal[1024] = ""; /* value of keyword 'keyword' */
2415 uloc_getKeywordValue(locid, keyword, kwVal, 1024-1,&subStatus);
2422 locid, keyword, kwVal, base, u_errorName(subStatus));
2475 path?path:"ICUDATA", parent, keyword, defVal, u_errorName(subStatus));
2482 path?path:"ICUDATA", parent, keyword, kwVal);
2530 path?path:"ICUDATA", parent, keyword, kwVal, u_errorName(subStatus));
2550 path?path:"ICUDATA", full, keyword, defVal, u_errorName(subStatus));
2605 parent, keyword, kwVa
2399 ures_getFunctionalEquivalent(char *result, int32_t resultCapacity, const char *path, const char *resName, const char *keyword, const char *locid, UBool *isAvailable, UBool omitDefault, UErrorCode *status) argument
2704 ures_getKeywordValues(const char *path, const char *keyword, UErrorCode *status) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dloctest.cpp1623 const char *keyword = NULL; local
1644 if((keyword = keywords->next(&keywordLen, status)) == NULL) {
1647 if(strcmp(keyword, testCases[i].expectedKeywords[j]) != 0) {
1648 err("Expected to get keyword value %s, got %s\n", testCases[i].expectedKeywords[j], keyword);
1655 err("Expected to get keyword UnicodeString %s, got %s\n", testCases[i].expectedKeywords[j], keyword);
1673 if((keyword = keywords->next(&keywordLen, status)) == NULL) {
1676 if(strcmp(keyword, testCases[i].expectedKeywords[j]) != 0) {
1677 err("Expected to get keyword valu
1698 const char *keyword; member in struct:__anon12317
1728 const char *keyword; member in struct:__anon12318
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-parsing.cc50 const char* keyword; member in struct:KeywordToken
64 for (int i = 0; (key_token = keywords[i]).keyword != NULL; i++) {
65 const i::byte* keyword = local
66 reinterpret_cast<const i::byte*>(key_token.keyword);
67 int length = i::StrLength(key_token.keyword);
70 i::Utf8ToUtf16CharacterStream stream(keyword, length);
80 // Removing characters will make keyword matching fail.
82 i::Utf8ToUtf16CharacterStream stream(keyword, length - 1);
88 // Adding characters will make keyword matching fail.
91 i::MemMove(buffer, keyword, lengt
[all...]
/external/fio/
H A Dinit.c930 const char *keyword; member in struct:fpre_keyword
934 { .keyword = "$jobname", .key = FPRE_JOBNAME, },
935 { .keyword = "$jobnum", .key = FPRE_JOBNUM, },
936 { .keyword = "$filenum", .key = FPRE_FILENUM, },
937 { .keyword = NULL, },
952 for (f = &fpre_keywords[0]; f->keyword; f++)
953 f->strlen = strlen(f->keyword);
959 for (f = &fpre_keywords[0]; f->keyword; f++) {
964 str = strcasestr(buf, f->keyword);
/external/icu/icu4c/source/common/
H A Duloc.cpp446 const char *keyword; /* keyword, or NULL if none */ member in struct:CanonicalizationMap
447 const char *value; /* keyword value, or NULL if kw==NULL */
505 const char *keyword; /* keyword, or NULL if none */ member in struct:VariantMap
506 const char *value; /* keyword value, or NULL if kw==NULL */
583 * @param status return status (keyword too long)
584 * @return length of the keyword name
592 /* keyword name too long for internal buffer */
597 /* normalize the keyword nam
607 char keyword[ULOC_KEYWORD_BUFFER_LEN]; member in struct:__anon21797
[all...]
H A Duresbund.cpp2400 const char *path, const char *resName, const char *keyword, const char *locid,
2403 char kwVal[1024] = ""; /* value of keyword 'keyword' */
2415 uloc_getKeywordValue(locid, keyword, kwVal, 1024-1,&subStatus);
2422 locid, keyword, kwVal, base, u_errorName(subStatus));
2475 path?path:"ICUDATA", parent, keyword, defVal, u_errorName(subStatus));
2482 path?path:"ICUDATA", parent, keyword, kwVal);
2530 path?path:"ICUDATA", parent, keyword, kwVal, u_errorName(subStatus));
2550 path?path:"ICUDATA", full, keyword, defVal, u_errorName(subStatus));
2605 parent, keyword, kwVa
2399 ures_getFunctionalEquivalent(char *result, int32_t resultCapacity, const char *path, const char *resName, const char *keyword, const char *locid, UBool *isAvailable, UBool omitDefault, UErrorCode *status) argument
2704 ures_getKeywordValues(const char *path, const char *keyword, UErrorCode *status) argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dloctest.cpp1623 const char *keyword = NULL; local
1644 if((keyword = keywords->next(&keywordLen, status)) == NULL) {
1647 if(strcmp(keyword, testCases[i].expectedKeywords[j]) != 0) {
1648 err("Expected to get keyword value %s, got %s\n", testCases[i].expectedKeywords[j], keyword);
1655 err("Expected to get keyword UnicodeString %s, got %s\n", testCases[i].expectedKeywords[j], keyword);
1673 if((keyword = keywords->next(&keywordLen, status)) == NULL) {
1676 if(strcmp(keyword, testCases[i].expectedKeywords[j]) != 0) {
1677 err("Expected to get keyword valu
1698 const char *keyword; member in struct:__anon22127
1728 const char *keyword; member in struct:__anon22128
[all...]

Completed in 3896 milliseconds

1234567