Home
last modified time | relevance | path

Searched refs:ValidateState (Results 1 – 1 of 1) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/
DJsonTokenizer.cs203ValidateState(State.ExpectedEndOfDocument, "Unexpected end of document in state: "); in NextImpl()
216ValidateState(State.ObjectBeforeColon, "Invalid state to read a colon: "); in NextImpl()
220ValidateState(State.ObjectAfterProperty | State.ArrayAfterValue, "Invalid state to read a colon: "… in NextImpl()
236 ValidateState(ValueStates, "Invalid state to read an open brace: "); in NextImpl()
241ValidateState(State.ObjectAfterProperty | State.ObjectStart, "Invalid state to read a close brace:… in NextImpl()
245ValidateState(ValueStates, "Invalid state to read an open square bracket: "); in NextImpl()
250ValidateState(State.ArrayAfterValue | State.ArrayStart, "Invalid state to read a close square brac… in NextImpl()
285 private void ValidateState(State validStates, string errorPrefix) in ValidateState() method in Google.Protobuf.JsonTokenizer.JsonTextTokenizer
531 ValidateState(ValueStates, errorPrefix); in ValidateAndModifyStateForValue()