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

References

include/llvm/Support/JSON.h
  373     switch (Type) {
  394     if (LLVM_LIKELY(Type == T_Null))
  399     if (LLVM_LIKELY(Type == T_Boolean))
  404     if (LLVM_LIKELY(Type == T_Double))
  406     if (LLVM_LIKELY(Type == T_Integer))
  412     if (LLVM_LIKELY(Type == T_Integer))
  414     if (LLVM_LIKELY(Type == T_Double)) {
  424     if (Type == T_String)
  426     if (LLVM_LIKELY(Type == T_StringRef))
  431     return LLVM_LIKELY(Type == T_Object) ? &as<json::Object>() : nullptr;
  434     return LLVM_LIKELY(Type == T_Object) ? &as<json::Object>() : nullptr;
  437     return LLVM_LIKELY(Type == T_Array) ? &as<json::Array>() : nullptr;
  440     return LLVM_LIKELY(Type == T_Array) ? &as<json::Array>() : nullptr;
lib/Support/JSON.cpp
  103   Type = M.Type;
  103   Type = M.Type;
  104   switch (Type) {
  127   Type = M.Type;
  127   Type = M.Type;
  128   switch (Type) {
  140     M.Type = T_Null;
  144     M.Type = T_Null;
  148     M.Type = T_Null;
  154   switch (Type) {
  188     if (L.Type == Value::T_Integer || R.Type == Value::T_Integer)
  188     if (L.Type == Value::T_Integer || R.Type == Value::T_Integer)
  605     if (V.Type == Value::T_Integer)