Searched refs:offset_ (Results 1 – 1 of 1) sorted by relevance
111 ParseResult() : code_(kParseErrorNone), offset_(0) {} in ParseResult()113 ParseResult(ParseErrorCode code, size_t offset) : code_(code), offset_(offset) {} in ParseResult()118 size_t Offset() const { return offset_; } in Offset()136 void Set(ParseErrorCode code, size_t offset = 0) { code_ = code; offset_ = offset; }140 size_t offset_; member