Searched refs:text_ (Results 1 - 25 of 130) sorted by path

123456

/external/chromium-trace/
H A Dscript.js141 base.exportTo("tracing",function(){function d(){}function b(a){this.text_=a.toLowerCase()}function a(a){this.categories_={};a=a||[];for(var b=0;b<a.length;b++)this.addCategory(a[b])}d.prototype={__proto__:Object.prototype,matchCounter:function(a){return!0},matchCpu:function(a){return!0},matchProcess:function(a){return!0},matchSlice:function(a){return!0},matchThread:function(a){return!0}};b.prototype={__proto__:d.prototype,matchCounter:function(a){return 0===this.text_.length||void 0===a.name?!1:-1!==
142 a.name.toLowerCase().indexOf(this.text_)},matchSlice:function(a){return 0===this.text_.length||void 0===a.title?!1:-1!==a.title.toLowerCase().indexOf(this.text_)}};a.prototype={__proto__:d.prototype,addCategory:function(a){this.categories_[a]=!0},matchCounter:function(a){return a.category?!this.categories_[a.category]:!0},matchSlice:function(a){return a.category?!this.categories_[a.category]:!0}};return{filterCounterArray:function(a,b){if(void 0===a)return b;for(var f=[],g=0;g<b.length;++g)a.matchCounter(b[g])&&
/external/chromium-trace/trace-viewer/src/tracing/
H A Dfilter.js70 this.text_ = text.toLowerCase();
76 if (this.text_.length === 0)
80 return counter.name.toLowerCase().indexOf(this.text_) !== -1;
84 if (this.text_.length === 0)
88 return slice.title.toLowerCase().indexOf(this.text_) !== -1;
/external/chromium_org/ash/accelerators/
H A Dexit_warning_handler.cc45 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::__anon1850::ExitWarningWidgetDelegateView
/external/chromium_org/ash/shelf/
H A Dshelf_tooltip_manager.cc214 ShowImmediately(anchor_, text_);
346 text_ = text;
356 view_->SetText(text_);
H A Dshelf_tooltip_manager.h106 base::string16 text_; member in class:ash::ShelfTooltipManager
/external/chromium_org/ash/system/user/
H A Duser_card_view.cc145 base::string16 text_; member in class:ash::tray::__anon2010::PublicAccountUserDetails
178 text_ = l10n_util::GetStringFUTF16(
200 gfx::ElideRectangleText(text_,
290 gfx::GetStringWidth(text_, font_list) + space_width + link_size.width(),
301 const bool too_narrow = gfx::ElideRectangleText(text_,
321 text_, font_list, min_width, INT_MAX, gfx::TRUNCATE_LONG_WORDS, &lines);
/external/chromium_org/chrome/browser/autocomplete/
H A Dshortcuts_provider_unittest.cc220 const base::string16 text_; member in class:ClassifyTest
226 : text_(text),
235 ShortcutsProvider::CreateWordMapForString(find_text), text_, matches_);
/external/chromium_org/chrome/browser/chromeos/ui/
H A Dscreen_capture_notification_ui_chromeos.cc14 : text_(text) {
26 stop_callback, text_);
H A Dscreen_capture_notification_ui_chromeos.h25 const base::string16 text_; member in class:chromeos::ScreenCaptureNotificationUIChromeOS
/external/chromium_org/chrome/browser/first_run/
H A Dfirst_run_browsertest.cc89 ASSERT_TRUE(text_.get());
92 EXPECT_TRUE(base::WriteFile(prefs_file_, text_->c_str(), text_->size()));
113 text_.reset(new std::string(text));
118 scoped_ptr<std::string> text_; member in class:__anon4055::FirstRunMasterPrefsBrowserTestBase
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dcontent_editable_extractor.js24 this.text_ = '';
180 this.text_ = text;
193 return this.text_;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
H A Dbraille_input_handler.js70 this.text_ = '';
314 var oldLength = this.text_.length;
317 this.text_, result);
318 this.text_ = result;
355 this.text_ = '';
/external/chromium_org/chrome/browser/resources/print_preview/settings/advanced_settings/
H A Dadvanced_settings_item.js73 this.tracker_.add(this.text_, 'input', this.onTextInput_.bind(this));
127 get text_() {
149 this.selectedValue_ = this.text_.value || null;
177 optionMatches = (this.text_.value || '').match(this.query_);
209 this.capability_.type == 'SELECT' ? this.select_ : this.text_;
276 this.text_.value = this.selectedValue;
/external/chromium_org/chrome/browser/speech/
H A Dtts_controller.h148 void set_text(const std::string& text) { text_ = text; }
149 const std::string& text() const { return text_; }
239 std::string text_; member in class:Utterance
/external/chromium_org/chrome/browser/spellchecker/
H A Dfeedback.cc15 // 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;
H A Dfeedback.h105 TextHashesMap text_; member in class:spellcheck::Feedback
H A Dspelling_service_client_unittest.cc44 text_(text) {
70 EXPECT_EQ(text_, text);
110 std::string text_; member in class:__anon4719::TestSpellingURLFetcher
/external/chromium_org/chrome/browser/ui/cocoa/
H A Dscreen_capture_notification_ui_cocoa.h44 const base::string16 text_; member in class:ScreenCaptureNotificationUICocoa
/external/chromium_org/chrome/browser/ui/omnibox/
H A Dalternate_nav_infobar_delegate.cc45 text_(text),
74 shortcuts_backend->AddOrUpdateShortcut(text_, match_);
H A Dalternate_nav_infobar_delegate.h48 const base::string16 text_; member in class:AlternateNavInfoBarDelegate
H A Domnibox_edit_unittest.cc36 virtual base::string16 GetText() const OVERRIDE { return text_; }
40 text_ = display_text;
46 text_ = text;
61 text_ = display_text;
65 const bool text_changed = text_ != display_text;
66 text_ = display_text;
96 base::string16 text_; member in class:__anon5112::TestingOmniboxView
H A Domnibox_navigation_observer.cc58 : text_(text),
81 shortcuts_backend_->AddOrUpdateShortcut(text_, match_);
146 web_contents(), text_, alternate_nav_match_, match_.destination_url); local
H A Domnibox_navigation_observer.h95 const base::string16 text_; member in class:OmniboxNavigationObserver
/external/chromium_org/chrome/browser/ui/toolbar/
H A Dtest_toolbar_model.cc20 return text_;
24 return text_;
H A Dtest_toolbar_model.h31 void set_text(const base::string16& text) { text_ = text; }
54 base::string16 text_; member in class:TestToolbarModel

Completed in 9673 milliseconds

123456