Lines Matching defs:in
13 The author (Baptiste Lepilleur) explicitly disclaims copyright in all
14 jurisdictions which recognize such a disclaimer. In such jurisdictions,
17 In jurisdictions which do not recognize Public Domain property (e.g. Germany as of
21 In jurisdictions which recognize Public Domain property, the user of this
27 described in clear, concise terms at:
38 files (the "Software"), to deal in the Software without
45 included in all copies or substantial portions of the Software.
50 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
51 BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
52 ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
53 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
61 and license text in the source code. Note also that by accepting the
89 // recognized in your jurisdiction.
132 /// Returns true if ch is a control character (in range [1,31]).
157 /** Change ',' to '.' everywhere in buffer.
159 * We had a sophisticated way, but it did not work in WinCE.
190 // recognized in your jurisdiction.
334 // in doc
352 if (stackDepth_g >= stackLimit_g) throwRuntimeError("Exceeded stackLimit in readValue().");
602 // Consume DOS EOL. It will be normalized in addComment.
690 "Missing ',' or '}' in object declaration", comma, tokenObjectEnd);
723 // Accept Comment after last item in the array.
732 "Missing ',' or ']' in array declaration", token, tokenArrayEnd);
772 // c) it's small enough to fit in that rounding delta, we're okay.
835 return addError("Empty escape sequence in string", token, current);
869 return addError("Bad escape sequence in string", token, current);
913 "Bad unicode escape sequence in string: four digits expected.",
928 "Bad unicode escape sequence in string: hexadecimal digit expected.",
1264 // in doc
1278 if (stackDepth_ >= features_.stackLimit_) throwRuntimeError("Exceeded stackLimit in readValue().");
1561 // Consume DOS EOL. It will be normalized in addComment.
1672 "Missing ',' or '}' in object declaration", comma, tokenObjectEnd);
1705 // Accept Comment after last item in the array.
1714 "Missing ',' or ']' in array declaration", token, tokenArrayEnd);
1754 // c) it's small enough to fit in that rounding delta, we're okay.
1839 return addError("Empty escape sequence in string", token, current);
1873 return addError("Bad escape sequence in string", token, current);
1917 "Bad unicode escape sequence in string: four digits expected.",
1932 "Bad unicode escape sequence in string: hexadecimal digit expected.",
2236 // recognized in your jurisdiction.
2417 // recognized in your jurisdiction.
2498 // Avoid an integer overflow in the call to malloc below by limiting length
2506 "in Json::Value::duplicateStringValue(): "
2520 // Avoid an integer overflow in the call to malloc below by limiting length
2523 "in Json::Value::duplicateAndPrefixStringValue(): "
2529 "in Json::Value::duplicateAndPrefixStringValue(): "
2616 "in Json::Value::setComment(): Comments must start with /");
2715 * This optimization is used in ValueInternalMap fast allocator.
3011 "in Json::Value::asCString(): requires stringValue");
3264 /// Number of values in array or object
3300 "in Json::Value::clear(): requires complex value");
3315 "in Json::Value::resize(): requires arrayValue");
3334 "in Json::Value::operator[](ArrayIndex): requires arrayValue");
3350 "in Json::Value::operator[](int index): index cannot be negative");
3357 "in Json::Value::operator[](ArrayIndex)const: requires arrayValue");
3370 "in Json::Value::operator[](int index) const: index cannot be negative");
3388 "in Json::Value::resolveReference(): requires objectValue");
3408 "in Json::Value::resolveReference(key, end): requires objectValue");
3434 "in Json::Value::find(key, end, found): requires objectValue or nullValue");
3519 "in Json::Value::removeMember(): requires objectValue");
3585 "in Json::Value::getMemberNames(), value must be objectValue");
3837 InArgs in;
3838 in.push_back(&a1);
3839 in.push_back(&a2);
3840 in.push_back(&a3);
3841 in.push_back(&a4);
3842 in.push_back(&a5);
3843 makePath(path, in);
3846 void Path::makePath(const std::string& path, const InArgs& in) {
3849 InArgs::const_iterator itInArg = in.begin();
3854 addPathInArg(path, in, itInArg, PathArgument::kindIndex);
3864 addPathInArg(path, in, itInArg, PathArgument::kindKey);
3878 const InArgs& in,
3881 if (itInArg == in.end()) {
3972 // recognized in your jurisdiction.
4178 // Even though \/ is considered a legal escape in JSON, a bare
4181 // blep notes: actually escaping \/ may be useful in javascript to avoid </
4256 // Even though \/ is considered a legal escape in JSON, a bare
4259 // blep notes: actually escaping \/ may be useful in javascript to avoid </
5020 // In this case, drop newlines too.