Searched refs:text_ (Results 51 - 75 of 130) sorted by relevance

123456

/external/chromium_org/chrome/browser/ui/omnibox/
H A Dalternate_nav_infobar_delegate.cc45 text_(text),
74 shortcuts_backend->AddOrUpdateShortcut(text_, match_);
/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
/external/chromium_org/third_party/libjingle/source/talk/xmllite/
H A Dxmlelement.h82 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/
H A Dbacktrack.cc64 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/
H A Dxmlelement.h65 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/
H A Dtext_example.cc66 : 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/
H A Dbacktrack.cc64 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/
H A Dimporter_unittest.cc63 string text_; member in class:google::protobuf::compiler::__anon14799::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/
H A Dimporter_unittest.cc63 string text_; member in class:google::protobuf::compiler::__anon28937::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...]
H A Dparser_unittest.cc63 string text_; member in class:google::protobuf::compiler::__anon28961::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_);
1221 ASSERT_EQ("", error_collector_.text_);
[all...]
/external/chromium_org/ui/gfx/
H A Dtext_elider.cc111 : 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_
[all...]
/external/chromium_org/components/omnibox/
H A Dautocomplete_input.cc67 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();
H A Dautocomplete_input.h133 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/
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/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/renderer/spellchecker/
H A Dspellcheck_worditerator.cc306 : text_(NULL),
358 text_ = text;
365 DCHECK(!!text_);
371 if (!text_) {
410 icu::UnicodeString input(FALSE, &text_[input_start], input_length);
/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/mojo/public/cpp/bindings/tests/
H A Drequest_response_unittest.cc74 explicit MessagePipeWriter(const char* text) : text_(text) {
77 WriteTextMessage(handle.get(), text_);
80 std::string text_; member in class:mojo::test::__anon8779::MessagePipeWriter
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Ddialogs.js67 this.text_ = doc.createElement('div');
68 this.text_.className = 'cr-dialog-text';
69 this.frame_.appendChild(this.text_);
145 this.text_.innerHTML = message;
171 this.text_.textContent = message;
285 this.frame_.insertBefore(this.input_, this.text_.nextSibling);
/external/jdiff/src/jdiff/
H A DCommentsHandler.java141 if (currComment.text_ == null)
142 currComment.text_ = currentText;
144 currComment.text_ += currentText;
/external/chromium_org/ui/views/controls/
H A Dstyled_label.cc101 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/
H A Dbrowser_font_resource_trusted.cc67 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/tools/grit/grit/gather/
H A Digoogle_strings.py115 self.text_ = self._LoadInputFile().strip()
117 stream = StringIO.StringIO(self.text_)
H A Dtr_html.py225 return self.text_[self.current:]
231 chunk_text = self.text_[self.chunk_start : self.last_nontranslateable + 1]
243 self.text_[self.chunk_start : self.last_translateable + 1])
290 '''Parses self.text_ into an intermediate format stored in self.chunks_
306 self.text_ = text
341 while self.current < len(self.text_):
342 _DebugPrint('REST: %s' % self.text_[self.current:self.current+60])
401 self.AddChunk(False, self.text_[
426 self.AddChunk(True, self.text_[self.chunk_start : ])
428 self.AddChunk(False, self.text_[sel
[all...]

Completed in 5428 milliseconds

123456