Home
last modified time | relevance | path

Searched refs:keyword (Results 1 – 25 of 302) sorted by relevance

12345678910>>...13

/external/llvm/utils/vim/
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 llvmStatement ult ule une uno
[all …]
/external/v8/test/mjsunit/
Dobject-literal.js142 function testKeywordProperty(keyword) { argument
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 + "(){return this.value}," +
162 " set " + keyword + "(v) { this.value = v; }})");
[all …]
/external/chromium/chrome/browser/search_engines/
Dtemplate_url_fetcher_unittest.cc80 void StartDownload(const string16& keyword,
158 const string16& keyword, in StartDownload() argument
175 keyword, osdd_url, favicon_url, new TemplateURLFetcherTestCallbacks(this), in StartDownload()
187 string16 keyword(ASCIIToUTF16("test")); in TEST_F() local
190 ASSERT_FALSE(test_util_.model()->GetTemplateURLForKeyword(keyword)); in TEST_F()
193 StartDownload(keyword, osdd_file_name, in TEST_F()
205 keyword); in TEST_F()
213 string16 keyword(ASCIIToUTF16("test")); in TEST_F() local
216 ASSERT_FALSE(test_util_.model()->GetTemplateURLForKeyword(keyword)); in TEST_F()
219 StartDownload(keyword, osdd_file_name, in TEST_F()
[all …]
Dtemplate_url_fetcher.cc29 const string16& keyword,
54 string16 keyword() const { return keyword_; } in keyword() function in TemplateURLFetcher::RequestDelegate
79 const string16& keyword, in RequestDelegate() argument
87 keyword_(keyword), in RequestDelegate()
271 const string16& keyword, in ScheduleDownload() argument
282 keyword.empty()) in ScheduleDownload()
296 url_model->GetTemplateURLForKeyword(keyword); in ScheduleDownload()
309 (*i)->keyword() == keyword; in ScheduleDownload()
319 new RequestDelegate(this, keyword, osdd_url, favicon_url, in ScheduleDownload()
Dtemplate_url_model.cc154 string16 TemplateURLModel::CleanUserInputKeyword(const string16& keyword) { in CleanUserInputKeyword() argument
156 string16 result(l10n_util::ToLower(keyword)); in CleanUserInputKeyword()
158 if (url_parse::ExtractScheme(UTF16ToUTF8(keyword).c_str(), in CleanUserInputKeyword()
159 static_cast<int>(keyword.length()), in CleanUserInputKeyword()
214 const string16& keyword, in CanReplaceKeyword() argument
217 DCHECK(!keyword.empty()); // This should only be called for non-empty in CanReplaceKeyword()
220 const TemplateURL* existing_url = GetTemplateURLForKeyword(keyword); in CanReplaceKeyword()
278 const string16& keyword) const { in GetTemplateURLForKeyword()
280 keyword_to_template_map_.find(keyword)); in GetTemplateURLForKeyword()
333 string16 keyword = UTF8ToUTF16(extension->omnibox_keyword()); in RegisterExtensionKeyword() local
[all …]
/external/apache-harmony/auth/src/test/java/common/tests/api/javax/security/auth/x500/
DX500PrincipalTest.java42 Map<String, String> keyword = new HashMap<String, String>(); in test_ConstructorLjava_lang_String_java_util_Map() local
43 keyword.put("CN", "2.19"); in test_ConstructorLjava_lang_String_java_util_Map()
44 keyword.put("OU", "1.2.5.19"); in test_ConstructorLjava_lang_String_java_util_Map()
45 keyword.put("O", "1.2.5"); in test_ConstructorLjava_lang_String_java_util_Map()
46 …incipal X500p = new X500Principal("CN=Duke, OU=JavaSoft, O=Sun Microsystems, C=US ,CN=DD",keyword); in test_ConstructorLjava_lang_String_java_util_Map()
68 Map<String, String> keyword = new HashMap<String, String>(); in test_getNameLjava_lang_String_java_util_Map() local
69 keyword.put("CN", "2.19"); in test_getNameLjava_lang_String_java_util_Map()
70 keyword.put("OU", "1.2.5.19"); in test_getNameLjava_lang_String_java_util_Map()
71 keyword.put("O", "1.2.5"); in test_getNameLjava_lang_String_java_util_Map()
72 …incipal X500p = new X500Principal("CN=Duke, OU=JavaSoft, O=Sun Microsystems, C=US ,CN=DD",keyword); in test_getNameLjava_lang_String_java_util_Map()
[all …]
/external/chromium/chrome/browser/autocomplete/
Dkeyword_provider.cc114 string16 keyword; in GetSubstitutingTemplateURLForInput() local
115 if (!ExtractKeywordFromInput(input, &keyword, remaining_input)) in GetSubstitutingTemplateURLForInput()
124 const TemplateURL* template_url = model->GetTemplateURLForKeyword(keyword); in GetSubstitutingTemplateURLForInput()
157 string16 keyword, remaining_input; in Start() local
158 if (!ExtractKeywordFromInput(input, &keyword, &remaining_input)) in Start()
178 model->FindMatchingKeywords(keyword, in Start()
211 if (keyword_matches.front() == keyword) { in Start()
212 const TemplateURL* template_url(model->GetTemplateURLForKeyword(keyword)); in Start()
215 matches_.push_back(CreateAutocompleteMatch(model, keyword, input, in Start()
216 keyword.length(), in Start()
[all …]
Dautocomplete_popup_model.cc103 string16 keyword; in SetSelectedLine() local
104 const bool is_keyword_hint = GetKeywordForMatch(match, &keyword); in SetSelectedLine()
113 keyword, is_keyword_hint); in SetSelectedLine()
116 keyword, is_keyword_hint); in SetSelectedLine()
132 string16* keyword) const { in GetKeywordForMatch()
135 keyword->assign(match.template_url->keyword()); in GetKeywordForMatch()
140 return GetKeywordForText(match.fill_into_edit, keyword); in GetKeywordForMatch()
144 string16* keyword) const { in GetKeywordForText()
149 keyword->clear(); in GetKeywordForText()
174 keyword->assign(keyword_hint); in GetKeywordForText()
Dautocomplete_edit.cc50 const string16& keyword, in State() argument
54 keyword(keyword), in State()
123 keyword_ = state.keyword; in RestoreState()
486 const string16& keyword) { in OpenURL() argument
503 if (template_url_model && !keyword.empty()) { in OpenURL()
505 template_url_model->GetTemplateURLForKeyword(keyword); in OpenURL()
518 size_t prefix_length = match.template_url->keyword().size() + 1; in OpenURL()
678 const string16& keyword, in OnPopupDataChanged() argument
681 bool keyword_state_changed = (keyword_ != keyword) || in OnPopupDataChanged()
682 ((is_keyword_hint_ != is_keyword_hint) && !keyword.empty()); in OnPopupDataChanged()
[all …]
/external/bluetooth/bluez/tools/
Dkword.c54 int rfcomm_find_keyword(struct keyword_t *keyword, char *string) in rfcomm_find_keyword() argument
56 while (keyword->string) { in rfcomm_find_keyword()
57 if (!strcmp(string, keyword->string)) in rfcomm_find_keyword()
58 return keyword->type; in rfcomm_find_keyword()
59 keyword++; in rfcomm_find_keyword()
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/qemu/
Doffset_layout.py65 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/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
DMaterialLoader.java159 String keyword = split[0]; in readTextureUnitStatement() local
160 if (keyword.equals("texture")){ in readTextureUnitStatement()
162 }else if (keyword.equals("tex_address_mode")){ in readTextureUnitStatement()
173 }else if (keyword.equals("filtering")){ in readTextureUnitStatement()
175 }else if (keyword.equals("tex_coord_set")){ in readTextureUnitStatement()
180 }else if (keyword.equals("max_anisotropy")){ in readTextureUnitStatement()
184 logger.log(Level.WARNING, "Unsupported texture_unit directive: {0}", keyword); in readTextureUnitStatement()
212 String keyword = split[0]; in readPassStatement() local
213 if (keyword.equals("diffuse")){ in readPassStatement()
221 }else if(keyword.equals("ambient")) { in readPassStatement()
[all …]
/external/protobuf/editors/
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 pbType float double bool string bytes
[all …]
/external/chromium/chrome/browser/ui/search_engines/
Dkeyword_editor_controller.cc32 const string16& keyword, in AddTemplateURL() argument
41 template_url->set_keyword(keyword); in AddTemplateURL()
57 const string16& keyword, in ModifyTemplateURL() argument
68 template_url->keyword() == keyword && in ModifyTemplateURL()
75 table_model_->ModifyTemplateURL(index, title, keyword, url); in ModifyTemplateURL()
Dsearch_engine_tab_helper.cc112 string16 keyword = TemplateURLModel::GenerateKeyword( in OnPageHasOSDD() local
119 keyword, in OnPageHasOSDD()
152 string16 keyword = in GenerateKeywordIfNecessary() local
154 if (keyword.empty()) in GenerateKeywordIfNecessary()
169 if (!url_model->CanReplaceKeyword(keyword, url, &current_url)) in GenerateKeywordIfNecessary()
181 new_url->set_keyword(keyword); in GenerateKeywordIfNecessary()
182 new_url->set_short_name(keyword); in GenerateKeywordIfNecessary()
Dtemplate_url_table_model.cc192 string16 keyword = url.keyword(); in GetText() local
193 keyword = base::i18n::GetDisplayStringInLTRDirectionality(keyword); in GetText()
194 return keyword; in GetText()
269 const string16& keyword, in ModifyTemplateURL() argument
274 template_url_model_->ResetTemplateURL(template_url, title, keyword, url); in ModifyTemplateURL()
331 const TemplateURL* keyword = &GetTemplateURL(index); in MakeDefaultTemplateURL() local
334 if (current_default == keyword) in MakeDefaultTemplateURL()
338 template_url_model_->SetDefaultSearchProvider(keyword); in MakeDefaultTemplateURL()
350 const int new_index = IndexOfTemplateURL(keyword); in MakeDefaultTemplateURL()
/external/icu4c/test/cintltst/
Dcpluralrulestest.c68 UChar keyword[kKeywordBufLen]; in TestPluralRules() local
70 …int32_t keywdLen = uplrules_select(uplrules, testItemPtr->number, keyword, kKeywordBufLen, &status… in TestPluralRules()
72 keyword[kKeywordBufLen-1] = 0; in TestPluralRules()
76 if ( u_strcmp(keyword, keywordExpected) != 0 ) { in TestPluralRules()
79 …ItemPtr->locale, testItemPtr->number, testItemPtr->keywordExpected, u_austrcpy(bcharBuf,keyword) ); in TestPluralRules()
/external/icu4c/i18n/unicode/
Dplurrule.h246 double getUniqueKeywordValue(const UnicodeString& keyword);
266 int32_t getAllKeywordValues(const UnicodeString &keyword,
288 int32_t getSamples(const UnicodeString &keyword,
301 UBool isKeyword(const UnicodeString& keyword) const;
367 int32_t getSamplesInternal(const UnicodeString &keyword, double *dest,
370 int32_t getKeywordIndex(const UnicodeString& keyword,
/external/chromium/chrome/browser/ui/webui/options/
Dsearch_engine_manager_handler.cc217 const string16& keyword, in OnEditedKeyword() argument
220 list_controller_->ModifyTemplateURL(template_url, title, keyword, url); in OnEditedKeyword()
222 list_controller_->AddTemplateURL(title, keyword, url); in OnEditedKeyword()
233 string16 keyword; in CheckSearchEngineInfoValidity() local
237 !args->GetString(ENGINE_KEYWORD, &keyword) || in CheckSearchEngineInfoValidity()
246 validity.SetBoolean("keyword", edit_controller_->IsKeywordValid(keyword)); in CheckSearchEngineInfoValidity()
264 string16 keyword; in EditCompleted() local
267 !args->GetString(ENGINE_KEYWORD, &keyword) || in EditCompleted()
272 edit_controller_->AcceptAddOrEdit(name, keyword, url); in EditCompleted()
/external/icu4c/i18n/
Dselfmt.cpp86 SelectFormat::format(const UnicodeString& keyword, in format() argument
94 if (!PatternProps::isIdentifier(keyword.getBuffer(), keyword.length())) { in format()
101 int32_t msgStart = findSubMessage(msgPattern, 0, keyword, status); in format()
126 const UnicodeString& keyword, UErrorCode& ec) { in findSubMessage() argument
141 if(pattern.partSubstringMatches(part, keyword)) { in findSubMessage()
Dupluralrules.cpp36 UChar *keyword, int32_t capacity, in uplrules_select() argument
42 if (keyword == NULL ? capacity != 0 : capacity < 0) { in uplrules_select()
47 return result.extract(keyword, capacity, *status); in uplrules_select()
/external/icu4c/test/intltest/
Dplurults.cpp397 const UnicodeString* keyword; in testGetSamples() local
398 while (NULL != (keyword = keywords->snext(status))) { in testGetSamples()
399 int32_t count = rules->getSamples(*keyword, values, 4, status); in testGetSamples()
403 UNICODE_STRING_SIMPLE(", keyword ") + *keyword); in testGetSamples()
413 UNICODE_STRING_SIMPLE(", keyword ") + *keyword); in testGetSamples()
421 if (*keyword != resultKeyword) { in testGetSamples()
442 UnicodeString keyword = rules->select((int32_t)26); in testWithin() local
443 if (keyword != "a") { in testWithin()
447 keyword = rules->select(26.5); in testWithin()
448 if (keyword != "other") { in testWithin()
[all …]
/external/chromium/chrome/browser/ui/views/location_bar/
Dselected_keyword_view.cc53 void SelectedKeywordView::SetKeyword(const string16& keyword) { in SetKeyword() argument
54 keyword_ = keyword; in SetKeyword()
55 if (keyword.empty()) in SetKeyword()
63 GetKeywordShortName(keyword, &is_extension_keyword); in SetKeyword()
/external/bluetooth/glib/gobject/
Dglib-genmarshal.c50 gchar *keyword; /* marhaller list keyword [MY_STRING] */ member
57 gchar *keyword; /* marhaller list keyword [MY_STRING] */ member
214 if (strcmp (args[i].keyword, iarg->keyword) == 0) in complete_in_arg()
258 if (strcmp (args[i].keyword, oarg->keyword) == 0) in complete_out_arg()
469 g_warning ("unknown type: %s", sig->rarg->keyword); in process_signature()
479 g_warning ("unknown type: %s", iarg->keyword); in process_signature()
486 pname = g_strconcat (sig->rarg->keyword, "_", NULL); in process_signature()
497 pname = g_strconcat (tmp, "_", iarg->keyword, NULL); in process_signature()
502 g_fprintf (fout, "\n/* %s", sig->rarg->keyword); in process_signature()
507 g_fprintf (fout, "%c%s", node->prev ? ',' : ':', iarg->keyword); in process_signature()
[all …]

12345678910>>...13