Lines Matching refs:fState
54 , fState(State::kStart) { in fBlock()
86 SkASSERT(State::kObjectBegin == fState || State::kObjectValue == fState); in appendName()
87 if (State::kObjectValue == fState) { in appendName()
94 fState = State::kObjectName; in appendName()
111 fState = State::kObjectBegin;
119 SkASSERT(State::kObjectBegin == fState || State::kObjectValue == fState); in endObject()
120 bool emptyObject = State::kObjectBegin == fState; in endObject()
143 fState = State::kArrayBegin;
151 SkASSERT(State::kArrayBegin == fState || State::kArrayValue == fState); in endArray()
152 bool emptyArray = State::kArrayBegin == fState; in endArray()
271 SkASSERT(State::kObjectName == fState ||
272 State::kArrayBegin == fState ||
273 State::kArrayValue == fState ||
274 (structure && State::kStart == fState));
275 if (State::kArrayValue == fState) {
286 fState = Scope::kArray == this->scope() ? State::kArrayValue : State::kObjectValue;
332 fState = State::kEnd; in popScope()
335 fState = State::kObjectValue; in popScope()
338 fState = State::kArrayValue; in popScope()
352 State fState; variable