Searched refs:case_sensitive (Results 1 - 16 of 16) sorted by relevance

/external/chromium/chrome/browser/ui/find_bar/
H A Dfind_tab_helper.cc33 bool case_sensitive) {
60 (last_search_case_sensitive_ == case_sensitive) &&
67 last_search_case_sensitive_ = case_sensitive;
77 case_sensitive,
31 StartFinding(string16 search_string, bool forward_direction, bool case_sensitive) argument
H A Dfind_tab_helper.h27 bool case_sensitive);
H A Dfind_bar_host_browsertest.cc124 bool case_sensitive,
128 forward, case_sensitive, ordinal);
121 FindInPageWchar(TabContentsWrapper* tab, const wchar_t* search_str, bool forward, bool case_sensitive, int* ordinal) argument
/external/chromium/base/
H A Dstring_util.cc564 bool case_sensitive) {
565 if (case_sensitive)
572 bool StartsWithT(const STR& str, const STR& search, bool case_sensitive) { argument
573 if (case_sensitive) {
584 bool case_sensitive) {
585 return StartsWithT(str, search, case_sensitive);
590 bool case_sensitive) {
591 return StartsWithT(str, search, case_sensitive);
596 bool EndsWithT(const STR& str, const STR& search, bool case_sensitive) { argument
601 if (case_sensitive) {
562 StartsWithASCII(const std::string& str, const std::string& search, bool case_sensitive) argument
583 StartsWith(const std::wstring& str, const std::wstring& search, bool case_sensitive) argument
589 StartsWith(const string16& str, const string16& search, bool case_sensitive) argument
610 EndsWith(const std::string& str, const std::string& search, bool case_sensitive) argument
615 EndsWith(const std::wstring& str, const std::wstring& search, bool case_sensitive) argument
621 EndsWith(const string16& str, const string16& search, bool case_sensitive) argument
[all...]
H A Dstring_util.h358 bool case_sensitive);
361 bool case_sensitive);
364 bool case_sensitive);
369 bool case_sensitive);
372 bool case_sensitive);
375 bool case_sensitive);
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_frame.h177 EAPI Eina_Bool ewk_frame_text_search(const Evas_Object *o, const char *string, Eina_Bool case_sensitive, Eina_Bool forward, Eina_Bool wrap);
179 EAPI unsigned int ewk_frame_text_matches_mark(Evas_Object *o, const char *string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit);
H A Dewk_view.h362 EAPI Eina_Bool ewk_view_text_search(const Evas_Object *o, const char *string, Eina_Bool case_sensitive, Eina_Bool forward, Eina_Bool wrap);
364 EAPI unsigned int ewk_view_text_matches_mark(Evas_Object *o, const char *string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit);
H A Dewk_frame.cpp746 * @param case_sensitive if search should be case sensitive or not.
752 Eina_Bool ewk_frame_text_search(const Evas_Object* o, const char* string, Eina_Bool case_sensitive, Eina_Bool forward, Eina_Bool wrap) argument
758 return sd->frame->editor()->findString(WTF::String::fromUTF8(string), forward, case_sensitive, wrap, true);
766 * @param case_sensitive if match should be case sensitive or not.
772 unsigned int ewk_frame_text_matches_mark(Evas_Object* o, const char* string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit) argument
779 return sd->frame->editor()->countMatchesForText(WTF::String::fromUTF8(string), case_sensitive, limit, true);
H A Dewk_view.cpp1411 * @param case_sensitive if search should be case sensitive or not.
1417 Eina_Bool ewk_view_text_search(const Evas_Object* o, const char* string, Eina_Bool case_sensitive, Eina_Bool forward, Eina_Bool wrap) argument
1425 if (case_sensitive)
1443 * @param case_sensitive if match should be case sensitive or not.
1449 unsigned int ewk_view_text_matches_mark(Evas_Object* o, const char* string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit) argument
1456 if (case_sensitive)
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebview.h235 gboolean case_sensitive,
242 gboolean case_sensitive,
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
H A Decho_client.py163 expected_value, case_sensitive=False):
169 sensitiveness in this comparison by case_sensitive parameter. This function
176 if ((case_sensitive and value != expected_value) or
177 (not case_sensitive and value.lower() != expected_value.lower())):
/external/regex-re2/re2/
H A Dre2.h516 // case_sensitive (true) match is case-sensitive (regexp can override
614 bool case_sensitive() const { return case_sensitive_; } function in class:re2::RE2::Options
H A Dre2.cc157 if (!case_sensitive())
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-matchers.h895 bool case_sensitive)
896 : string_(str), expect_eq_(expect_eq), case_sensitive_(case_sensitive) {}
894 StrEqualityMatcher(const StringType& str, bool expect_eq, bool case_sensitive) argument
/external/libvpx/libvpx/examples/includes/geshi/
H A Dgeshi.php1487 function add_keyword_group($key, $styles, $case_sensitive = true, $words = array()) {
1497 $this->language_data['CASE_SENSITIVE'][$key] = $case_sensitive;
3293 $case_sensitive = $this->language_data['CASE_SENSITIVE'][$k]; variable
3294 $modifiers = $case_sensitive ? '' : 'i';
/external/ceres-solver/internal/ceres/gmock/
H A Dgmock.h5507 bool case_sensitive)
5508 : string_(str), expect_eq_(expect_eq), case_sensitive_(case_sensitive) {}
5506 StrEqualityMatcher(const StringType& str, bool expect_eq, bool case_sensitive) argument

Completed in 1412 milliseconds