/external/jdiff/src/jdiff/ |
D | Modifiers.java | 24 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()
|
D | APIHandler.java | 323 modifiers.isDeprecated = false; in getModifiers() 326 modifiers.isDeprecated = false; in getModifiers() 329 modifiers.isDeprecated = true; in getModifiers() 332 modifiers.isDeprecated = true; in getModifiers()
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | DeprecatedFieldTest.java | 57 assertTrue("Method " + name + " should be deprecated", isDeprecated(method)); in testDeprecatedField() 61 assertTrue("Method " + name + " should be deprecated", isDeprecated(method)); in testDeprecatedField() 65 assertTrue("Method " + name + " should be deprecated", isDeprecated(method)); in testDeprecatedField() 73 assertTrue("Enum value " + name + " should be deprecated.", isDeprecated(enumValue)); in testDeprecatedFieldInOneof() 76 private boolean isDeprecated(AnnotatedElement annotated) { in isDeprecated() method in DeprecatedFieldTest
|
/external/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/ |
D | DeprecatedFieldTest.java | 64 isDeprecated(method)); in testDeprecatedField() 69 isDeprecated(method)); in testDeprecatedField() 74 isDeprecated(method)); in testDeprecatedField() 78 private boolean isDeprecated(AnnotatedElement annotated) { in isDeprecated() method in DeprecatedFieldTest
|
/external/doclava/src/com/google/doclava/ |
D | SinceTagger.java | 149 if (doc.isDeprecated() && doc.getDeprecatedSince() == null) { in versionClass() 150 if (spec.isDeprecated()) { in versionClass() 167 if (constructor.isDeprecated() && constructor.getDeprecatedSince() == null) { in versionConstructors() 171 if (specConstructor.isDeprecated()) { in versionConstructors() 190 if (field.isDeprecated() && field.getDeprecatedSince() == null) { in versionFields() 194 if (specField.isDeprecated()) { in versionFields() 209 if (method.isDeprecated() && method.getDeprecatedSince() == null) { in versionMethods() 213 if (specMethod.isDeprecated()) { in versionMethods()
|
D | FieldInfo.java | 146 public boolean isDeprecated() { in isDeprecated() method in FieldInfo 148 boolean commentDeprecated = comment().isDeprecated(); in isDeprecated() 379 if (isDeprecated()) { in makeHDF() 520 if (isDeprecated() != fInfo.isDeprecated()) { in isConsistent() 522 + " has changed deprecation state " + isDeprecated() + " --> " + fInfo.isDeprecated()); in isConsistent()
|
D | DocInfo.java | 142 public boolean isDeprecated() { in isDeprecated() method in DocInfo 144 return comment().isDeprecated(); in isDeprecated()
|
D | Stubs.java | 180 } else if (m.isDeprecated()) { in writeStubsAndApi() 245 } else if (cl.isDeprecated()) { in writeStubsAndApi() 686 writeAnnotations(stream, cl.annotations(), cl.isDeprecated()); in writeClass() 748 writeAnnotations(stream, field.annotations(), field.isDeprecated()); in writeClass() 867 writeAnnotations(stream, method.annotations(), method.isDeprecated()); in writeMethod() 939 writeAnnotations(stream, field.annotations(), field.isDeprecated()); in writeField() 1070 boolean isDeprecated) { in writeAnnotations() argument 1080 if (isDeprecated && ann.type() != null in writeAnnotations() 1082 isDeprecated = false; // Prevent duplicate annotations in writeAnnotations() 1086 if (isDeprecated) { in writeAnnotations() [all …]
|
D | MethodInfo.java | 208 public boolean isDeprecated() { in isDeprecated() method in MethodInfo 211 boolean commentDeprecated = comment().isDeprecated(); in isDeprecated() 633 if (isDeprecated()) { in makeHDF() 912 if (!isDeprecated() == mInfo.isDeprecated()) { in isConsistent() 914 + mInfo.prettyQualifiedSignature() + " has changed deprecation state " + isDeprecated() in isConsistent() 915 + " --> " + mInfo.isDeprecated()); in isConsistent()
|
D | ClassInfo.java | 590 public boolean isDeprecated() { in isDeprecated() method in ClassInfo 592 boolean commentDeprecated = comment().isDeprecated(); in isDeprecated() 1258 if (isDeprecated()) { in makeShortDescrHDF() 1329 if (isDeprecated()) { in makeHDF() 2175 if (mInfo.isDeprecated()) { in isConsistent() 2220 if (mInfo.isDeprecated()) { in isConsistent() 2250 if (mInfo.isDeprecated()) { in isConsistent() 2274 if (info.isDeprecated()) { in isConsistent() 2331 if (!isDeprecated() == cl.isDeprecated()) { in isConsistent() 2334 + " has changed deprecation state " + isDeprecated() + " --> " + cl.isDeprecated()); in isConsistent()
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
D | deprecation.js | 19 shared.isDeprecated = function(feature, date, advice, plural) { function 42 if (shared.isDeprecated(feature, date, advice, plural)) {
|
D | property-interpolation.js | 96 …if (/-/.test(property) && !shared.isDeprecated('Hyphenated property names', '2016-03-22', 'Use cam…
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | ShowDtdDiffs.java | 88 …if (isDeprecated(dtdCurrent.dtdType, name, "*")) { // SDI.isDeprecated(dtdCurrent.dtdType, name, "… in checkNames() 146 …if (isDeprecated(dtdCurrent.dtdType, elementName, name)) { // SDI.isDeprecated(dtdCurrent, element… in getAttributeNames() 159 private static boolean isDeprecated(DtdType dtdType, String elementName, String attributeName) { in isDeprecated() method in ShowDtdDiffs 161 return DtdData.getInstance(dtdType).isDeprecated(elementName, attributeName, "*"); in isDeprecated()
|
D | ChartDtdDelta.java | 224 boolean currentDeprecated = element.isDeprecated(); in checkNames() 225 …boolean lastDeprecated = dtdLast == null ? false : oldElement.isDeprecated(); // + (currentDeprec… in checkNames() 345 } else if (attribute.isDeprecated() && !attributeOld.isDeprecated()) { in getAttributeNames()
|
/external/protobuf/src/google/protobuf/compiler/objectivec/ |
D | objectivec_helpers.h | 162 bool isDeprecated = descriptor->options().deprecated(); variable 167 if (!isDeprecated && file) { 169 isDeprecated = isFileLevelDeprecation; 171 if (isDeprecated) {
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestDtdData.java | 208 if (element.isDeprecated()) { in checkEmpty() 215 if (attribute.isDeprecated()) continue; in checkEmpty() 248 if (child.equals(special) || child.isDeprecated()) { in checkEmpty() 300 boolean deprecatedNew = dtdData.isDeprecated(element.name, "*", "*"); in TestNewDtdData() 301 … boolean deprecatedOld = SUPPLEMENTAL_DATA_INFO.isDeprecated(type, element.name, "*", "*"); in TestNewDtdData() 309 deprecatedNew = dtdData.isDeprecated(element.name, attribute.name, "*"); in TestNewDtdData() 310 … deprecatedOld = SUPPLEMENTAL_DATA_INFO.isDeprecated(type, element.name, attribute.name, "*"); in TestNewDtdData() 313 deprecatedNew = dtdData.isDeprecated(element.name, attribute.name, value); in TestNewDtdData() 314 … deprecatedOld = SUPPLEMENTAL_DATA_INFO.isDeprecated(type, element.name, attribute.name, value); in TestNewDtdData()
|
D | TestPaths.java | 267 if (dtdData.isDeprecated(elementName, "*", "*")) { in check() 280 if (dtdData.isDeprecated(elementName, attributeName, "*")) { in check() 298 if (dtdData.isDeprecated(elementName, attributeName, attributeValue)) { in check() 328 … if (element.isDeprecated() || element == dtdData.ANY || element == dtdData.PCDATA) { in show() 340 if (attribute.isDeprecated() || OK_IF_MISSING.contains(attribute.name)) { in show()
|
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/ |
D | CaptureDeprecatedElements.java | 135 if (isDeprecated(matchedType)) { in process() 147 if (isApiVisible(matchedType, bodyDeclaration) && isDeprecated(bodyDeclaration)) { in trackDeprecationsRecursively() 174 private static boolean isDeprecated(BodyDeclaration bodyDeclaration) { in isDeprecated() method in CaptureDeprecatedElements.CaptureDeprecatedProcessor
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | DtdPathIterator.java | 49 if (parent.isDeprecated()) { in visit() 65 if (!e.isDeprecated()) { in visit() 77 if (attribute.isDeprecated() in visit()
|
D | DtdData.java | 297 public boolean isDeprecated() { in isDeprecated() method in DtdData.Attribute 535 public boolean isDeprecated() { in isDeprecated() method in DtdData.Element 977 boolean elementDeprecated = isDeprecated(current.name, "*", "*"); in toString() 1035 … boolean attributeDeprecated = elementDeprecated || isDeprecated(current.name, a.name, "*"); in toString() 1051 if (!attributeDeprecated && isDeprecated(current.name, a.name, s)) { in toString() 1179 public boolean isDeprecated(String elementName, String attributeName, String attributeValue) { in isDeprecated() method in DtdData 1506 public boolean isDeprecated(XPathParts pathPlain) { in isDeprecated() method in DtdData 1509 if (isDeprecated(elementName, "*", null)) { in isDeprecated() 1514 if (isDeprecated(elementName, attribute, attributeValue)) { in isDeprecated()
|
/external/turbine/javatests/com/google/turbine/processing/ |
D | TurbineElementsTest.java | 223 public void isDeprecated() { in isDeprecated() method in TurbineElementsTest 224 assertThat(turbineElements.isDeprecated(turbineElements.getTypeElement("java.lang.Object"))) in isDeprecated() 226 assertThat(turbineElements.isDeprecated(turbineElements.getTypeElement("One"))).isFalse(); in isDeprecated() 227 assertThat(turbineElements.isDeprecated(turbineElements.getTypeElement("Test"))).isTrue(); in isDeprecated()
|
/external/cldr/tools/java/org/unicode/cldr/api/ |
D | CldrDataType.java | 164 return attribute.attributeStatus == distinguished && !attribute.isDeprecated(); 175 return attribute.attributeStatus == value && !attribute.isDeprecated();
|
/external/doclava/ |
D | android-changes.txt | 14 * Modified the writeAnnotations method to take a "isDeprecated"
|
/external/llvm-project/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 576 if (D->isDeprecated() || IsCategoryNameWithDeprecatedSuffix(D)) in migrateObjCContainerDecl() 580 if (Method->isDeprecated()) in migrateObjCContainerDecl() 596 !Prop->isDeprecated()) in migrateObjCContainerDecl() 837 if (!IDecl || ObjCProtocolDecls.empty() || IDecl->isDeprecated()) in migrateProtocolConformance() 905 EnumDcl->isDeprecated()) in migrateNSEnumDecl() 925 if (TypedefDcl->isDeprecated()) in migrateNSEnumDecl() 1212 if (SetterMethod->isDeprecated() || in migrateProperty() 1283 if (CDecl->isDeprecated() || IsCategoryNameWithDeprecatedSuffix(CDecl)) in migrateAllMethodInstaceType() 1288 if (Method->isDeprecated()) in migrateAllMethodInstaceType() 1424 if (Decl->isDeprecated()) in migrateCFAnnotation() [all …]
|
/external/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 573 if (D->isDeprecated() || IsCategoryNameWithDeprecatedSuffix(D)) in migrateObjCContainerDecl() 577 if (Method->isDeprecated()) in migrateObjCContainerDecl() 593 !Prop->isDeprecated()) in migrateObjCContainerDecl() 844 if (!IDecl || ObjCProtocolDecls.empty() || IDecl->isDeprecated()) in migrateProtocolConformance() 912 EnumDcl->isDeprecated()) in migrateNSEnumDecl() 932 if (TypedefDcl->isDeprecated()) in migrateNSEnumDecl() 1219 if (SetterMethod->isDeprecated() || in migrateProperty() 1290 if (CDecl->isDeprecated() || IsCategoryNameWithDeprecatedSuffix(CDecl)) in migrateAllMethodInstaceType() 1295 if (Method->isDeprecated()) in migrateAllMethodInstaceType() 1431 if (Decl->isDeprecated()) in migrateCFAnnotation() [all …]
|