Lines Matching full:arrayindex
167 Value::CZString::CZString(ArrayIndex index) : cstr_(0), index_(index) {}
178 ? static_cast<ArrayIndex>(other.index_ == noDuplication
209 ArrayIndex Value::CZString::index() const { return index_; }
754 ArrayIndex Value::size() const {
772 return ArrayIndex(value_.map_->size());
818 void Value::resize(ArrayIndex newSize) {
824 ArrayIndex oldSize = size();
830 for (ArrayIndex index = newSize; index < oldSize; ++index) {
840 Value& Value::operator[](ArrayIndex index) {
843 "in Json::Value::operator[](ArrayIndex): requires arrayValue");
864 return (*this)[ArrayIndex(index)];
867 const Value& Value::operator[](ArrayIndex index) const {
870 "in Json::Value::operator[](ArrayIndex)const: requires arrayValue");
889 return (*this)[ArrayIndex(index)];
929 Value Value::get(ArrayIndex index, const Value& defaultValue) const {
934 bool Value::isValidIndex(ArrayIndex index) const { return index < size(); }
1342 PathArgument::PathArgument(ArrayIndex index)
1379 ArrayIndex index = 0;
1381 index = index * 10 + ArrayIndex(*current - '0');