Searched refs:keyword (Results 1 - 25 of 169) sorted by relevance

1234567

/external/apache-harmony/auth/src/test/java/common/tests/api/javax/security/auth/x500/
H A DX500PrincipalTest.java42 Map<String, String> keyword = new HashMap<String, String>();
43 keyword.put("CN", "2.19");
44 keyword.put("OU", "1.2.5.19");
45 keyword.put("O", "1.2.5");
46 X500Principal X500p = new X500Principal("CN=Duke, OU=JavaSoft, O=Sun Microsystems, C=US ,CN=DD",keyword);
68 Map<String, String> keyword = new HashMap<String, String>();
69 keyword.put("CN", "2.19");
70 keyword.put("OU", "1.2.5.19");
71 keyword.put("O", "1.2.5");
72 X500Principal X500p = new X500Principal("CN=Duke, OU=JavaSoft, O=Sun Microsystems, C=US ,CN=DD",keyword);
[all...]
/external/v8/test/mjsunit/
H A Dobject-literal.js142 function testKeywordProperty(keyword) {
145 // Sanity check that what we get is a keyword.
146 eval("var " + keyword + " = 42;");
153 var x = eval("({" + keyword + ": 42})");
154 assertEquals(42, x[keyword]);
155 assertEquals(42, eval("x." + keyword));
156 eval("x." + keyword + " = 37");
157 assertEquals(37, x[keyword]);
158 assertEquals(37, eval("x." + keyword));
161 var y = eval("({value : 42, get " + keyword
[all...]
/external/bluetooth/bluez/tools/
H A Dkword.c54 int rfcomm_find_keyword(struct keyword_t *keyword, char *string) argument
56 while (keyword->string) {
57 if (!strcmp(string, keyword->string))
58 return keyword->type;
59 keyword++;
H A Dkword.h33 int rfcomm_find_keyword(struct keyword_t *keyword, char *string);
H A Dlexer.l58 keyword [A-Za-z0-9\_\-]+
93 {keyword} {
94 int keyword = rfcomm_find_keyword(rfcomm_keyword, yytext);
95 if (keyword != -1)
96 return keyword;
/external/llvm/utils/vim/
H A Dllvm.vim17 syn keyword llvmType void float double
18 syn keyword llvmType x86_fp80 fp128 ppc_fp128
19 syn keyword llvmType type label opaque
25 syn keyword llvmStatement add fadd sub fsub mul fmul
26 syn keyword llvmStatement sdiv udiv fdiv srem urem frem
27 syn keyword llvmStatement and or xor
28 syn keyword llvmStatement icmp fcmp
29 syn keyword llvmStatement eq ne ugt uge ult ule sgt sge slt sle
30 syn keyword llvmStatement oeq ogt oge olt ole one ord ueq ugt uge
31 syn keyword llvmStatemen
[all...]
/external/chromium/chrome/browser/search_engines/
H A Dtemplate_url_fetcher_unittest.cc80 void StartDownload(const string16& keyword,
158 const string16& keyword,
175 keyword, osdd_url, favicon_url, new TemplateURLFetcherTestCallbacks(this),
187 string16 keyword(ASCIIToUTF16("test"));
190 ASSERT_FALSE(test_util_.model()->GetTemplateURLForKeyword(keyword));
193 StartDownload(keyword, osdd_file_name,
205 keyword);
213 string16 keyword(ASCIIToUTF16("test"));
216 ASSERT_FALSE(test_util_.model()->GetTemplateURLForKeyword(keyword));
219 StartDownload(keyword, osdd_file_nam
157 StartDownload( const string16& keyword, const std::string& osdd_file_name, TemplateURLFetcher::ProviderType provider_type, bool check_that_file_exists) argument
228 string16 keyword; member in struct:__anon1846
[all...]
H A Dtemplate_url_fetcher.cc29 const string16& keyword,
54 string16 keyword() const { return keyword_; } function in class:TemplateURLFetcher::RequestDelegate
79 const string16& keyword,
87 keyword_(keyword),
129 // Make sure we can still replace the keyword, i.e. the fetch was successful.
158 // Generate new keyword from URL in OSDD for none autodetected case.
159 // Previous keyword was generated from URL where OSDD was placed and
182 // Try to generate a keyword automatically when we are setting the default
183 // provider. The keyword isn't as important in this case.
188 // Concatenate a number at end of the keyword an
77 RequestDelegate( TemplateURLFetcher* fetcher, const string16& keyword, const GURL& osdd_url, const GURL& favicon_url, TemplateURLFetcherCallbacks* callbacks, ProviderType provider_type) argument
270 ScheduleDownload( const string16& keyword, const GURL& osdd_url, const GURL& favicon_url, TemplateURLFetcherCallbacks* callbacks, ProviderType provider_type) argument
[all...]
/external/icu4c/i18n/
H A Dupluralrules.cpp36 UChar *keyword, int32_t capacity,
42 if (keyword == NULL ? capacity != 0 : capacity < 0) {
47 return result.extract(keyword, capacity, *status);
34 uplrules_select(const UPluralRules *uplrules, double number, UChar *keyword, int32_t capacity, UErrorCode *status) argument
/external/icu4c/test/cintltst/
H A Dcpluralrulestest.c68 UChar keyword[kKeywordBufLen]; local
70 int32_t keywdLen = uplrules_select(uplrules, testItemPtr->number, keyword, kKeywordBufLen, &status);
72 keyword[kKeywordBufLen-1] = 0;
76 if ( u_strcmp(keyword, keywordExpected) != 0 ) {
79 testItemPtr->locale, testItemPtr->number, testItemPtr->keywordExpected, u_austrcpy(bcharBuf,keyword) );
/external/chromium/chrome/browser/ui/search_engines/
H A Dkeyword_editor_controller.cc32 const string16& keyword,
41 template_url->set_keyword(keyword);
57 const string16& keyword,
68 template_url->keyword() == keyword &&
75 table_model_->ModifyTemplateURL(index, title, keyword, url);
31 AddTemplateURL(const string16& title, const string16& keyword, const std::string& url) argument
55 ModifyTemplateURL(const TemplateURL* template_url, const string16& title, const string16& keyword, const std::string& url) argument
H A Dkeyword_editor_controller.h28 // Invoked when the user succesfully fills out the add keyword dialog.
32 const string16& keyword,
39 const string16& keyword,
H A Dsearch_engine_tab_helper.cc54 // Checks to see if we should generate a keyword based on the OSDD, and if
56 // keyword.
93 // a form submit and use its url to generate the keyword from.
112 string16 keyword = TemplateURLModel::GenerateKeyword(
117 // new keyword will be created when done.
119 keyword,
145 // Only generate a keyword if the previous page wasn't itself a form
152 string16 keyword = local
154 if (keyword.empty())
169 if (!url_model->CanReplaceKeyword(keyword, ur
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dpredicates.rb14 /* With this true, enum is seen as a keyword. False, it's an identifier */
24 | enumAsKeyword {$enumIs = "keyword"}
52 example "'enum' is a keyword" do
56 parser.stat.should == 'keyword'
/external/chromium/chrome/browser/ui/omnibox/
H A Dlocation_bar_util.h15 // Returns the short name for a keyword.
16 std::wstring GetKeywordName(Profile* profile, const std::wstring& keyword);
18 // Build a short string to use in keyword-search when the field isn't
H A Dlocation_bar_util.cc16 std::wstring GetKeywordName(Profile* profile, const std::wstring& keyword) { argument
22 WideToUTF16Hack(keyword));
/external/chromium/chrome/browser/ui/views/location_bar/
H A Dselected_keyword_view.cc53 void SelectedKeywordView::SetKeyword(const string16& keyword) { argument
54 keyword_ = keyword;
55 if (keyword.empty())
63 GetKeywordShortName(keyword, &is_extension_keyword);
H A Dkeyword_hint_view.h23 // user when the selected url has a corresponding keyword.
39 void SetKeyword(const string16& keyword);
40 string16 keyword() const { return keyword_; } function in class:KeywordHintView
54 // The keyword.
H A Dselected_keyword_view.h35 // The current keyword, or an empty string if no keyword is displayed.
36 void SetKeyword(const string16& keyword);
37 string16 keyword() const { return keyword_; } function in class:SelectedKeywordView
42 // The keyword we're showing. If empty, no keyword is selected.
48 // label contains the complete description of the keyword, the second
/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/chrome/browser/autocomplete/
H A Dkeyword_provider.cc25 // Helper functor for Start(), for ending keyword mode unless explicitly told
84 // Helper functor for Start(), for sorting keyword matches by quality.
87 // A keyword is of higher quality when a greater fraction of it has been
91 // probably better rankings than the fraction of the keyword typed. We should
114 string16 keyword;
115 if (!ExtractKeywordFromInput(input, &keyword, remaining_input))
124 const TemplateURL* template_url = model->GetTemplateURLForKeyword(keyword);
130 // This object ensures we end keyword mode if we exit the function without
131 // toggling keyword mode to on.
144 // Split user input into a keyword an
157 string16 keyword, remaining_input; local
276 ExtractKeywordFromInput(const AutocompleteInput& input, string16* keyword, string16* remaining_input) argument
382 CreateAutocompleteMatch( TemplateURLModel* model, const string16& keyword, const AutocompleteInput& input, size_t prefix_length, const string16& remaining_input, int relevance) argument
464 string16 keyword, remaining_input; local
[all...]
H A Dautocomplete_popup_model.cc103 string16 keyword; local
104 const bool is_keyword_hint = GetKeywordForMatch(match, &keyword);
113 keyword, is_keyword_hint);
116 keyword, is_keyword_hint);
132 string16* keyword) const {
133 // If the current match is a keyword, return that as the selected keyword.
135 keyword->assign(match.template_url->keyword());
139 // See if the current match's fill_into_edit corresponds to a keyword
[all...]
/external/icu4c/i18n/unicode/
H A Dplurrule.h48 * examines each condition in order and returns the keyword for the
63 * are assigned the keyword "other" by the default rule.
66 * This illustrates that the same keyword can be defined multiple times.
67 * Each rule is examined in order, and the first keyword whose condition
83 * rule = keyword ':' condition
84 * keyword = <identifier>
108 * 'other'. Callers need to check the value of keyword returned by
113 * UnicodeString keyword = pl->select(number);
114 * if (keyword== UnicodeString("one") {
203 * Given a number, returns the keyword o
[all...]
H A Dupluralrules.h22 * returns the keyword for the first condition that matches the number.
30 * the value of keyword returned by the uplrules_select function.
86 * Given a number, returns the keyword of the first rule that
90 * @param keyword The keyword of the rule that applies to number.
91 * @param capacity The capacity of keyword.
93 * @return The length of keyword.
99 UChar *keyword, int32_t capacity,
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
H A DMaterialLoader.java159 String keyword = split[0];
160 if (keyword.equals("texture")){
162 }else if (keyword.equals("tex_address_mode")){
173 }else if (keyword.equals("filtering")){
175 }else if (keyword.equals("tex_coord_set")){
180 }else if (keyword.equals("max_anisotropy")){
184 logger.log(Level.WARNING, "Unsupported texture_unit directive: {0}", keyword);
212 String keyword = split[0];
213 if (keyword.equals("diffuse")){
221 }else if(keyword
[all...]

Completed in 525 milliseconds

1234567