Searched refs:keyword (Results 1 - 25 of 172) 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/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:__anon2396
[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...]
H A Dtemplate_url_fetcher.h37 void ScheduleDownload(const string16& keyword,
/external/llvm/utils/vim/
H A Dllvm.vim17 syn keyword llvmType void half float double x86_fp80 fp128 ppc_fp128
18 syn keyword llvmType label metadata x86_mmx
19 syn keyword llvmType type label opaque
25 syn keyword llvmStatement add alloca and arcp ashr atomicrmw bitcast br call
26 syn keyword llvmStatement cmpxchg eq exact extractelement extractvalue fadd fast
27 syn keyword llvmStatement fcmp fdiv fence fmul fpext fptosi fptoui fptrunc free
28 syn keyword llvmStatement frem fsub getelementptr icmp inbounds indirectbr
29 syn keyword llvmStatement insertelement insertvalue inttoptr invoke landingpad
30 syn keyword llvmStatement load lshr malloc max min mul nand ne ninf nnan nsw nsz
31 syn keyword llvmStatemen
[all...]
/external/icu4c/test/cintltst/
H A Dcpluralrulestest.c70 UChar keyword[kKeywordBufLen]; local
72 int32_t keywdLen = uplrules_select(uplrules, testItemPtr->number, keyword, kKeywordBufLen, &status);
74 keyword[kKeywordBufLen-1] = 0;
78 if ( u_strcmp(keyword, keywordExpected) != 0 ) {
81 testItemPtr->locale, testItemPtr->number, testItemPtr->keywordExpected, u_austrcpy(bcharBuf,keyword) );
96 UChar keyword[8]; local
105 length = uplrules_select(upr, 2., keyword, 8, &errorCode);
106 if (U_FAILURE(errorCode) || u_strCompare(keyword, length, two, 3, FALSE) != 0) {
/external/icu4c/i18n/
H A Dupluralrules.cpp41 UChar *keyword, int32_t capacity,
47 if (keyword == NULL ? capacity != 0 : capacity < 0) {
52 return result.extract(keyword, capacity, *status);
39 uplrules_select(const UPluralRules *uplrules, double number, UChar *keyword, int32_t capacity, UErrorCode *status) argument
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/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/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/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.h49 * examines each condition in order and returns the keyword for the
64 * are assigned the keyword "other" by the default rule.
67 * This illustrates that the same keyword can be defined multiple times.
68 * Each rule is examined in order, and the first keyword whose condition
84 * rule = keyword ':' condition
85 * keyword = <identifier>
109 * 'other'. Callers need to check the value of keyword returned by
114 * UnicodeString keyword = pl->select(number);
115 * if (keyword== UnicodeString("one") {
223 * Given a number, returns the keyword o
[all...]
/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...]
/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...]

Completed in 3798 milliseconds

1234567