HomeSort by relevance Sort by last modified time
    Searched refs:text_ (Results 26 - 50 of 127) sorted by null

12 3 4 5 6

  /external/chromium_org/ui/app_list/
search_box_model.cc 64 if (text_ == text)
69 if (text_.empty() && !text.empty()) {
72 text_ = text;
search_box_model.h 69 const base::string16& text() const { return text_; }
79 base::string16 text_; member in class:app_list::SearchBoxModel
  /ndk/sources/android/support/tests/minitest/
minitest.cc 150 if (!text_.empty())
151 printf("%s\n", text_.c_str());
156 if (!text_.empty())
157 printf("%s\n", text_.c_str());
161 text_.Clear();
162 return text_;
  /external/chromium_org/chrome/common/
icon_with_badge_image_source.h 42 std::string text_; member in class:IconWithBadgeImageSource
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
normalizedunicodetext.h 55 // form, text_ is not used and normalized_text_ just points to the source
56 // text. When the source text requres normalization, text_ contains normalized
61 scoped_array<WCHAR> text_; member in class:NormalizedUnicodeText
  /external/chromium_org/ppapi/cpp/trusted/
browser_font_trusted.cc 92 pp_text_run_.text = text_.pp_var();
100 : text_(text) {
101 pp_text_run_.text = text_.pp_var();
107 : text_(other.text_) {
108 pp_text_run_.text = text_.pp_var();
119 text_ = other.text_;
120 pp_text_run_.text = text_.pp_var();
  /external/chromium_org/chrome/browser/ui/toolbar/
test_toolbar_model.h 31 void set_text(const base::string16& text) { text_ = text; }
54 base::string16 text_; member in class:TestToolbarModel
  /external/chromium_org/chrome/browser/web_resource/
notification_promo_mobile_ntp.h 33 const std::string& text() const { return text_; }
60 std::string text_; member in class:NotificationPromoMobileNtp
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_provider_test.cc 76 text_.assign(text);
89 text_.clear();
spellcheck_provider_hunspell_unittest.cc 42 EXPECT_TRUE(provider_.text_.empty());
49 EXPECT_TRUE(provider_.text_.empty());
57 EXPECT_EQ(ASCIIToUTF16("First "), provider_.text_);
65 EXPECT_EQ(ASCIIToUTF16("First Second\n"), provider_.text_);
73 EXPECT_EQ(ASCIIToUTF16("First Second\nThird "), provider_.text_);
81 EXPECT_TRUE(provider_.text_.empty());
90 EXPECT_EQ(ASCIIToUTF16("First Second\nThird Fourth."), provider_.text_);
spellcheck_provider_test.h 50 base::string16 text_; member in class:TestingSpellCheckProvider
  /external/chromium_org/ash/accelerators/
exit_warning_handler.cc 45 text_ = l10n_util::GetStringUTF16(IDS_ASH_SIGN_OUT_WARNING_POPUP_TEXT);
49 text_ = l10n_util::GetStringUTF16(IDS_ASH_EXIT_WARNING_POPUP_TEXT);
56 text_width_ = gfx::GetStringWidth(text_, font_list);
60 label->SetText(text_);
89 base::string16 text_; member in class:ash::__anon6488::ExitWarningWidgetDelegateView
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_edit_unittest.cc 35 virtual base::string16 GetText() const OVERRIDE { return text_; }
39 text_ = display_text;
45 text_ = text;
60 text_ = display_text;
64 const bool text_changed = text_ != display_text;
65 text_ = display_text;
95 base::string16 text_; member in class:__anon9669::TestingOmniboxView
omnibox_navigation_observer.cc 58 : text_(text),
81 shortcuts_backend_->AddOrUpdateShortcut(text_, match_);
146 web_contents(), text_, alternate_nav_match_, match_.destination_url); local
alternate_nav_infobar_delegate.h 46 const base::string16 text_; member in class:AlternateNavInfoBarDelegate
alternate_nav_infobar_delegate.cc 45 text_(text),
74 shortcuts_backend->AddOrUpdateShortcut(text_, match_);
  /external/chromium_org/third_party/re2/re2/
bitstate.cc 50 StringPiece text_; // text being searched member in class:re2::BitState
97 uint n = id * (text_.size() + 1) + (p - text_.begin());
144 const char* end = text_.end();
169 // << (p - text_.begin()) << " " << arg;
256 if (endmatch_ && p != text_.end())
281 if (p == text_.end())
297 text_ = text;
  /external/regex-re2/re2/
bitstate.cc 50 StringPiece text_; // text being searched member in class:re2::BitState
97 uint n = id * (text_.size() + 1) + (p - text_.begin());
144 const char* end = text_.end();
169 // << (p - text_.begin()) << " " << arg;
256 if (endmatch_ && p != text_.end())
281 if (p == text_.end())
297 text_ = text;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_bootstrap_unittest.cc 72 string text_; member in class:google::protobuf::compiler::cpp::__anon18665::MockErrorCollector
77 strings::SubstituteAndAppend(&text_, "$0:$1:$2: $3\n",
128 EXPECT_EQ("", error_collector.text_);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_bootstrap_unittest.cc 72 string text_; member in class:google::protobuf::compiler::cpp::__anon32646::MockErrorCollector
77 strings::SubstituteAndAppend(&text_, "$0:$1:$2: $3\n",
128 EXPECT_EQ("", error_collector.text_);
  /external/chromium_org/chrome/browser/spellchecker/
feedback.h 105 TextHashesMap text_; member in class:spellcheck::Feedback
feedback.cc 15 // a |text_| map of misspelled strings to a set of hashes.
105 text_[misspelling.GetMisspelledString()].erase(misspelling.hash);
122 text_[existing_misspelling.GetMisspelledString()].erase(misspelling.hash);
134 text_[misspelling.GetMisspelledString()].insert(misspelling.hash);
175 text_.clear();
181 const TextHashesMap::const_iterator text_it = text_.find(misspelled_text);
182 return text_it == text_.end() ? empty_hash_collection_ : text_it->second;
  /external/chromium_org/chrome/browser/ui/cocoa/
screen_capture_notification_ui_cocoa.h 44 const base::string16 text_; member in class:ScreenCaptureNotificationUICocoa
  /external/chromium_org/chrome/browser/ui/website_settings/
mock_permission_bubble_request.h 46 base::string16 text_; member in class:MockPermissionBubbleRequest
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_input.h 119 const base::string16& text() const { return text_; }
121 // Returns 0-based cursor position within |text_| or base::string16::npos if
126 // besides |text_|, |cursor_position_| and |parts_|. Only callers who know
181 base::string16 text_; member in class:AutocompleteInput

Completed in 1186 milliseconds

12 3 4 5 6