reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/JSON.h
  612       if (!fromJSON((*A)[I], Out[I]))
unittests/Support/JSONTest.cpp
  379   EXPECT_FALSE(fromJSON(nullptr, V)) << "Not an object " << V;
  380   EXPECT_FALSE(fromJSON(Object{}, V)) << "Missing required field " << V;
  381   EXPECT_FALSE(fromJSON(Object{{"str", 1}}, V)) << "Wrong type " << V;
  383   EXPECT_FALSE(fromJSON(Object{{"str", 1}, {"int", "string"}}, V))