Lines Matching refs:fState
55 , fState(State::kStart) {
87 SkASSERT(State::kObjectBegin == fState || State::kObjectValue == fState);
88 if (State::kObjectValue == fState) {
95 fState = State::kObjectName;
112 fState = State::kObjectBegin;
120 SkASSERT(State::kObjectBegin == fState || State::kObjectValue == fState);
121 bool emptyObject = State::kObjectBegin == fState;
144 fState = State::kArrayBegin;
152 SkASSERT(State::kArrayBegin == fState || State::kArrayValue == fState);
153 bool emptyArray = State::kArrayBegin == fState;
272 SkASSERT(State::kObjectName == fState ||
273 State::kArrayBegin == fState ||
274 State::kArrayValue == fState ||
275 (structure && State::kStart == fState));
276 if (State::kArrayValue == fState) {
287 fState = Scope::kArray == this->scope() ? State::kArrayValue : State::kObjectValue;
333 fState = State::kEnd;
336 fState = State::kObjectValue;
339 fState = State::kArrayValue;
353 State fState;