Home
last modified time | relevance | path

Searched refs:outerType (Results 1 – 3 of 3) sorted by relevance

/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/type/
DArrayTypeTest.java150 Type outerType = fieldDeclaration.getVariables().get(0).getType(); in fieldDeclarationWithArraysHasCorrectOrigins() local
151 assertEquals(ArrayType.Origin.TYPE, outerType.asArrayType().getOrigin()); in fieldDeclarationWithArraysHasCorrectOrigins()
152 …assertEquals(ArrayType.Origin.NAME, outerType.asArrayType().getComponentType().asArrayType().getOr… in fieldDeclarationWithArraysHasCorrectOrigins()
159 Type outerType = method.getType(); in methodDeclarationWithArraysHasCorrectOrigins() local
160 assertEquals(ArrayType.Origin.TYPE, outerType.asArrayType().getOrigin()); in methodDeclarationWithArraysHasCorrectOrigins()
161 …assertEquals(ArrayType.Origin.NAME, outerType.asArrayType().getComponentType().asArrayType().getOr… in methodDeclarationWithArraysHasCorrectOrigins()
175 ArrayType outerType = expr.createdType().asArrayType(); in getArrayCreationType() local
176 Type innerType = outerType.getComponentType(); in getArrayCreationType()
/external/doclava/src/com/google/doclava/
DInfoBuilder.java137 TypeInfo outerType = it.next(); in printClassInfo() local
139 System.out.print(outerType.simpleTypeName()); in printClassInfo()
144 printTypeVariables(outerType); in printClassInfo()
/external/boringssl/src/ssl/test/runner/
Dconn.go1224 if outerType := c.config.Bugs.OuterRecordType; outerType != 0 {
1225 b.data[0] = byte(outerType)