Lines Matching refs:nodes_
126 while (!nodes_.empty()) in parse()
127 nodes_.pop(); in parse()
128 nodes_.push(&root); in parse()
156 if (nodes_.size() > stackLimit_g) in readValue()
476 nodes_.push(&value); in readObject()
478 nodes_.pop(); in readObject()
513 nodes_.push(&value); in readArray()
515 nodes_.pop(); in readArray()
754 Value& Reader::currentValue() { return *(nodes_.top()); } in currentValue()
980 Nodes nodes_{}; member in Json::OurReader
1018 while (!nodes_.empty()) in parse()
1019 nodes_.pop(); in parse()
1020 nodes_.push(&root); in parse()
1025 nodes_.pop(); in parse()
1052 if (nodes_.size() > features_.stackLimit_) in readValue()
1481 nodes_.push(&value); in readObject()
1483 nodes_.pop(); in readObject()
1522 nodes_.push(&value); in readArray()
1524 nodes_.pop(); in readArray()
1801 Value& OurReader::currentValue() { return *(nodes_.top()); } in currentValue()