Lines Matching defs:in
3 // recognized in your jurisdiction.
91 // Avoid an integer overflow in the call to malloc below by limiting length
98 "in Json::Value::duplicateStringValue(): "
150 "in Json::Value::setComment(): Comments must start with /");
227 * This optimization is used in ValueInternalMap fast allocator.
524 "in Json::Value::asCString(): requires stringValue");
753 /// Number of values in array or object
796 "in Json::Value::clear(): requires complex value");
820 "in Json::Value::resize(): requires arrayValue");
843 "in Json::Value::operator[](ArrayIndex): requires arrayValue");
863 "in Json::Value::operator[](int index): index cannot be negative");
870 "in Json::Value::operator[](ArrayIndex)const: requires arrayValue");
888 "in Json::Value::operator[](int index) const: index cannot be negative");
910 "in Json::Value::resolveReference(): requires objectValue");
939 "in Json::Value::operator[](char const*)const: requires objectValue");
989 "in Json::Value::removeMember(): requires objectValue");
1041 "in Json::Value::getMemberNames(), value must be objectValue");
1360 InArgs in;
1361 in.push_back(&a1);
1362 in.push_back(&a2);
1363 in.push_back(&a3);
1364 in.push_back(&a4);
1365 in.push_back(&a5);
1366 makePath(path, in);
1369 void Path::makePath(const std::string& path, const InArgs& in) {
1372 InArgs::const_iterator itInArg = in.begin();
1377 addPathInArg(path, in, itInArg, PathArgument::kindIndex);
1387 addPathInArg(path, in, itInArg, PathArgument::kindKey);
1401 const InArgs& in,
1404 if (itInArg == in.end()) {