HomeSort by: relevance | last modified time | path
    Searched defs:Deprecated (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDecl.cpp 1018 /// 'deprecated' '=' version
1032 enum { Introduced, Deprecated, Obsoleted, Unknown };
1070 // "introduced", "deprecated", and "obsoleted", do so now.
1073 Ident_deprecated = PP.getIdentifierInfo("deprecated");
1114 if (Changes[Deprecated].KeywordLoc.isValid()) {
1117 << SourceRange(Changes[Deprecated].KeywordLoc);
1120 Changes[Deprecated].KeywordLoc = KeywordLoc;
1122 Changes[Deprecated].Version = VersionTuple(1);
1161 // deprecated.
1185 Index = Deprecated;
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang-c/
Index.h 123 * it being deprecated or unavailable.
131 * The entity is available, but has been deprecated (and its use is
1032 * is now deprecated. Use clang_getDiagnosticCategoryText()
1267 * DEPRECATED: Enabled chained precompiled preambles in C++.
1270 * we are testing C++ precompiled preamble support. It is deprecated.
2896 * The version number in which this entity was deprecated (but is
2899 CXVersion Deprecated;
2923 * entity is deprecated on all platforms.
5449 * \param kind DEPRECATED: always set to CXCursor_NotImplemented if non-NULL.
6439 * This may be deprecated in a future version as this duplicate
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclAttr.cpp 2230 VersionTuple Deprecated,
2237 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2239 if (!Introduced.empty() && !Deprecated.empty() &&
2240 !(Introduced <= Deprecated)) {
2242 << 1 << PlatformName << Deprecated.getAsString()
2255 if (!Deprecated.empty() && !Obsoleted.empty() &&
2256 !(Deprecated <= Obsoleted)) {
2259 << 1 << Deprecated.getAsString();
2286 bool Implicit, VersionTuple Introduced, VersionTuple Deprecated,
2291 VersionTuple MergedDeprecated = Deprecated;
    [all...]

Completed in 46 milliseconds