Home | History | Annotate | Download | only in lib_json

Lines Matching defs:ok

245   bool ok = true;
261 ok = readString();
265 ok = readComment();
283 ok = match("rue", 3);
287 ok = match("alse", 4);
291 ok = match("ull", 3);
303 ok = false;
306 if (!ok)
439 bool ok = readValue();
441 if (!ok) // error already set
475 bool ok = readValue();
477 if (!ok) // error already set
482 ok = readToken(token);
483 while (token.type_ == tokenComment && ok) {
484 ok = readToken(token);
488 if (!ok || badTokenType) {
876 bool ok = reader.parse(sin, root, true);
877 if (!ok) {