Lines Matching defs:out
2944 @param[in,out] s the string to manipulate; changed so that all
4193 inline void concat_into(OutStringType& /*out*/)
4223 inline void concat_into(OutStringType& out, Arg && arg, Args && ... rest);
4229 inline void concat_into(OutStringType& out, const Arg& arg, Args && ... rest);
4236 inline void concat_into(OutStringType& out, const Arg& arg, Args && ... rest);
4240 inline void concat_into(OutStringType& out, Arg && arg, Args && ... rest)
4242 out.append(std::forward<Arg>(arg));
4243 concat_into(out, std::forward<Args>(rest)...);
4249 inline void concat_into(OutStringType& out, Arg&& arg, Args&& ... rest)
4251 out += std::forward<Arg>(arg);
4252 concat_into(out, std::forward<Args>(rest)...);
4259 inline void concat_into(OutStringType& out, const Arg& arg, Args&& ... rest)
4261 out.append(arg.begin(), arg.end());
4262 concat_into(out, std::forward<Args>(rest)...);
4270 inline void concat_into(OutStringType& out, const Arg& arg, Args&& ... rest)
4272 out.append(arg.data(), arg.size());
4273 concat_into(out, std::forward<Args>(rest)...);
4484 /// @brief exception indicating access out of the defined range
6740 @param[in,out] r reference to a JSON value that is manipulated while
8279 // state (init): we just found out we need to scan a number
9262 @param[in,out] result A reference to the string variable where the read
9269 auto out = std::back_inserter(result);
9281 *out++ = static_cast<typename string_t::value_type>(current);
9290 @param[in,out] result A reference to the string variable where the read
9312 @param[in,out] result A reference to the binary variable where the read
9981 @param[out] result created string
10077 @param[out] result created byte array
10647 @param[out] result created string
10730 @param[out] result created byte array
10914 left out.
10916 @param[out] result created string
11015 @param[out] dim an integer vector storing the ND array dimensions
11073 @param[out] result determined size
11074 @param[in,out] is_ndarray for input, `true` means already inside an ndarray vector
11301 @param[out] result pair of the size and the type
11851 @param[out] result number of type @a NumberType
11896 @param[out] result string created by reading @a len bytes
11902 the input before we run out of string memory.
11929 @param[out] result byte array created by reading @a len bytes
11935 the input before we run out of memory.
12185 @param[in,out] result parsed JSON value
13916 || errno == ERANGE // out of range
14123 ") is out of range"), ptr));
14179 JSON_THROW(detail::out_of_range::create(402, detail::concat("array index '-' (", std::to_string(ptr->m_value.array->size()), ") is out of range"), ptr));
14230 ") is out of range"), ptr));
14309 // index out of range
14411 @param[in,out] result the result object to insert values to
17059 // the digit generation procedure. Using (alpha,gamma)=(-60,-32) works out well
18774 @param[in,out] state the state of the decoding
18775 @param[in,out] codep codepoint (valid only if resulting state is UTF8_ACCEPT)
20224 JSON_THROW(invalid_iterator::create(204, "iterators out of range", first.m_object));
21116 JSON_THROW(out_of_range::create(401, detail::concat("array index ", std::to_string(idx), " is out of range"), this));
21139 JSON_THROW(out_of_range::create(401, detail::concat("array index ", std::to_string(idx), " is out of range"), this));
21616 JSON_THROW(invalid_iterator::create(205, "iterator out of range", this));
21687 JSON_THROW(invalid_iterator::create(204, "iterators out of range", this));
21795 JSON_THROW(out_of_range::create(401, detail::concat("array index ", std::to_string(idx), " is out of range"), this));
23928 JSON_THROW(out_of_range::create(401, detail::concat("array index ", std::to_string(idx), " is out of range"), &parent));
24092 // ignore out of range errors: success remains false