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

References

tools/clang/include/clang/Basic/OpenCLOptions.h
   49     return I.Supported && I.Avail <= CLVer;
   58     return I.Supported && I.Avail <= CLVer && I.Core != ~0U && CLVer >= I.Core;
   67     return I.Supported && I.Avail <= CLVer && (I.Core == ~0U || CLVer < I.Core);
   96     OptMap[Ext].Supported = V;
  108       if (I.second.Supported)
  109         OptMap[I.getKey()].Supported = true;
  120       I->second.Supported = On;
tools/clang/lib/Serialization/ASTReader.cpp
 3594         Opt.Supported = Record[I++] != 0;
tools/clang/lib/Serialization/ASTWriter.cpp
 4323     Record.push_back(V.Supported ? 1 : 0);