Home
last modified time | relevance | path

Searched refs:text_ (Results 1 – 25 of 27) sorted by relevance

12

/external/protobuf/src/google/protobuf/stubs/
Dsubstitute.h90 : text_(value), size_(strlen(text_)) {} in SubstituteArg()
92 : text_(value.data()), size_(value.size()) {} in SubstituteArg()
96 : text_(NULL), size_(-1) {} in SubstituteArg()
105 : text_(scratch_), size_(1) { scratch_[0] = value; } in SubstituteArg()
107 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
109 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
111 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
113 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
115 : text_(FastLongToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
117 : text_(FastULongToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
[all …]
/external/protobuf/src/google/protobuf/compiler/
Dimporter_unittest.cc64 string text_; member in google::protobuf::compiler::__anon5cd70b830111::MockErrorCollector
69 strings::SubstituteAndAppend(&text_, "$0:$1:$2: $3\n", in AddError()
116 string error() const { return error_collector_.text_; } in error()
130 EXPECT_EQ("", error_collector_.text_); in TEST_F()
159 EXPECT_EQ("", error_collector_.text_); in TEST_F()
182 error_collector_.text_); in TEST_F()
195 error_collector_.text_); in TEST_F()
215 error_collector_.text_); in TEST_F()
232 ASSERT_TRUE(file != NULL) << error_collector_.text_; in TEST_F()
233 EXPECT_EQ("", error_collector_.text_); in TEST_F()
Dparser_unittest.cc67 string text_; member in google::protobuf::compiler::__anonaab372be0111::MockErrorCollector
71 strings::SubstituteAndAppend(&text_, "$0:$1: $2\n", in AddError()
123 ASSERT_EQ("", error_collector_.text_); in ExpectParsesTo()
151 EXPECT_EQ(expected_errors, error_collector_.text_); in ExpectHasEarlyExitErrors()
166 ASSERT_EQ("", error_collector_.text_); in ExpectHasValidationErrors()
172 EXPECT_EQ(expected_errors, error_collector_.text_); in ExpectHasValidationErrors()
193 EXPECT_EQ("", error_collector_.text_); in TEST_F()
203 EXPECT_EQ("", error_collector_.text_); in TEST_F()
213 EXPECT_EQ("1:9: Expected syntax identifier.\n", error_collector_.text_); in TEST_F()
1465 ASSERT_EQ("", error_collector_.text_) in TEST_F()
[all …]
/external/regex-re2/re2/testing/
Dbacktrack.cc64 StringPiece text_; // text being searched member in re2::Backtracker
97 text_ = text; in Search()
152 CHECK(p <= text_.end()); in Visit()
153 int n = id*(text_.size()+1) + (p - text_.begin()); in Visit()
162 if (p < text_.end()) in Visit()
/external/regex-re2/re2/
Dbitstate.cc50 StringPiece text_; // text being searched member in re2::BitState
97 uint n = id * (text_.size() + 1) + (p - text_.begin()); in ShouldVisit()
144 const char* end = text_.end(); in TrySearch()
256 if (endmatch_ && p != text_.end()) in TrySearch()
281 if (p == text_.end()) in TrySearch()
297 text_ = text; in Search()
/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_bootstrap_unittest.cc72 string text_; member in google::protobuf::compiler::cpp::__anonc0e7cb830111::MockErrorCollector
77 strings::SubstituteAndAppend(&text_, "$0:$1:$2: $3\n", in AddError()
128 EXPECT_EQ("", error_collector.text_); in TEST()
Dcpp_unittest.cc89 string text_; member in google::protobuf::compiler::cpp::cpp_unittest::MockErrorCollector
94 strings::SubstituteAndAppend(&text_, "$0:$1:$2: $3\n", in AddError()
117 EXPECT_EQ("", error_collector.text_); in TEST()
/external/jdiff/src/jdiff/
DSingleComment.java18 public String text_ = null; field in SingleComment
27 text_ = text; in SingleComment()
DDiffOutput.java27 public String text_ = null; field in DiffOutput
36 text_ = text; in DiffOutput()
DCommentsHandler.java141 if (currComment.text_ == null) in addTextToComments()
142 currComment.text_ = currentText; in addTextToComments()
144 currComment.text_ += currentText; in addTextToComments()
DComments.java209 return singleComment.text_; in getComment()
408 outputFile.println(" " + currComment.text_); in emitComments()
427 System.out.println("text = \"" + currComment.text_ + "\""); in dump()
DDiff.java414 diffFile.println(diffOutput.text_); in emitDocDiffs()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DStringSearch.java323 textIter_ = new CollationElementIterator(pattern_.text_, collator); in setCollator()
324 utilIter_ = new CollationElementIterator(pattern_.text_, collator); in setCollator()
336 return pattern_.text_; in getPattern()
353 pattern_.text_ = pattern; in setPattern()
704 int patternlength = pattern_.text_.length(); in initializePatternCETable()
708 coleiter = new CollationElementIterator(pattern_.text_, collator_); in initializePatternCETable()
711 coleiter.setText(pattern_.text_); in initializePatternCETable()
747 int patternlength = pattern_.text_.length(); in initializePatternPCETable()
751 coleiter = new CollationElementIterator(pattern_.text_, collator_); in initializePatternPCETable()
754 coleiter.setText(pattern_.text_); in initializePatternPCETable()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCharsDictionaryMatcher.java21 …public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit,… in matches() argument
22 UCharacterIterator text = UCharacterIterator.getInstance(text_); in matches()
DBytesDictionaryMatcher.java42 …public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit,… in matches() argument
43 UCharacterIterator text = UCharacterIterator.getInstance(text_); in matches()
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
Dutil.py6 text_,
36 return text_(s)
Dcookies.py22 text_,
95 name = text_(name, 'utf-8')
110 value = text_(value, 'utf-8')
478 return json.loads(text_(bstruct, encoding='utf-8'))
Dexc.py173 text_,
195 value = text_(value, 'utf-8')
Dcompat.py24 def text_(s, encoding='latin-1', errors='strict'): function
/external/protobuf/src/google/protobuf/io/
Dtokenizer_unittest.cc161 string text_; member in google::protobuf::io::__anonb2d186090111::TestErrorCollector
165 strings::SubstituteAndAppend(&text_, "$0:$1: $2\n", in AddError()
288 EXPECT_TRUE(error_collector.text_.empty()); in TEST_2D()
318 EXPECT_TRUE(error_collector.text_.empty()); in TEST_1D()
471 EXPECT_TRUE(error_collector.text_.empty()); in TEST_2D()
505 EXPECT_TRUE(error_collector.text_.empty()); in TEST_1D()
969 EXPECT_EQ(kErrorCases_case.errors, error_collector.text_); in TEST_2D()
/external/v8/src/
Ddebug.h285 Vector<uint16_t> text() const { return text_; } in text()
291 Vector<uint16_t> text_; variable
Dparser.cc43 text_.Add(atom, zone()); in FlushCharacters()
51 int num_text = text_.length(); in FlushText()
55 terms_.Add(text_.last(), zone()); in FlushText()
59 text_.Get(i)->AppendToText(text, zone()); in FlushText()
62 text_.Clear(); in FlushText()
88 text_.Add(term, zone()); in AddAtom()
153 text_.Add(new(zone()) RegExpAtom(prefix), zone()); in AddQuantifierToAtom()
159 } else if (text_.length() > 0) { in AddQuantifierToAtom()
161 atom = text_.RemoveLast(); in AddQuantifierToAtom()
/external/protobuf/src/google/protobuf/
Dtext_format_unittest.cc952 error_collector.text_); in ExpectMessage()
981 string text_; member in google::protobuf::text_format_unittest::TextFormatParserTest::MockErrorCollector
985 strings::SubstituteAndAppend(&text_, "$0:$1: $2\n", in AddError()
Ddescriptor_unittest.cc2870 string text_; member in google::protobuf::descriptor_unittest::MockErrorCollector
2892 &text_, "$0: $1: $2: $3\n", in AddError()
2941 EXPECT_EQ(expected_errors, error_collector.text_); in BuildFileWithErrors()
5010 error_collector.text_); in TEST_F()
5023 error_collector.text_); in TEST_F()
5131 EXPECT_EQ("", error_collector.text_); in TEST_F()
/external/guava/guava/lib/
Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API ...

12