HomeSort by relevance Sort by last modified time
    Searched full:type_end (Results 1 - 12 of 12) sorted by null

  /external/protobuf/src/google/protobuf/io/
tokenizer_unittest.cc 275 // After Next() returns false, the token should have type TYPE_END.
276 EXPECT_EQ(Tokenizer::TYPE_END, tokenizer.current().type);
320 // last token in "output" must have type TYPE_END.
337 { Tokenizer::TYPE_END , "" , 0, 0 },
347 { Tokenizer::TYPE_END , "" , 0, 17 },
356 { Tokenizer::TYPE_END , "" , 0, 4 },
365 { Tokenizer::TYPE_END , "" , 1, 7 },
373 { Tokenizer::TYPE_END , "" , 0, 19 },
381 { Tokenizer::TYPE_END , "" , 1, 30 },
388 { Tokenizer::TYPE_END , "" , 0, 37 }
    [all...]
tokenizer.h 91 TYPE_END, // End of input reached. "text" is empty.
tokenizer.cc 550 current_.type = TYPE_END;
  /external/llvm/lib/Analysis/
ModuleDebugInfoPrinter.cpp 82 E = Finder.type_end(); I != E; ++I) {
  /external/chromium/net/http/
http_util.cc 99 size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(", type_val);
100 if (string::npos == type_end)
101 type_end = content_type_str.length();
108 size_t param_start = content_type_str.find_first_of(';', type_end);
166 content_type_str.begin() + type_end,
170 content_type_str.begin() + type_end);
  /external/protobuf/src/google/protobuf/compiler/
parser_unittest.cc 118 EXPECT_EQ(io::Tokenizer::TYPE_END, input_->current().type);
135 EXPECT_EQ(io::Tokenizer::TYPE_END, input_->current().type);
158 EXPECT_EQ(io::Tokenizer::TYPE_END, input_->current().type);
    [all...]
parser.h 139 // True if the current token is TYPE_END.
parser.cc 119 return LookingAtType(io::Tokenizer::TYPE_END);
702 case io::Tokenizer::TYPE_END:
    [all...]
  /frameworks/base/cmds/rawbu/
backup.cpp 227 #define TYPE_END 0
428 if (*type == TYPE_END) {
  /external/protobuf/src/google/protobuf/
text_format.cc 147 if (LookingAtType(io::Tokenizer::TYPE_END)) {
162 return suc && LookingAtType(io::Tokenizer::TYPE_END);
    [all...]
  /external/dbus/dbus/
dbus-marshal-validate.c 39 * Verifies that the range of type_str from type_pos to type_end is a
    [all...]
  /external/llvm/include/llvm/Analysis/
DebugInfo.h 774 iterator type_end() const { return TYs.end(); } function in class:llvm::DebugInfoFinder

Completed in 302 milliseconds