/external/chromium/chrome/browser/autocomplete/ |
autocomplete_edit_view_mac.h | 49 const string16& keyword); 127 // keyword search is being terminated. Returns true if the 194 // edit, such as invoking the keyword editor.
|
autocomplete_unittest.cc | 182 keyword_t_url->SetURL("http://keyword/{searchTerms}", 0, 0); 190 // Create both a keyword and search provider, and add them in that order. 216 // Send the controller input which exactly matches the keyword provider we 218 // match should thus be a keyword match iff |allow_exact_keyword_match| is 224 // ResetControllerWithKeywordAndSearchProviders() adds the keyword provider 225 // first, then the search provider. So if the default match is a keyword
|
/external/chromium/chrome/browser/importer/ |
profile_writer.h | 101 // TemplateURL at |default_keyword_index| the default keyword (does not set 102 // a default keyword if it is -1). The local store becomes the owner of the 104 // keyword or same host name in the URL) with existing TemplateURLs in the
|
importer_unittest.cc | 254 // TODO(jcampan): bug 1169230: we should test keyword importing for IE. 516 const wchar_t* keyword; member in struct:KeywordList 570 EXPECT_EQ(kFirefox2Keywords[kDefaultFirefox2KeywordIndex].keyword, 624 string16 keyword = template_urls[i]->keyword(); local 626 if (template_urls[i]->keyword() == 627 WideToUTF16Hack(kFirefox2Keywords[j].keyword)) { 640 default_keyword_ = UTF16ToWideHack(default_turl->keyword()); 774 EXPECT_EQ(kFirefox3Keywords[kDefaultFirefox3KeywordIndex].keyword, 834 string16 keyword = template_urls[i]->keyword() local [all...] |
/external/chromium/chrome/browser/ui/cocoa/location_bar/ |
location_bar_view_mac.h | 144 NSImage* GetKeywordImage(const string16& keyword); 194 // A decoration that shows the keyword-search bubble on the left. 210 // Keyword hint decoration displayed on the right-hand side.
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
p4.cpp | 170 // expected-error {{'typename' keyword used on a non-type}} 171 using typename A<T>::union_member; // expected-error {{'typename' keyword used on a non-type}} 172 using typename A<T>::enumerator; // expected-error {{'typename' keyword used on a non-type}}
|
/external/icu4c/common/ |
uloc.c | 454 const char *keyword; /* keyword, or NULL if none */ member in struct:CanonicalizationMap 455 const char *value; /* keyword value, or NULL if kw==NULL */ 520 const char *keyword; /* keyword, or NULL if none */ member in struct:VariantMap 521 const char *value; /* keyword value, or NULL if kw==NULL */ 598 * @param status return status (keyword too long) 599 * @return length of the keyword name 607 /* keyword name too long for internal buffer */ 612 /* normalize the keyword name * 622 char keyword[ULOC_KEYWORD_BUFFER_LEN]; member in struct:__anon7345 [all...] |
locdispnames.cpp | 538 UEnumeration* kenum = NULL; /* keyword enumeration */ 609 /* adjust for call to get keyword */ 710 uloc_getDisplayKeyword(const char* keyword, 730 keyword, 731 keyword, 742 const char* keyword, 763 /* get the keyword value */ 765 keywordValueLen = uloc_getKeywordValue(locale, keyword, keywordValue, capacity, status); 768 * if the keyword is equal to currency .. then to get the display name 771 if(uprv_stricmp(keyword, _kCurrency)==0) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.1.1.js | 24 ECMA Section: 11.1.1 The this keyword 27 The this keyword evaluates to the this value of the execution context. 36 writeHeaderToLog( SECTION + " The this keyword");
|
/hardware/ti/wlan/wl1271/platforms/os/linux/src/ |
osRgstry_parser.c | 117 IN NDIS_HANDLE config_handle, IN PNDIS_STRING keyword, IN NDIS_PARAMETER_TYPE param_type ) 119 char *name = keyword->Buffer; 210 IN PNDIS_STRING Keyword,
|
/tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/db/wizards/model/ |
Table.java | 196 for (String keyword : keywords) 199 // Found. It is a keyword 200 if (keyword.toLowerCase().compareTo(name.toLowerCase()) == 0)
|
/external/clang/include/clang/Sema/ |
CodeCompleteConsumer.h | 45 /// \brief Priority for a language keyword (that isn't any of the other 204 /// \brief Code completion occurred after the "enum" keyword, to indicate 207 /// \brief Code completion occurred after the "union" keyword, to indicate 210 /// \brief Code completion occurred after the "struct" or "class" keyword, 334 /// match the code-completion string, typically a keyword or the name of a 655 RK_Keyword, ///< Refers to a keyword or symbol. 665 /// \brief When Kind == RK_Keyword, the string representing the keyword 667 const char *Keyword; 730 /// \brief Build a result that refers to a keyword or symbol. 731 CodeCompletionResult(const char *Keyword, unsigned Priority = CCP_Keyword [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
location_bar_view_gtk.cc | 104 // Use weak gray for showing search and keyword hint text. 221 // Tab to search (the keyword box on the left hand side). 238 // This creates a box around the keyword text with a border, background color, 495 const string16 keyword(location_entry_->model()->keyword()); 497 show_selected_keyword_ = !keyword.empty() && !is_keyword_hint; 498 show_keyword_hint_ = !keyword.empty() && is_keyword_hint; 501 SetKeywordLabel(keyword); 504 SetKeywordHintLabel(keyword); 556 // Update the keyword and search hint states [all...] |
location_bar_view_gtk.h | 340 // Set the keyword text for the Search BLAH: keyword box. 341 void SetKeywordLabel(const string16& keyword); 343 // Set the keyword text for the "Press tab to search BLAH" hint box. 344 void SetKeywordHintLabel(const string16& keyword); 451 // The last search keyword that was shown via the |tab_to_search_box_|.
|
/external/libvpx/examples/includes/geshi/docs/ |
CHANGES | 68 * Moved symbol-lookalike sequences from keyword groups to separate symbol group 70 * Fixed a lot of duplicate keyword warnings (BenBE) 92 - Fixed a problem with PCRE patterns for Keyword matching sometimes producing 111 * Added new Keyword group for APT sources.list highlighter (BenBE) 116 * Reworked Keyword groups for MySQL to allow for more configuration (BenBE) 122 * Fixed duplicate keyword warnings for Perl, Tcl and Typoscript (BenBE) 144 * Keyword Linking now uses considerably less strtolower calls (milian) 185 * Ignoring empty keyword groups when highlighting (milian) 379 - Fixed spelling mistake for keyword in Python (wd3) 380 - Added a method to enable/disable keyword linking (Ian McKellar [all...] |
/external/webkit/Source/WebCore/css/ |
CSSStyleSelector.h | 140 // Given a CSS keyword in the range (xx-small to -webkit-xxx-large), this function will return 142 static float fontSizeForKeyword(Document*, int keyword, bool shouldUseFixedDefaultSize); 149 // When the CSS keyword "larger" is used, this function will attempt to match within the keyword 153 // Like the previous function, but for the keyword "smaller".
|
/tools/motodev/src/plugins/videos/src/com/motorola/studio/android/videos/ui/views/ |
VideosListComposite.java | 130 * Highlight the given keyword in the video composites being
133 * @param keyword the keyword to be highlighted
135 public void highlightKeywords(String keyword)
142 videoComposite.highlightKeyword(keyword);
|
/external/libvpx/examples/includes/geshi/contrib/ |
langcheck.php | 450 report_error(TYPE_ERROR, "Language file contains no \$language_data['CASE_SENSITIVE'] specification for keyword group $key!"); 453 report_error(TYPE_ERROR, "Language file contains no \$language_data['URLS'] specification for keyword group $key!"); 456 report_error(TYPE_WARNING, "Language file contains an empty keyword list in \$language_data['KEYWORDS'] for group $key!"); 464 report_error(TYPE_NOTICE, "Language file contains an keyword ('$kw') at \$language_data['KEYWORDS'][$key][$id] which seems to be better suited for the symbols section!"); 471 report_error(TYPE_WARNING, "Language file contains per-group duplicate keyword '$kw' in \$language_data['KEYWORDS'][$key]!"); 488 //Check the precondition\post-cindition for the involved keyword groups 520 report_error(TYPE_WARNING, "Language file contains cross-group duplicate keyword '$kw' in \$language_data['KEYWORDS'][$key] and \$language_data['KEYWORDS'][$key2]!"); 526 report_error(TYPE_WARNING, "Language file contains an superfluous \$language_data['CASE_SENSITIVE'] specification for non-existing keyword group $key!"); 531 report_error(TYPE_WARNING, "Language file contains an superfluous \$language_data['URLS'] specification for non-existing keyword group $key!"); 536 report_error(TYPE_WARNING, "Language file contains an superfluous \$language_data['STYLES']['KEYWORDS'] specification for non-existing keyword group $key!") [all...] |
/external/v8/test/cctest/ |
test-parsing.cc | 46 const char* keyword; member in struct:KeywordToken 51 #define KEYWORD(t, s, d) { s, i::Token::t }, 52 TOKEN_LIST(IGNORE_TOKEN, KEYWORD) 53 #undef KEYWORD 60 for (int i = 0; (key_token = keywords[i]).keyword != NULL; i++) { 61 const i::byte* keyword = local 62 reinterpret_cast<const i::byte*>(key_token.keyword); 63 int length = i::StrLength(key_token.keyword); 66 i::Utf8ToUtf16CharacterStream stream(keyword, length); 75 // Removing characters will make keyword matching fail [all...] |
/external/jpeg/ |
rdjpgcom.c | 408 keymatch (char * arg, const char * keyword, int minchars) 409 /* Case-insensitive matching of (possibly abbreviated) keyword switches. */ 410 /* keyword is the constant keyword (must be lower case already), */ 417 if ((ck = *keyword++) == '\0') 418 return 0; /* arg longer than keyword, no good */
|
wrjpgcom.c | 384 keymatch (char * arg, const char * keyword, int minchars) 385 /* Case-insensitive matching of (possibly abbreviated) keyword switches. */ 386 /* keyword is the constant keyword (must be lower case already), */ 393 if ((ck = *keyword++) == '\0') 394 return 0; /* arg longer than keyword, no good */
|
/external/qemu/distrib/jpeg-6b/ |
rdjpgcom.c | 408 keymatch (char * arg, const char * keyword, int minchars) 409 /* Case-insensitive matching of (possibly abbreviated) keyword switches. */ 410 /* keyword is the constant keyword (must be lower case already), */ 417 if ((ck = *keyword++) == '\0') 418 return 0; /* arg longer than keyword, no good */
|
wrjpgcom.c | 384 keymatch (char * arg, const char * keyword, int minchars) 385 /* Case-insensitive matching of (possibly abbreviated) keyword switches. */ 386 /* keyword is the constant keyword (must be lower case already), */ 393 if ((ck = *keyword++) == '\0') 394 return 0; /* arg longer than keyword, no good */
|
/frameworks/base/docs/html/reference/renderscript/ |
rs__allocation_8rsh_source.html | 49 <a name="l00031"></a>00031 <span class="keyword">extern</span> <a class="code" href="structrs__allocation.html" title="Opaque handle to a Renderscript allocation.">rs_allocation</a> __attribute__((overloadable)) 69 <a name="l00089"></a>00089 <span class="keyword">extern</span> <span class="keywordtype">void</span> __attribute__((overloadable)) 89 <a name="l00133"></a>00133 <span class="keyword">extern</span> <span class="keyword">const</span> <span class="keywordtype">void</span> * __attribute__((overloadable)) 99 <a name="l00153"></a>00153 <span class="keyword">extern</span> <span class="keyword">const</span> <span class="keywordtype">void</span> __attribute__((overloadable))
|
rs__core_8rsh_source.html | 64 <a name="l00065"></a>00065 <span class="keyword">extern</span> <span class="keywordtype">bool</span> __attribute__((overloadable)) 84 <a name="l00106"></a><a class="code" href="structrs__script__call.html">00106</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structrs__script__call.html">rs_script_call</a> { 85 <a name="l00107"></a>00107 <span class="keyword">enum</span> <a class="code" href="rs__core_8rsh.html#ae1755c901e8acb42510ad10b4e104746">rs_for_each_strategy</a> strategy; 97 <a name="l00135"></a>00135 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="keywordtype">void</span> __attribute__((overloadable)) 106 <a name="l00165"></a>00165 <span class="keyword">extern</span> <span class="keywordtype">void</span> __attribute__((overloadable))
|