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

References

lib/Support/VersionTuple.cpp
   64   if (parseInt(input, major))
   67   if (input.empty()) {
   73   if (input[0] != '.')
   75   input = input.substr(1);
   75   input = input.substr(1);
   76   if (parseInt(input, minor))
   79   if (input.empty()) {
   85   if (input[0] != '.')
   87   input = input.substr(1);
   87   input = input.substr(1);
   88   if (parseInt(input, micro))
   91   if (input.empty()) {
   97   if (input[0] != '.')
   99   input = input.substr(1);
   99   input = input.substr(1);
  100   if (parseInt(input, build))
  104   if (!input.empty())