Lines Matching refs:nodes_
364 while (!nodes_.empty()) in parse()
365 nodes_.pop(); in parse()
366 nodes_.push(&root); in parse()
393 if (nodes_.size() > stackLimit_g) throwRuntimeError("Exceeded stackLimit in readValue()."); in readValue()
718 nodes_.push(&value); in readObject()
720 nodes_.pop(); in readObject()
755 nodes_.push(&value); in readArray()
757 nodes_.pop(); in readArray()
1005 Value& Reader::currentValue() { return *(nodes_.top()); } in currentValue()
1248 Nodes nodes_; member in AlibabaCloud::OSS::Json::OurReader
1293 while (!nodes_.empty()) in parse()
1294 nodes_.pop(); in parse()
1295 nodes_.push(&root); in parse()
1326 …if (static_cast<int>(nodes_.size()) > features_.stackLimit_) throwRuntimeError("Exceeded stackLimi… in readValue()
1726 nodes_.push(&value); in readObject()
1728 nodes_.pop(); in readObject()
1763 nodes_.push(&value); in readArray()
1765 nodes_.pop(); in readArray()
2037 Value& OurReader::currentValue() { return *(nodes_.top()); } in currentValue()