OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:current_char_
(Results
1 - 2
of
2
) sorted by null
/external/protobuf/src/google/protobuf/io/
tokenizer.cc
226
if (
current_char_
== '\n') {
229
} else if (
current_char_
== '\t') {
238
current_char_
= buffer_[buffer_pos_];
246
current_char_
= '\0';
264
current_char_
= '\0';
271
current_char_
= buffer_[0];
309
return CharacterClass::InClass(
current_char_
);
314
if (CharacterClass::InClass(
current_char_
)) {
323
if (
current_char_
== c) {
333
while (CharacterClass::InClass(
current_char_
)) {
[
all
...]
tokenizer.h
265
char
current_char_
; // == buffer_[buffer_pos_], updated by NextChar().
member in class:google::protobuf::io::Tokenizer
271
// Line and column number of
current_char_
within the whole input stream.
Completed in 56 milliseconds