Lines Matching refs:fState
55 , fState(State::kStart) { in fBlock()
87 SkASSERT(State::kObjectBegin == fState || State::kObjectValue == fState); in appendName()
88 if (State::kObjectValue == fState) { in appendName()
95 fState = State::kObjectName; in appendName()
112 fState = State::kObjectBegin;
120 SkASSERT(State::kObjectBegin == fState || State::kObjectValue == fState); in endObject()
121 bool emptyObject = State::kObjectBegin == fState; in endObject()
144 fState = State::kArrayBegin;
152 SkASSERT(State::kArrayBegin == fState || State::kArrayValue == fState); in endArray()
153 bool emptyArray = State::kArrayBegin == fState; in endArray()
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; in popScope()
336 fState = State::kObjectValue; in popScope()
339 fState = State::kArrayValue; in popScope()
353 State fState; variable