Home
last modified time | relevance | path

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

/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/type/
DArrayTypeTest.java147 Type outerType = fieldDeclaration.getVariables().get(0).getType(); in fieldDeclarationWithArraysHasCorrectOrigins() local
148 assertEquals(ArrayType.Origin.TYPE, outerType.asArrayType().getOrigin()); in fieldDeclarationWithArraysHasCorrectOrigins()
149 …assertEquals(ArrayType.Origin.NAME, outerType.asArrayType().getComponentType().asArrayType().getOr… in fieldDeclarationWithArraysHasCorrectOrigins()
156 Type outerType = method.getType(); in methodDeclarationWithArraysHasCorrectOrigins() local
157 assertEquals(ArrayType.Origin.TYPE, outerType.asArrayType().getOrigin()); in methodDeclarationWithArraysHasCorrectOrigins()
158 …assertEquals(ArrayType.Origin.NAME, outerType.asArrayType().getComponentType().asArrayType().getOr… in methodDeclarationWithArraysHasCorrectOrigins()
172 ArrayType outerType = expr.createdType().asArrayType(); in getArrayCreationType() local
173 Type innerType = outerType.getComponentType(); in getArrayCreationType()
/external/llvm-project/mlir/lib/Target/LLVMIR/
DConvertFromLLVMIR.cpp286 auto outerType = getStdTypeForAttr(processType(value->getType())) in getConstantAsAttr() local
288 if (!outerType) in getConstantAsAttr()
303 return DenseElementsAttr::get(outerType, values); in getConstantAsAttr()
/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.go1261 if outerType := c.config.Bugs.OuterRecordType; outerType != 0 {
1262 b.data[0] = byte(outerType)