HomeSort by relevance Sort by last modified time
    Searched refs:text_ (Results 1 - 25 of 38) sorted by null

1 2

  /external/protobuf/src/google/protobuf/stubs/
substitute.h 90 : 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_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {
133 const char* text_; member in class:google::protobuf::strings::internal::SubstituteArg
    [all...]
  /external/jdiff/src/jdiff/
SingleComment.java 18 public String text_ = null; field in class:SingleComment
27 text_ = text;
DiffOutput.java 27 public String text_ = null; field in class:DiffOutput
36 text_ = text;
CommentsHandler.java 141 if (currComment.text_ == null)
142 currComment.text_ = currentText;
144 currComment.text_ += currentText;
Comments.java 209 return singleComment.text_;
408 outputFile.println(" " + currComment.text_);
427 System.out.println("text = \"" + currComment.text_ + "\"");
  /art/runtime/
indenter.h 30 : indent_next_(true), out_sbuf_(out), text_(text), count_(count) {}
40 int_type r = out_sbuf_->sputc(text_);
41 if (UNLIKELY(r != text_)) {
43 r = out_sbuf_->sputc(text_);
44 CHECK_EQ(r, text_) << "Error writing to buffer. Disk full?";
68 const char text_; member in class:Indenter
  /ndk/sources/android/support/tests/minitest/
minitest.cc 150 if (!text_.empty())
151 printf("%s\n", text_.c_str());
156 if (!text_.empty())
157 printf("%s\n", text_.c_str());
161 text_.Clear();
162 return text_;
minitest.h 225 internal::String text_; member in class:minitest::TestCase
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsDictionaryMatcher.java 21 public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit, int[] values) {
22 UCharacterIterator text = UCharacterIterator.getInstance(text_);
BytesDictionaryMatcher.java 42 public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit, int[] values) {
43 UCharacterIterator text = UCharacterIterator.getInstance(text_);
  /external/regex-re2/re2/
bitstate.cc 50 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/protobuf/src/google/protobuf/compiler/cpp/
cpp_bootstrap_unittest.cc 72 string text_; member in class:google::protobuf::compiler::cpp::__anon17762::MockErrorCollector
77 strings::SubstituteAndAppend(&text_, "$0:$1:$2: $3\n",
128 EXPECT_EQ("", error_collector.text_);
  /external/chromium-trace/trace-viewer/third_party/WebOb/webob/
util.py 6 text_,
36 return text_(s)
compat.py 24 def text_(s, encoding='latin-1', errors='strict'): function
cookies.py 22 text_,
95 name = text_(name, 'utf-8')
110 value = text_(value, 'utf-8')
478 return json.loads(text_(bstruct, encoding='utf-8'))
exc.py 173 text_,
195 value = text_(value, 'utf-8')
    [all...]
  /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/protobuf/src/google/protobuf/compiler/
importer_unittest.cc 64 string text_; member in class:google::protobuf::compiler::__anon17772::MockErrorCollector
69 strings::SubstituteAndAppend(&text_, "$0:$1:$2: $3\n",
116 string error() const { return error_collector_.text_; }
130 EXPECT_EQ("", error_collector_.text_);
159 EXPECT_EQ("", error_collector_.text_);
182 error_collector_.text_);
195 error_collector_.text_);
215 error_collector_.text_);
232 ASSERT_TRUE(file != NULL) << error_collector_.text_;
233 EXPECT_EQ("", error_collector_.text_);
    [all...]
parser_unittest.cc 67 string text_; member in class:google::protobuf::compiler::__anon17804::MockErrorCollector
71 strings::SubstituteAndAppend(&text_, "$0:$1: $2\n",
123 ASSERT_EQ("", error_collector_.text_);
151 EXPECT_EQ(expected_errors, error_collector_.text_);
166 ASSERT_EQ("", error_collector_.text_);
172 EXPECT_EQ(expected_errors, error_collector_.text_);
193 EXPECT_EQ("", error_collector_.text_);
203 EXPECT_EQ("", error_collector_.text_);
213 EXPECT_EQ("1:9: Expected syntax identifier.\n", error_collector_.text_);
    [all...]
  /bootable/recovery/
screen_ui.cpp 63 text_(nullptr),
290 gr_text(0, ty, text_[row], false);
398 text_ = Alloc2d(text_rows_, text_cols_ + 1);
522 text_[text_row_][text_col_] = '\0';
527 if (*ptr != '\n') text_[text_row_][text_col_++] = *ptr;
529 text_[text_row_][text_col_] = '\0';
537 if (ch != '\n') text_[text_row_][text_col_++] = ch;
553 memset(text_[i], 0, text_cols_ + 1);
615 char** old_text = text_;
621 text_ = file_viewer_text_
    [all...]
screen_ui.h 95 char** text_; member in class:ScreenRecoveryUI
106 // An alternate text screen, swapped with 'text_' when we're viewing a log file.
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
StringSearch.java 323 textIter_ = new CollationElementIterator(pattern_.text_, collator);
324 utilIter_ = new CollationElementIterator(pattern_.text_, collator);
336 return pattern_.text_;
353 pattern_.text_ = pattern;
704 int patternlength = pattern_.text_.length();
708 coleiter = new CollationElementIterator(pattern_.text_, collator_);
711 coleiter.setText(pattern_.text_);
747 int patternlength = pattern_.text_.length();
751 coleiter = new CollationElementIterator(pattern_.text_, collator_);
754 coleiter.setText(pattern_.text_);
1517 String text_; field in class:StringSearch.Pattern
    [all...]
  /external/protobuf/src/google/protobuf/io/
tokenizer_unittest.cc 161 string text_; member in class:google::protobuf::io::__anon17836::TestErrorCollector
165 strings::SubstituteAndAppend(&text_, "$0:$1: $2\n",
288 EXPECT_TRUE(error_collector.text_.empty());
318 EXPECT_TRUE(error_collector.text_.empty());
471 EXPECT_TRUE(error_collector.text_.empty());
505 EXPECT_TRUE(error_collector.text_.empty());
    [all...]
  /art/compiler/
elf_builder.h 503 text_(".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR,
513 OatSection* GetText() { return &text_; }
613 sections.push_back(&text_);
693 program_headers.push_back(MakeProgramHeader(PT_LOAD, PF_R | PF_X, text_));
932 OatSection text_; member in class:art::FINAL
    [all...]
  /external/v8/src/
debug.h 285 Vector<uint16_t> text() const { return text_; }
291 Vector<uint16_t> text_; member in class:v8::internal::CommandMessage

Completed in 6755 milliseconds

1 2