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

1234567891011>>

/external/chromium_org/chrome/browser/webdata/
H A Dkeyword_table_unittest.cc40 void AddKeyword(const TemplateURLData& keyword) const {
41 EXPECT_TRUE(table_->AddKeyword(keyword));
45 TemplateURLData keyword; local
46 keyword.short_name = ASCIIToUTF16("short_name");
47 keyword.SetKeyword(ASCIIToUTF16("keyword"));
48 keyword.SetURL("http://url/");
49 keyword.suggestions_url = "url2";
50 keyword.instant_url = "http://instant/";
51 keyword
182 TemplateURLData keyword; local
203 TemplateURLData keyword; local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dmodule.h45 (yasm_module_type type, const char *keyword);
47 #define yasm_load_arch(keyword) \
48 yasm_load_module(YASM_MODULE_ARCH, keyword)
49 #define yasm_load_dbgfmt(keyword) \
50 yasm_load_module(YASM_MODULE_DBGFMT, keyword)
51 #define yasm_load_objfmt(keyword) \
52 yasm_load_module(YASM_MODULE_OBJFMT, keyword)
53 #define yasm_load_listfmt(keyword) \
54 yasm_load_module(YASM_MODULE_LISTFMT, keyword)
55 #define yasm_load_parser(keyword) \
[all...]
H A Dmodule.in33 const char *keyword; /* module keyword */
77 const char *keyword; /* module keyword */
85 yasm_load_module(yasm_module_type type, const char *keyword)
95 yasm__strcasecmp(loaded_modules[i].keyword, keyword) == 0)
103 if (yasm__strcasecmp(modules[i].keyword, keyword) == 0)
111 yasm_register_module(yasm_module_type type, const char *keyword, voi
[all...]
H A Dparser.h39 const char *keyword; member in struct:yasm_parser_module
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DAudioTrack.cpp36 DEFINE_STATIC_LOCAL(const AtomicString, keyword, ("alternative", AtomicString::ConstructFromLiteral));
37 return keyword;
42 DEFINE_STATIC_LOCAL(const AtomicString, keyword, ("descriptions", AtomicString::ConstructFromLiteral));
43 return keyword;
48 DEFINE_STATIC_LOCAL(const AtomicString, keyword, ("main", AtomicString::ConstructFromLiteral));
49 return keyword;
54 DEFINE_STATIC_LOCAL(const AtomicString, keyword, ("main-desc", AtomicString::ConstructFromLiteral));
55 return keyword;
60 DEFINE_STATIC_LOCAL(const AtomicString, keyword, ("translation", AtomicString::ConstructFromLiteral));
61 return keyword;
[all...]
H A DVideoTrack.cpp38 DEFINE_STATIC_LOCAL(const AtomicString, keyword, ("alternative", AtomicString::ConstructFromLiteral));
39 return keyword;
44 DEFINE_STATIC_LOCAL(const AtomicString, keyword, ("captions", AtomicString::ConstructFromLiteral));
45 return keyword;
50 DEFINE_STATIC_LOCAL(const AtomicString, keyword, ("main", AtomicString::ConstructFromLiteral));
51 return keyword;
56 DEFINE_STATIC_LOCAL(const AtomicString, keyword, ("sign", AtomicString::ConstructFromLiteral));
57 return keyword;
62 DEFINE_STATIC_LOCAL(const AtomicString, keyword, ("subtitles", AtomicString::ConstructFromLiteral));
63 return keyword;
[all...]
/external/deqp/modules/gles2/scripts/
H A Dgen-keywords.py75 for keyword in KEYWORDS:
76 keywords.append(IdentifierCase(keyword, keyword)) # Keywords
78 for keyword in RESERVED_KEYWORDS:
79 reservedKeywords.append(IdentifierCase(keyword, keyword)) # Reserved keywords
/external/deqp/modules/gles3/scripts/
H A Dgen-keywords.py89 for keyword in KEYWORDS:
90 keywords.append(IdentifierCase(keyword, keyword)) # Keywords
92 for keyword in RESERVED_KEYWORDS:
93 reservedKeywords.append(IdentifierCase(keyword, keyword)) # Reserved keywords
/external/clang/test/Sema/
H A Dms-keyword-system-header.c2 // RUN: %clang_cc1 -fms-extensions -D MS -Wno-keyword-compat -I %S/Inputs %s -fsyntax-only -verify
6 // PR17824: GNU libc uses MS keyword __uptr as an identifier in C mode
7 #include <ms-keyword-system-header.h>
/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 addrspacecast alloca and arcp ashr atomicrmw
26 syn keyword llvmStatement bitcast br call cmpxchg eq exact extractelement
27 syn keyword llvmStatement extractvalue fadd fast fcmp fdiv fence fmul fpext
28 syn keyword llvmStatement fptosi fptoui fptrunc free frem fsub getelementptr
29 syn keyword llvmStatement icmp inbounds indirectbr insertelement insertvalue
30 syn keyword llvmStatement inttoptr invoke landingpad load lshr malloc max min
31 syn keyword llvmStatemen
[all...]
/external/chromium_org/components/search_engines/
H A Dtemplate_url_data.cc29 void TemplateURLData::SetKeyword(const base::string16& keyword) { argument
30 DCHECK(!keyword.empty());
32 // Case sensitive keyword matching is confusing. As such, we force all
34 keyword_ = base::i18n::ToLower(keyword);
H A Dtemplate_url_fetcher_unittest.cc52 void StartDownload(const base::string16& keyword,
118 const base::string16& keyword,
140 keyword, osdd_url, favicon_url,
156 base::string16 keyword(ASCIIToUTF16("test"));
159 ASSERT_FALSE(test_util()->model()->GetTemplateURLForKeyword(keyword));
162 StartDownload(keyword, osdd_file_name,
172 keyword);
181 base::string16 keyword(ASCIIToUTF16("test"));
184 ASSERT_FALSE(test_util()->model()->GetTemplateURLForKeyword(keyword));
187 StartDownload(keyword, osdd_file_nam
117 StartDownload( const base::string16& keyword, const std::string& osdd_file_name, TemplateURLFetcher::ProviderType provider_type, bool check_that_file_exists) argument
195 base::string16 keyword; member in struct:__anon6799
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Djavascript.js26 function kw(type) {return {type: type, style: "keyword"};}
27 var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c");
117 } else if (state.lastType == "operator" || state.lastType == "keyword c" ||
148 return ret("jsonld-keyword", "meta");
217 var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true, "this": true, "jsonld-keyword": true};
327 if (type == "keyword a") return cont(pushlex("form"), expression, statement, poplex);
328 if (type == "keyword b") return cont(pushlex("form"), statement, poplex);
367 if (type == "keyword
[all...]
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/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_org/chrome/browser/sync/test/integration/
H A Dsearch_engines_helper.h38 const base::string16& keyword,
42 const base::string16& keyword,
51 // original keyword |keyword| and changes its user-visible fields. Does the same
54 const base::string16& keyword,
H A Dsearch_engines_helper.cc43 " keyword: " + base::UTF16ToASCII(turl->keyword()) + " url: " +
51 (turl1->keyword() == turl2->keyword()) &&
98 << default_a->keyword() << " B's default: "
99 << default_b->keyword();
103 << " and keyword: " << default_a->keyword();
109 // Convenience helper for consistently generating the same keyword for a given
148 verifier_turl->keyword());
184 CreateTestTemplateURL(Profile* profile, int seed, const base::string16& keyword, const std::string& sync_guid) argument
192 CreateTestTemplateURL(Profile* profile, int seed, const base::string16& keyword, const std::string& url, const std::string& sync_guid) argument
218 EditSearchEngine(int profile_index, const base::string16& keyword, const base::string16& short_name, const base::string16& new_keyword, const std::string& url) argument
[all...]
/external/chromium_org/chrome/common/extensions/api/omnibox/
H A Domnibox_handler.cc20 const char kKeyword[] = "keyword";
28 return info ? info->keyword : base::EmptyString();
42 !dict->GetString(kKeyword, &info->keyword) ||
43 info->keyword.empty()) {
/external/chromium_org/third_party/icu/source/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
/external/icu/icu4c/source/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
/external/chromium_org/chrome/browser/ui/search_engines/
H A Dkeyword_editor_controller.cc29 const base::string16& keyword,
36 table_model_->Add(new_index, title, keyword, url);
43 const base::string16& keyword,
55 (template_url->keyword() == keyword) && (template_url->url() == url))
58 table_model_->ModifyTemplateURL(index, title, keyword, url);
28 AddTemplateURL(const base::string16& title, const base::string16& keyword, const std::string& url) argument
41 ModifyTemplateURL(TemplateURL* template_url, const base::string16& title, const base::string16& keyword, const std::string& url) argument
/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_org/components/omnibox/
H A Dkeyword_provider.cc26 // Helper functor for Start(), for sorting keyword matches by quality.
29 // A keyword is of higher quality when a greater fraction of it has been
33 // better rankings than the fraction of the keyword typed. We should
37 return t_url1->keyword().length() < t_url2->keyword().length();
41 // Helper for KeywordProvider::Start(), for ending keyword mode unless
101 // Return first token as keyword.
127 base::string16 keyword, remaining_input;
128 if (!ExtractKeywordFromInput(*input, &keyword, &remaining_input))
132 const TemplateURL* template_url = model->GetTemplateURLForKeyword(keyword);
191 CreateVerbatimMatch( const base::string16& text, const base::string16& keyword, const AutocompleteInput& input) argument
231 base::string16 keyword, remaining_input; local
325 ExtractKeywordFromInput(const AutocompleteInput& input, base::string16* keyword, base::string16* remaining_input) argument
376 const base::string16& keyword = template_url->keyword(); local
[all...]
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dselected_keyword_view.cc58 void SelectedKeywordView::SetKeyword(const base::string16& keyword) { argument
59 keyword_ = keyword;
60 if (keyword.empty())
70 model->GetKeywordShortName(keyword, &is_extension_keyword);

Completed in 1601 milliseconds

1234567891011>>