Searched refs:text_ (Results 1 - 25 of 130) sorted by last modified time

123456

/external/regex-re2/re2/
H A Dbitstate.cc50 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/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/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_bootstrap_unittest.cc72 string text_; member in class:google::protobuf::compiler::cpp::__anon28928::MockErrorCollector
77 strings::SubstituteAndAppend(&text_, "$0:$1:$2: $3\n",
128 EXPECT_EQ("", error_collector.text_);
H A Dcpp_unittest.cc83 string text_; member in class:google::protobuf::compiler::cpp::cpp_unittest::MockErrorCollector
88 strings::SubstituteAndAppend(&text_, "$0:$1:$2: $3\n",
111 EXPECT_EQ("", error_collector.text_);
/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/protobuf/src/google/protobuf/
H A Ddescriptor_unittest.cc2228 string text_; member in class:google::protobuf::descriptor_unittest::MockErrorCollector
2249 &text_, "$0: $1: $2: $3\n",
2275 EXPECT_EQ(expected_errors, error_collector.text_);
3829 error_collector.text_);
3909 EXPECT_EQ("", error_collector.text_);
3918 error_collector.text_.clear();
3920 EXPECT_EQ("", error_collector.text_);
H A Dtext_format_unittest.cc681 error_collector.text_);
691 string text_; member in class:google::protobuf::text_format_unittest::TextFormatParserTest::MockErrorCollector
695 strings::SubstituteAndAppend(&text_, "$0:$1: $2\n",
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer_unittest.cc160 string text_; member in class:google::protobuf::io::__anon28990::TestErrorCollector
164 strings::SubstituteAndAppend(&text_, "$0:$1: $2\n",
282 EXPECT_TRUE(error_collector.text_.empty());
312 EXPECT_TRUE(error_collector.text_.empty());
453 EXPECT_TRUE(error_collector.text_.empty());
487 EXPECT_TRUE(error_collector.text_.empty());
714 EXPECT_EQ(error_collector.text_, kErrorCases_case.errors);
/external/protobuf/src/google/protobuf/stubs/
H A Dsubstitute.h90 : text_(value), size_(strlen(text_)) {}
92 : text_(value.data()), size_(value.size()) {}
96 : text_(NULL), size_(-1) {}
105 : text_(scratch_), size_(1) { scratch_[0] = value; }
107 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
109 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
111 : text_(FastInt32ToBuffe
133 const char* text_; member in class:google::protobuf::strings::internal::SubstituteArg
[all...]
/external/jdiff/src/jdiff/
H A DComments.java211 return singleComment.text_;
410 outputFile.println(" " + currComment.text_);
429 System.out.println("text = \"" + currComment.text_ + "\"");
H A DCommentsHandler.java141 if (currComment.text_ == null)
142 currComment.text_ = currentText;
144 currComment.text_ += currentText;
H A DDiff.java414 diffFile.println(diffOutput.text_);
H A DDiffOutput.java27 public String text_ = null; field in class:DiffOutput
36 text_ = text;
H A DSingleComment.java18 public String text_ = null; field in class:SingleComment
27 text_ = text;
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/chromium_org/v8/src/
H A Ddebug.cc3281 CommandMessage::CommandMessage() : text_(Vector<uint16_t>::empty()),
3288 : text_(text),
3294 text_.Dispose();
H A Ddebug.h285 Vector<uint16_t> text() const { return text_; }
291 Vector<uint16_t> text_; member in class:v8::internal::CommandMessage
H A Dparser.cc43 text_.Add(atom, zone());
51 int num_text = text_.length();
55 terms_.Add(text_.last(), zone());
59 text_.Get(i)->AppendToText(text, zone());
62 text_.Clear();
88 text_.Add(term, zone());
153 text_.Add(new(zone()) RegExpAtom(prefix), zone());
159 } else if (text_.length() > 0) {
161 atom = text_.RemoveLast();
H A Dparser.h204 BufferedZoneList<RegExpTree, 2> text_; member in class:v8::internal::RegExpBuilder
/external/chromium_org/tools/grit/grit/gather/
H A Dadmin_template.py51 self.text_ = self._LoadInputFile().strip()
52 m = self._STRINGS_SECTION.match(self.text_)
H A Digoogle_strings.py115 self.text_ = self._LoadInputFile().strip()
117 stream = StringIO.StringIO(self.text_)
H A Dmuppet_strings.py124 self.text_ = text.strip()
127 stream = StringIO.StringIO(self.text_)
H A Dpolicy_json.py234 self.text_ = self._LoadInputFile()
236 print self.text_
238 self.data = eval(self.text_)
H A Drc.py95 self.text_ = out.strip()
150 self._RegExpParse(self.dialog_re_, self.text_)
207 self._RegExpParse(self.menu_re_, self.text_)
267 self._RegExpParse(self.version_re_, self.text_)
311 self.text_ = out
343 self._RegExpParse(self.accelerators_re_, self.text_)

Completed in 3170 milliseconds

123456