Home | History | Annotate | Download | only in Frontend

Lines Matching defs:tuple

574       VersionTuple tuple = LangOpts.ObjCRuntime.getVersion();
577 if (tuple.getMinor().hasValue())
578 minor = tuple.getMinor().getValue();
581 if (tuple.getSubminor().hasValue())
582 subminor = tuple.getSubminor().getValue();
585 Twine(tuple.getMajor() * 10000 + minor * 100 +