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

References

tools/clang/lib/Basic/Targets/OSTargets.cpp
   73       Str[0] = '0' + Maj;
   74       Str[1] = '0' + (Min / 10);
   75       Str[2] = '0' + (Min % 10);
   76       Str[3] = '0' + (Rev / 10);
   77       Str[4] = '0' + (Rev % 10);
   78       Str[5] = '\0';
   81       Str[0] = '0' + (Maj / 10);
   82       Str[1] = '0' + (Maj % 10);
   83       Str[2] = '0' + (Min / 10);
   84       Str[3] = '0' + (Min % 10);
   85       Str[4] = '0' + (Rev / 10);
   86       Str[5] = '0' + (Rev % 10);
   87       Str[6] = '\0';
   90       Builder.defineMacro("__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__", Str);
   93                           Str);