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

1234567891011>>

/external/qemu/
H A Doffset_layout.py9 _RE_LINE = re.compile("^\s*(?P<keyword>[\w-]+)\s+{\s*$")
65 keyword = m_line.group("keyword")
66 if keyword in ["display", "button"]:
67 mode = keyword
73 is_phone = keyword in PHONE
74 is_keyboard = (len(keyword) == 1 and keyword.isalnum())
76 is_keyboard = keyword in KEYBOARD
/external/chromium_org/components/search_engines/
H A Dtemplate_url_service_util_unittest.cc18 const std::string& keyword,
22 data->SetKeyword(base::ASCIIToUTF16(keyword));
28 // keyword and TemplateURLID. Only use this in tests if your tests do not
31 const std::string& keyword,
34 *CreatePrepopulateTemplateURLData(prepopulate_id, keyword, id)));
64 // Keyword match set - Prefer the one that matches the keyword of the
99 StartsWith((*itr)->keyword(), base::ASCIIToUTF16("winner"), true));
16 CreatePrepopulateTemplateURLData( int prepopulate_id, const std::string& keyword, TemplateURLID id) argument
30 CreatePrepopulateTemplateURL(int prepopulate_id, const std::string& keyword, TemplateURLID id) argument
H A Ddefault_search_pref_test_util.h22 const std::string& keyword,
37 const std::string& keyword,
47 enabled, name, keyword, search_url, suggest_url, icon_url,
34 SetManagedPref(TestingPrefService* pref_service, bool enabled, const std::string& name, const std::string& keyword, const std::string& search_url, const std::string& suggest_url, const std::string& icon_url, const std::string& encodings, const std::string& alternate_url, const std::string& search_terms_replacement_key) argument
H A Dtemplate_url_fetcher.cc25 const base::string16& keyword,
41 base::string16 keyword() const { return keyword_; } function in class:TemplateURLFetcher::RequestDelegate
66 const base::string16& keyword,
75 keyword_(keyword),
109 // Make sure we can still replace the keyword, i.e. the fetch was successful.
136 // Use the parser-generated new keyword from the URL in the OSDD for the
138 // URL that hosted the OSDD, which results in the wrong keyword when the
141 keyword_ = template_url_->keyword();
170 // since it is better when generated keyword in many cases.
181 // Mark the keyword a
64 RequestDelegate( TemplateURLFetcher* fetcher, const base::string16& keyword, const GURL& osdd_url, const GURL& favicon_url, const URLFetcherCustomizeCallback& url_fetcher_customize_callback, const ConfirmAddSearchProviderCallback& confirm_add_callback, ProviderType provider_type) argument
217 ScheduleDownload( const base::string16& keyword, const GURL& osdd_url, const GURL& favicon_url, const URLFetcherCustomizeCallback& url_fetcher_customize_callback, const ConfirmAddSearchProviderCallback& confirm_add_callback, ProviderType provider_type) argument
[all...]
H A Ddefault_search_pref_test_util.cc16 const std::string& keyword,
29 EXPECT_FALSE(keyword.empty());
34 new base::StringValue(keyword));
13 CreateDefaultSearchPreferenceValue( bool enabled, const std::string& name, const std::string& keyword, const std::string& search_url, const std::string& suggest_url, const std::string& icon_url, const std::string& encodings, const std::string& alternate_url, const std::string& search_terms_replacement_key) argument
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dplurrule.h51 * examines each condition in order and returns the keyword for the
66 * are assigned the keyword "other" by the default rule.
69 * This illustrates that the same keyword can be defined multiple times.
70 * Each rule is examined in order, and the first keyword whose condition
86 * rule = keyword ':' condition
87 * keyword = <identifier>
172 * 'other'. Callers need to check the value of keyword returned by
177 * UnicodeString keyword = pl->select(number);
178 * if (keyword== UnicodeString("one") {
303 * Given a number, returns the keyword o
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DKeywordsBox.java57 for (String keyword : keywords) {
58 contentSize += 1 + Utf8.utf8StringLengthInBytes(keyword) + 1;
80 for (String keyword : keywords) {
81 IsoTypeWriter.writeUInt8(byteBuffer, Utf8.utf8StringLengthInBytes(keyword) + 1);
82 byteBuffer.put(Utf8.convert(keyword));
90 buffer.append(";keyword").append(i).append("=").append(keywords[i]);
/external/chromium_org/chrome/browser/search_engines/
H A Ddefault_search_pref_migration_unittest.cc30 const std::string& keyword,
59 const std::string& keyword,
63 data.SetKeyword(base::ASCIIToUTF16(keyword));
86 EXPECT_EQ(t_url->keyword(), modern_default->keyword());
107 EXPECT_EQ(t_url->keyword(), modern_default->keyword());
142 EXPECT_EQ(t_url2->keyword(), modern_default->keyword());
57 CreateKeyword( const std::string& short_name, const std::string& keyword, const std::string& url) argument
H A Dtemplate_url_service_factory_test_util.cc36 const std::string& keyword,
45 enabled, name, keyword, search_url, suggest_url, icon_url, encodings,
33 SetManagedDefaultSearchPreferences( bool enabled, const std::string& name, const std::string& keyword, const std::string& search_url, const std::string& suggest_url, const std::string& icon_url, const std::string& encodings, const std::string& alternate_url, const std::string& search_terms_replacement_key) argument
H A Dtemplate_url_service_factory_test_util.h31 const std::string& keyword,
/external/chromium_org/chrome/browser/ui/search_engines/
H A Dsearch_engine_tab_helper.cc107 // Checks to see if we should generate a keyword based on the OSDD, and if
109 // keyword.
127 // form submit and use its url to generate the keyword from.
137 // Autogenerate a keyword for the autodetected case; in the other cases we'll
138 // generate a keyword later after fetching the OSDD.
139 base::string16 keyword;
141 keyword = GenerateKeywordFromNavigationEntry(entry);
142 if (keyword.empty())
147 // new keyword will be created when done.
149 keyword, osdd_ur
[all...]
H A Dkeyword_editor_controller.h25 // Invoked when the user succesfully fills out the add keyword dialog.
29 const base::string16& keyword,
36 const base::string16& keyword,
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dkeyword_hint_view.h26 // user when the selected url has a corresponding keyword.
41 void SetKeyword(const base::string16& keyword);
42 base::string16 keyword() const { return keyword_; } function in class:KeywordHintView
H A Dselected_keyword_view.h33 // The current keyword, or an empty string if no keyword is displayed.
34 void SetKeyword(const base::string16& keyword);
35 const base::string16& keyword() const { return keyword_; } function in class:SelectedKeywordView
38 // The keyword we're showing. If empty, no keyword is selected.
44 // label contains the complete description of the keyword, the second
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Ddbgfmt.h49 const char *keyword; member in struct:yasm_dbgfmt_module
74 /** Get the keyword used to select a debug format.
76 * \return keyword
109 (((yasm_dbgfmt_base *)dbgfmt)->module->keyword)
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DFontSize.h43 // Given a CSS keyword in the range (xx-small to -webkit-xxx-large), this function returns
53 // Given a keyword size in the range (1 to 8), this function will return
55 static float fontSizeForKeyword(const Document*, unsigned keyword, FixedPitchFontType);
H A DFontSize.cpp120 // factors for each keyword value.
131 float FontSize::fontSizeForKeyword(const Document* document, unsigned keyword, FixedPitchFontType fixedPitchFontType) argument
133 ASSERT(keyword >= 1 && keyword <= 8);
142 int col = (keyword - 1);
148 return std::max(fontSizeFactors[keyword - 1] * mediumSize, minLogicalSize);
/external/icu/icu4c/source/i18n/unicode/
H A Dplurrule.h52 * examines each condition in order and returns the keyword for the
67 * are assigned the keyword "other" by the default rule.
70 * This illustrates that the same keyword can be defined multiple times.
71 * Each rule is examined in order, and the first keyword whose condition
87 * rule = keyword ':' condition
88 * keyword = <identifier>
173 * 'other'. Callers need to check the value of keyword returned by
178 * UnicodeString keyword = pl->select(number);
179 * if (keyword== UnicodeString("one") {
323 * Given a number, returns the keyword o
[all...]
/external/chromium_org/chrome/browser/autocomplete/
H A Dkeyword_extensions_delegate_impl.cc139 base::string16 keyword, remaining_input; local
142 input, &keyword, &remaining_input))
146 model->GetTemplateURLForKeyword(keyword));
160 base::string16 keyword, remaining_input;
162 input, &keyword, &remaining_input);
165 model->GetTemplateURLForKeyword(keyword);
177 // the full keyword had been typed.
186 template_url, input, keyword.length(),
/external/chromium_org/media/tools/layout_tests/
H A Dlayouttests.py111 for keyword in KEYWORDS_FOR_TEST_DESCRIPTION:
113 pattern = r'<p>(.*' + keyword + '.*)</p>'
119 for keyword in KEYWORD_FOR_TEST_DESCRIPTION_FAIL_SAFE:
121 pattern = r'\n(.*' + keyword + '.*)\n'
136 for keyword in KEYWORDS_FOR_TEST_DESCRIPTION:
138 pattern = r'\n(.*' + keyword + '.*)\n'
229 information which contains keyword (e.g., 'GPU') as key (we do
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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_org/chrome/browser/ui/cocoa/location_bar/
H A Dkeyword_hint_decoration.h15 // Draws the keyword hint, "Press [tab] to search <site>".
24 void SetKeyword(const base::string16& keyword, bool is_extension_keyword);
H A Dselected_keyword_decoration.h22 void SetKeyword(const base::string16& keyword, bool is_extension_keyword);

Completed in 533 milliseconds

1234567891011>>