HomeSort by relevance Sort by last modified time
    Searched refs:text_ (Results 51 - 75 of 129) sorted by null

1 23 4 5 6

  /external/chromium_org/chrome/browser/spellchecker/
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/third_party/libjingle/source/talk/xmllite/
xmlelement.h 82 text_(text) {
86 text_(t.text_) {
90 text_(cstr, len) {
94 const std::string& Text() const { return text_; }
105 std::string text_; member in class:buzz::XmlText
  /external/chromium_org/third_party/re2/re2/testing/
backtrack.cc 64 StringPiece text_; // text being searched member in class:re2::Backtracker
97 text_ = text;
152 CHECK(p <= text_.end());
153 int n = id*(text_.size()+1) + (p - text_.begin());
162 if (p < text_.end())
  /external/chromium_org/third_party/webrtc/libjingle/xmllite/
xmlelement.h 65 text_(text) {
69 text_(t.text_) {
73 text_(cstr, len) {
77 const std::string& Text() const { return text_; }
88 std::string text_; member in class:buzz::XmlText
  /external/chromium_org/ui/views/examples/
text_example.cc 66 : text_(base::ASCIIToUTF16(kShortText)),
77 canvas->DrawFadedString(text_, font_list_, color, bounds, flags_);
79 canvas->DrawStringRectWithHalo(text_, font_list_, color, SK_ColorYELLOW,
82 canvas->DrawStringRectWithFlags(text_, font_list_, color, bounds, flags_);
88 void set_text(const base::string16& text) { text_ = text; }
100 base::string16 text_; member in class:views::examples::TextExample::TextExampleView
  /external/regex-re2/re2/testing/
backtrack.cc 64 StringPiece text_; // text being searched member in class:re2::Backtracker
97 text_ = text;
152 CHECK(p <= text_.end());
153 int n = id*(text_.size()+1) + (p - text_.begin());
162 if (p < text_.end())
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
importer_unittest.cc 63 string text_; member in class:google::protobuf::compiler::__anon19417::MockErrorCollector
68 strings::SubstituteAndAppend(&text_, "$0:$1:$2: $3\n",
111 string error() const { return error_collector_.text_; }
125 EXPECT_EQ("", error_collector_.text_);
154 EXPECT_EQ("", error_collector_.text_);
177 error_collector_.text_);
190 error_collector_.text_);
210 error_collector_.text_);
227 ASSERT_TRUE(file != NULL) << error_collector_.text_;
228 EXPECT_EQ("", error_collector_.text_);
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
importer_unittest.cc 63 string text_; member in class:google::protobuf::compiler::__anon33541::MockErrorCollector
68 strings::SubstituteAndAppend(&text_, "$0:$1:$2: $3\n",
111 string error() const { return error_collector_.text_; }
125 EXPECT_EQ("", error_collector_.text_);
154 EXPECT_EQ("", error_collector_.text_);
177 error_collector_.text_);
190 error_collector_.text_);
210 error_collector_.text_);
227 ASSERT_TRUE(file != NULL) << error_collector_.text_;
228 EXPECT_EQ("", error_collector_.text_);
    [all...]
parser_unittest.cc 63 string text_; member in class:google::protobuf::compiler::__anon33565::MockErrorCollector
67 strings::SubstituteAndAppend(&text_, "$0:$1: $2\n",
119 ASSERT_EQ("", error_collector_.text_);
144 EXPECT_EQ(expected_errors, error_collector_.text_);
159 ASSERT_EQ("", error_collector_.text_);
165 EXPECT_EQ(expected_errors, error_collector_.text_);
186 EXPECT_EQ("", error_collector_.text_);
196 EXPECT_EQ("", error_collector_.text_);
206 EXPECT_EQ("1:9: Expected syntax identifier.\n", error_collector_.text_);
    [all...]
  /external/chromium_org/ui/gfx/
text_elider.cc 111 : text_(text),
123 text_.substr(FindValidBoundaryBefore(text_.length() - length));
126 return text_.substr(0, FindValidBoundaryBefore(length)) + ellipsis_text;
131 const size_t suffix_start_guess = text_.length() - half_length;
135 return text_.substr(0, prefix_length) + ellipsis_text +
136 text_.substr(suffix_start, suffix_length);
140 DCHECK_LE(index, text_.length());
141 if (index != text_.length())
142 U16_SET_CP_START(text_.data(), 0, index)
    [all...]
  /external/chromium_org/components/omnibox/
autocomplete_input.cc 67 if ((base::TrimWhitespace(text, base::TRIM_LEADING, &text_) &
69 AdjustCursorPositionIfNecessary(text.length() - text_.length(),
73 type_ = Parse(text_, desired_tld, scheme_classifier, &parts_, &scheme_,
87 size_t chars_removed = RemoveForcedQueryStringIfNecessary(type_, &text_);
92 if ((base::TrimWhitespace(text_, base::TRIM_LEADING, &trimmed_text) &
94 AdjustCursorPositionIfNecessary(text_.length() - trimmed_text.length(),
96 text_ = trimmed_text;
504 text_ = text;
510 text_.clear();
autocomplete_input.h 133 const base::string16& text() const { return text_; }
135 // Returns 0-based cursor position within |text_| or base::string16::npos if
140 // besides |text_|, |cursor_position_| and |parts_|. Only callers who know
195 base::string16 text_; member in class:AutocompleteInput
  /external/chromium_org/chrome/browser/first_run/
first_run_browsertest.cc 89 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:__anon8680::FirstRunMasterPrefsBrowserTestBase
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_worditerator.cc 306 : text_(NULL),
358 text_ = text;
365 DCHECK(!!text_);
371 if (!text_) {
410 icu::UnicodeString input(FALSE, &text_[input_start], input_length);
spellcheck_worditerator.h 104 // iterator.SetText(text.c_str(), text_.length());
163 const base::char16* text_; member in class:SpellcheckWordIterator
  /external/chromium_org/mojo/public/cpp/bindings/tests/
request_response_unittest.cc 74 explicit MessagePipeWriter(const char* text) : text_(text) {
77 WriteTextMessage(handle.get(), text_);
80 std::string text_; member in class:mojo::test::__anon13404::MessagePipeWriter
  /external/jdiff/src/jdiff/
CommentsHandler.java 141 if (currComment.text_ == null)
142 currComment.text_ = currentText;
144 currComment.text_ += currentText;
  /external/chromium_org/ui/views/controls/
styled_label.cc 101 base::TrimWhitespace(text, base::TRIM_TRAILING, &text_);
107 text_ = text;
122 DCHECK(gfx::Range(0, text_.size()).Contains(range));
199 if (width <= 0 || text_.empty())
210 base::string16 remaining_string = text_;
227 const size_t position = text_.size() - remaining_string.size();
  /external/chromium_org/content/child/
browser_font_resource_trusted.cc 67 text_ = base::UTF8ToUTF16(text_string->value());
72 override_run_ = WebTextRun(text_, PP_ToBool(run.rtl), true);
76 ubidi_setPara(bidi_, text_.data(), text_.size(), run.rtl, NULL, &uerror);
87 const base::string16& text() const { return text_; }
96 return WebTextRun(base::string16(&text_[*run_start], *run_len),
103 *run_len = static_cast<int32_t>(text_.size());
112 base::string16 text_;
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
error_dialog.js 28 this.frame_.insertBefore(img, this.text_);
  /external/chromium_org/ash/shelf/
shelf_tooltip_manager.h 106 base::string16 text_; member in class:ash::ShelfTooltipManager
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_navigation_observer.h 95 const base::string16 text_; member in class:OmniboxNavigationObserver
  /external/chromium_org/chrome/browser/web_resource/
notification_promo_mobile_ntp.cc 47 !payload_->GetString("promo_message_short", &text_) ||
  /external/chromium_org/pdf/
progress_control.h 65 std::string text_; member in class:chrome_pdf::ProgressControl
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
phonenumbermatcher.cc 365 text_(text),
379 text_(text),
427 EncodingUtils::BackUpOneUTF8Character(text_.c_str(),
428 text_.c_str() + offset);
438 if (lastCharIndex < text_.length()) {
442 text_.c_str() + lastCharIndex - 1);
591 text_.substr(offset + candidate.size())));
639 reg_exps_->regexp_factory_for_pattern_->CreateInput(text_.substr(index)));
643 int start = text_.length() - text->ToString().length() - candidate.length();
    [all...]

Completed in 1697 milliseconds

1 23 4 5 6