Home | History | Annotate | Download | only in Sema

Lines Matching refs:Introduced

1775                                   VersionTuple Introduced,
1783 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
1785 if (!Introduced.empty() && !Deprecated.empty() &&
1786 !(Introduced <= Deprecated)) {
1789 << 0 << Introduced.getAsString();
1793 if (!Introduced.empty() && !Obsoleted.empty() &&
1794 !(Introduced <= Obsoleted)) {
1797 << 0 << Introduced.getAsString();
1832 VersionTuple Introduced,
1839 VersionTuple MergedIntroduced = Introduced;
1865 if (!versionsMatch(OldIntroduced, Introduced, Override) ||
1874 if (!versionsMatch(OldIntroduced, Introduced, Override)) {
1877 SecondVersion = Introduced;
1937 MergedIntroduced == Introduced &&
1948 Introduced, Deprecated,
1973 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1983 Introduced.Version,