Home
last modified time | relevance | path

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

/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DDeprecatedFieldTest.java57 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
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
DDeprecatedFieldTest.java64 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
/third_party/protobuf/src/google/protobuf/compiler/objectivec/
Dobjectivec_helpers.h167 bool isDeprecated = descriptor->options().deprecated(); variable
172 if (!isDeprecated && file) {
174 isDeprecated = isFileLevelDeprecation;
176 if (isDeprecated) {
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DLocaleValidityChecker.java173 if (!allowsDeprecated && KeyTypeData.isDeprecated(key)) { in isValidU()
252 if (!allowsDeprecated && KeyTypeData.isDeprecated(key, subtag)) { in isValidU()
DKeyTypeData.java682 public static boolean isDeprecated(String key) {
686 public static boolean isDeprecated(String key, String type) {
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/
DLocaleValidityChecker.java178 if (!allowsDeprecated && KeyTypeData.isDeprecated(key)) { in isValidU()
257 if (!allowsDeprecated && KeyTypeData.isDeprecated(key, subtag)) { in isValidU()
DKeyTypeData.java678 public static boolean isDeprecated(String key) {
682 public static boolean isDeprecated(String key, String type) {
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DTestLocaleValidity.java197 if (KeyTypeData.isDeprecated(key, type)) { in testBasic()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DTestLocaleValidity.java196 if (KeyTypeData.isDeprecated(key, type)) { in testBasic()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/
DLanguageTag.java433 public boolean isDeprecated() { in isDeprecated() method in LanguageTag
/third_party/node/deps/v8/tools/system-analyzer/view/map-panel/
Dmap-transitions.mjs104 if (map.isDeprecated()) transition.classList.add('deprecated');
/third_party/node/deps/v8/tools/system-analyzer/log/
Dmap.mjs95 isDeprecated() { method in MapLogEntry
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DDeprecatedAPIChecker.java272 return api.isDeprecated() || api.isInternal() || api.isObsolete(); in isAPIDeprecated()
DAPIInfo.java118 public boolean isDeprecated() { return getVal(STA) == STA_DEPRECATED; } in isDeprecated() method in APIInfo
/third_party/typescript/src/services/
Dcompletions.ts1436 …const sortText = (isDeprecated(symbol, typeChecker) ? SortText.Deprecated(originalSortText) : orig…
4554 function isDeprecated(symbol: Symbol, checker: TypeChecker) { function