Searched refs:keyword (Results 26 - 50 of 169) sorted by relevance

1234567

/external/icu4c/i18n/
H A Dselfmt.cpp86 SelectFormat::format(const UnicodeString& keyword, argument
93 // Check for the validity of the keyword
94 if (!PatternProps::isIdentifier(keyword.getBuffer(), keyword.length())) {
101 int32_t msgStart = findSubMessage(msgPattern, 0, keyword, status);
126 const UnicodeString& keyword, UErrorCode& ec) {
141 if(pattern.partSubstringMatches(part, keyword)) {
142 // keyword matches
125 findSubMessage(const MessagePattern& pattern, int32_t partIndex, const UnicodeString& keyword, UErrorCode& ec) argument
/external/protobuf/editors/
H A Dproto.vim53 syn keyword pbTodo contained TODO FIXME XXX
56 syn keyword pbSyntax syntax import option
57 syn keyword pbStructure package message group
58 syn keyword pbRepeat optional required repeated
59 syn keyword pbDefault default
60 syn keyword pbExtend extend extensions to max
61 syn keyword pbRPC service rpc returns
63 syn keyword pbType int32 int64 uint32 uint64 sint32 sint64
64 syn keyword pbType fixed32 fixed64 sfixed32 sfixed64
65 syn keyword pbTyp
[all...]
/external/chromium/chrome/browser/search_engines/
H A Dtemplate_url_fetcher.h37 void ScheduleDownload(const string16& keyword,
H A Dtemplate_url_model.cc47 // the rare case the term replaces the URL it's unlikely another keyword would
81 // we need to extend this to mark a prefix as "not less than" a keyword it
148 // Strip "www." off the front of the keyword; otherwise the keyword won't work
154 string16 TemplateURLModel::CleanUserInputKeyword(const string16& keyword) { argument
156 string16 result(l10n_util::ToLower(keyword));
158 if (url_parse::ExtractScheme(UTF16ToUTF8(keyword).c_str(),
159 static_cast<int>(keyword.length()),
214 const string16& keyword,
217 DCHECK(!keyword
213 CanReplaceKeyword( const string16& keyword, const GURL& url, const TemplateURL** template_url_to_replace) argument
333 string16 keyword = UTF8ToUTF16(extension->omnibox_keyword()); local
384 ResetTemplateURL(const TemplateURL* url, const string16& title, const string16& keyword, const std::string& search_url) argument
551 GetKeywordShortName(const string16& keyword, bool* is_extension_keyword) argument
775 std::string keyword; local
837 string16 keyword = local
[all...]
H A Dtemplate_url_model.h67 const char* const keyword; member in struct:TemplateURLModel::Initializer
77 // Generates a suitable keyword for the specified url. Returns an empty
78 // string if a keyword couldn't be generated. If |autodetected| is true, we
84 // Removes any unnecessary characters from a user input keyword.
86 static string16 CleanUserInputKeyword(const string16& keyword);
100 // keyword/url pair, or there is one but it can be replaced. If there is an
101 // existing keyword that can be replaced and template_url_to_replace is
102 // non-NULL, template_url_to_replace is set to the keyword to replace.
106 bool CanReplaceKeyword(const string16& keyword,
117 // Looks up |keyword| an
[all...]
/external/chromium/chrome/browser/ui/cocoa/location_bar/
H A Dkeyword_hint_decoration.h16 // Draws the keyword hint, "Press [tab] to search <site>".
25 void SetKeyword(const string16& keyword, bool is_extension_keyword);
H A Dselected_keyword_decoration.h23 void SetKeyword(const string16& keyword, bool is_extension_keyword);
/external/chromium/chrome/browser/ui/webui/options/
H A Dsearch_engine_manager_handler.cc153 dict->SetString("keyword", table_model->GetText(
217 const string16& keyword,
220 list_controller_->ModifyTemplateURL(template_url, title, keyword, url);
222 list_controller_->AddTemplateURL(title, keyword, url);
233 string16 keyword; local
237 !args->GetString(ENGINE_KEYWORD, &keyword) ||
246 validity.SetBoolean("keyword", edit_controller_->IsKeywordValid(keyword));
264 string16 keyword; local
267 !args->GetString(ENGINE_KEYWORD, &keyword) ||
214 OnEditedKeyword( const TemplateURL* template_url, const string16& title, const string16& keyword, const std::string& url) argument
[all...]
H A Dsearch_engine_manager_handler.h35 const string16& keyword,
/external/chromium/chrome/browser/ui/search_engines/
H A Dtemplate_url_table_model.cc192 string16 keyword = url.keyword(); local
193 keyword = base::i18n::GetDisplayStringInLTRDirectionality(keyword);
194 return keyword;
269 const string16& keyword,
274 template_url_model_->ResetTemplateURL(template_url, title, keyword, url);
331 const TemplateURL* keyword = &GetTemplateURL(index); local
334 if (current_default == keyword)
338 template_url_model_->SetDefaultSearchProvider(keyword);
267 ModifyTemplateURL(int index, const string16& title, const string16& keyword, const std::string& url) argument
[all...]
H A Dedit_search_engine_controller.h26 const string16& keyword,
53 // Returns true if the value of |keyword_input| represents a valid keyword.
54 // The keyword is valid if it is non-empty and does not conflict with an
55 // existing entry. NOTE: this is just the keyword, not the title and url.
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_popup_model.h73 // Gets the selected keyword or keyword hint for the given match. If the match
74 // is already keyword, then the keyword will be returned directly. Otherwise,
75 // it returns GetKeywordForText(match.fill_into_edit, keyword).
77 string16* keyword) const;
79 // Gets the selected keyword or keyword hint for the given text. Returns
80 // true if |keyword| represents a keyword hin
[all...]
H A Dkeyword_provider.h5 // This file contains the keyword autocomplete provider. The keyword provider
6 // is responsible for remembering/suggesting user "search keyword queries"
29 // Autocomplete provider for keyword input.
37 // of a known "keyword". A keyword is some string that maps to a search query
39 // example, the keyword "bug" might map to the URL "http://b/issue?id=%s", so
42 // Because we do prefix matching, user input could match more than one keyword
46 // The resulting matches are shown with content specified by the keyword
47 // (usually "Search [name] for %s"), description "(Keyword: [keyword])", an
[all...]
H A Dautocomplete_edit.cc50 const string16& keyword,
54 keyword(keyword),
121 // NOTE: Be sure and set keyword-related state BEFORE invoking
123 keyword_ = state.keyword;
295 // * the user is not typing a keyword query.
422 // The final parameter to OpenURL, keyword, is not quite correct here: it's
423 // possible to "paste and go" a string that contains a keyword. This is
486 const string16& keyword) {
503 if (template_url_model && !keyword
48 State(bool user_input_in_progress, const string16& user_text, const string16& keyword, bool is_keyword_hint) argument
481 OpenURL(const GURL& url, WindowOpenDisposition disposition, PageTransition::Type transition, const GURL& alternate_nav_url, size_t index, const string16& keyword) argument
675 OnPopupDataChanged( const string16& text, GURL* destination_for_temporary_text_change, const string16& keyword, bool is_keyword_hint) argument
834 string16 keyword; local
996 string16 keyword; local
[all...]
/external/icu4c/i18n/unicode/
H A Dselfmt.h101 * <p>The resulting keyword is provided to <code>MessageFormat</code> as a
138 * for each user-defined keyword.
139 * The pattern is a sequence of (keyword, message) pairs.
140 * A keyword is a "pattern identifier": [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+</p>
144 * <p>You always have to define a phrase for the default keyword
145 * <code>other</code>; this phrase is returned when the keyword
147 * the <code>format</code> method matches no other keyword.
210 * for the keyword rules.
225 * Selects the phrase for the given keyword
227 * @param keyword Th
[all...]
/external/chromium/chrome/browser/webdata/
H A Dkeyword_table_unittest.cc66 template_url.set_keyword(ASCIIToUTF16("keyword"));
95 EXPECT_EQ(template_url.keyword(), restored_url->keyword());
159 template_url.set_keyword(ASCIIToUTF16("keyword"));
174 EXPECT_EQ(ASCIIToUTF16("url"), template_url.keyword());
189 EXPECT_EQ(template_url.keyword(), restored_url->keyword());
229 template_url.set_keyword(ASCIIToUTF16("keyword"));
242 EXPECT_EQ(template_url.keyword(), restored_url->keyword());
[all...]
/external/chromium/chrome/browser/ui/views/location_bar/
H A Dkeyword_hint_view.cc51 void KeywordHintView::SetKeyword(const string16& keyword) { argument
52 keyword_ = keyword;
62 GetKeywordShortName(keyword, &is_extension_keyword);
/external/icu4c/test/intltest/
H A Dplurults.cpp397 const UnicodeString* keyword; local
398 while (NULL != (keyword = keywords->snext(status))) {
399 int32_t count = rules->getSamples(*keyword, values, 4, status);
403 UNICODE_STRING_SIMPLE(", keyword ") + *keyword);
407 errln("no samples for keyword");
413 UNICODE_STRING_SIMPLE(", keyword ") + *keyword);
421 if (*keyword != resultKeyword) {
442 UnicodeString keyword local
[all...]
/external/bluetooth/glib/gobject/
H A Dglib-genmarshal.c50 gchar *keyword; /* marhaller list keyword [MY_STRING] */ member in struct:__anon971
57 gchar *keyword; /* marhaller list keyword [MY_STRING] */ member in struct:__anon972
185 /* keyword sig_name ctype getter */
214 if (strcmp (args[i].keyword, iarg->keyword) == 0)
229 /* keyword sig_name ctype setter */
258 if (strcmp (args[i].keyword, oarg->keyword)
[all...]
/external/libvpx/examples/includes/geshi/geshi/
H A Dactionscript3.php20 * 2 : 'var' keyword
21 * 3 : 'function' keyword
32 * - Added the 'this' keyword (oops)
341 //in other keyword groups, that might get highlighted as part of the URL.
/external/webkit/Source/WebCore/inspector/front-end/
H A DinspectorSyntaxHighlight.css33 .webkit-css-url, .webkit-css-color, .webkit-css-string, .webkit-css-keyword {
57 .webkit-javascript-keyword {
/external/grub/util/
H A Dgrub-set-default38 ENTRY is a number or the special keyword \`default\'.
H A Dgrub-set-default.in38 ENTRY is a number or the special keyword \`default\'.
/external/chromium/chrome/browser/history/
H A Durl_database_unittest.cc125 // Tests adding, querying and deleting keyword visits.
136 // Add a keyword visit.
138 string16 keyword = UTF8ToUTF16("visit"); local
139 ASSERT_TRUE(SetKeywordSearchTermsForURL(url_id, keyword_id, keyword));
143 GetMostRecentKeywordSearchTerms(keyword_id, keyword, 10, &matches);
145 ASSERT_EQ(keyword, matches[0].term);
151 EXPECT_EQ(keyword, keyword_search_term_row.term);
153 // Delete the keyword visit.
158 GetMostRecentKeywordSearchTerms(keyword_id, keyword, 10, &matches);
164 // Make sure deleting a URL also deletes a keyword visi
[all...]
/external/llvm/utils/vim/
H A Dtablegen.vim17 syn keyword tgKeyword def let in code dag field include defm foreach
18 syn keyword tgType class int string list bit bits multiclass
28 syn keyword tgTodo contained TODO FIXME

Completed in 535 milliseconds

1234567