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