Home
last modified time | relevance | path

Searched refs:desugared (Results 1 – 4 of 4) sorted by relevance

/external/desugar/test/java/com/google/devtools/build/android/desugar/
DTryWithResourcesRewriterTest.java200 DesugaredThrowableMethodCallCounter orig, DesugaredThrowableMethodCallCounter desugared) { in assertDesugaringBehavior() argument
201 assertThat(desugared.countThrowableGetSuppressed()).isEqualTo(orig.countExtGetSuppressed()); in assertDesugaringBehavior()
202 assertThat(desugared.countThrowableAddSuppressed()).isEqualTo(orig.countExtAddSuppressed()); in assertDesugaringBehavior()
203 assertThat(desugared.countThrowablePrintStackTrace()).isEqualTo(orig.countExtPrintStackTrace()); in assertDesugaringBehavior()
204 assertThat(desugared.countThrowablePrintStackTracePrintStream()) in assertDesugaringBehavior()
206 assertThat(desugared.countThrowablePrintStackTracePrintWriter()) in assertDesugaringBehavior()
209 assertThat(orig.countThrowableGetSuppressed()).isEqualTo(desugared.countExtGetSuppressed()); in assertDesugaringBehavior()
211 assertThat(orig.countThrowableAddSuppressed()).isAtMost(desugared.countExtAddSuppressed()); in assertDesugaringBehavior()
212 assertThat(orig.countThrowablePrintStackTrace()).isEqualTo(desugared.countExtPrintStackTrace()); in assertDesugaringBehavior()
214 .isEqualTo(desugared.countExtPrintStackTracePrintStream()); in assertDesugaringBehavior()
[all …]
/external/tensorflow/tensorflow/python/autograph/
DLIMITATIONS.md18 … all iterators supported, but we plan to support everything that can be desugared, such as `enumer…
/external/clang/lib/Sema/
DSemaType.cpp5833 QualType desugared = type; in checkNullabilityTypeSpecifier() local
5834 while (auto attributed = dyn_cast<AttributedType>(desugared.getTypePtr())) { in checkNullabilityTypeSpecifier()
5853 desugared = attributed->getModifiedType(); in checkNullabilityTypeSpecifier()
5860 if (auto existingNullability = desugared->getNullability(Context)) { in checkNullabilityTypeSpecifier()
5867 if (auto typedefType = desugared->getAs<TypedefType>()) { in checkNullabilityTypeSpecifier()
5884 if (!desugared->canHaveNullability()) { in checkNullabilityTypeSpecifier()
5894 QualType pointeeType = desugared->getPointeeType(); in checkNullabilityTypeSpecifier()
/external/clang/lib/AST/
DType.cpp3491 QualType desugared = type.getSingleStepDesugaredType(context); in getNullability() local
3492 if (desugared.getTypePtr() == type.getTypePtr()) in getNullability()
3495 type = desugared; in getNullability()