Home
last modified time | relevance | path

Searched refs:isDeprecated (Results 1 – 12 of 12) sorted by relevance

/external/jdiff/src/jdiff/
DModifiers.java24 public boolean isDeprecated = false; field in Modifiers
43 if (isDeprecated != oModifiers.isDeprecated) in compareTo()
82 if (isDeprecated != newModifiers.isDeprecated) { in diff()
85 if (isDeprecated) in diff()
DAPIHandler.java320 modifiers.isDeprecated = false; in getModifiers()
323 modifiers.isDeprecated = false; in getModifiers()
326 modifiers.isDeprecated = true; in getModifiers()
329 modifiers.isDeprecated = true; in getModifiers()
DRootDocToXML.java382 boolean isDeprecated = false; in addCommonModifiers()
385 isDeprecated = true; in addCommonModifiers()
391 if (isDeprecated) { in addCommonModifiers()
/external/doclava/src/com/google/doclava/
DStubs.java66 } else if (m.isDeprecated()) { in writeStubsAndApi()
113 } else if (cl.isDeprecated()) { in writeStubsAndApi()
327 writeAnnotations(stream, cl.annotations(), cl.isDeprecated()); in writeClass()
501 writeAnnotations(stream, method.annotations(), method.isDeprecated()); in writeMethod()
565 writeAnnotations(stream, field.annotations(), field.isDeprecated()); in writeField()
729 boolean isDeprecated) { in writeAnnotations() argument
739 if (isDeprecated && ann.type() != null in writeAnnotations()
741 isDeprecated = false; // Prevent duplicate annotations in writeAnnotations()
745 if (isDeprecated) { in writeAnnotations()
818 if (cl.isDeprecated()) { in writeClassXML()
[all …]
DFieldInfo.java105 public boolean isDeprecated() { in isDeprecated() method in FieldInfo
107 boolean commentDeprecated = comment().isDeprecated(); in isDeprecated()
456 if (isDeprecated() != fInfo.isDeprecated()) { in isConsistent()
DMethodInfo.java206 public boolean isDeprecated() { in isDeprecated() method in MethodInfo
209 boolean commentDeprecated = comment().isDeprecated(); in isDeprecated()
755 if (!isDeprecated() == mInfo.isDeprecated()) { in isConsistent()
757 + " has changed deprecation state " + isDeprecated() + " --> " + mInfo.isDeprecated()); in isConsistent()
DComment.java481 public boolean isDeprecated() { in isDeprecated() method in Comment
500 isDeprecated(); in initImpl()
DClassInfo.java377 public boolean isDeprecated() { in isDeprecated() method in ClassInfo
379 boolean commentDeprecated = comment().isDeprecated(); in isDeprecated()
1704 if (!isDeprecated() == cl.isDeprecated()) { in isConsistent()
/external/doclava/
Dandroid-changes.txt8 * Modified the writeAnnotations method to take a "isDeprecated"
/external/clang/lib/Sema/
DSemaDeclObjC.cpp243 if (ND && ND->isDeprecated()) { in DiagnoseObjCImplementedDeprecations()
1996 if (Method->isDeprecated()) { in addMethodToGlobalList()
1997 if (!PrevObjCMethod->isDeprecated()) in addMethodToGlobalList()
DSemaDeclAttr.cpp4117 if (D->isDeprecated()) in isDeclDeprecated()
4121 return CatD->getClassInterface()->isDeprecated(); in isDeclDeprecated()
/external/clang/include/clang/AST/
DDeclBase.h552 bool isDeprecated(std::string *Message = 0) const {