Home
last modified time | relevance | path

Searched refs:NullType (Results 1 – 25 of 36) sorted by relevance

12

/external/mesa3d/include/CL/
Dcl.hpp7398 class NullType {}; class
7410 struct SetArg<index, NullType>
7412 static void set (Kernel, NullType) in set()
7448 T1 t1 = NullType(), in operator ()()
7449 T2 t2 = NullType(), in operator ()()
7450 T3 t3 = NullType(), in operator ()()
7451 T4 t4 = NullType(), in operator ()()
7452 T5 t5 = NullType(), in operator ()()
7453 T6 t6 = NullType(), in operator ()()
7454 T7 t7 = NullType(), in operator ()()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/model/typesystem/
DNullTypeTest.java59 assertEquals(false, NullType.INSTANCE.isArray()); in testIsArray()
64 assertEquals(false, NullType.INSTANCE.isPrimitive()); in testIsPrimitive()
69 assertEquals(true, NullType.INSTANCE.isNull()); in testIsNull()
74 assertEquals(true, NullType.INSTANCE.isReference()); in testIsReference()
79 assertEquals(false, NullType.INSTANCE.isReferenceType()); in testIsReferenceType()
84 assertEquals(false, NullType.INSTANCE.isVoid()); in testIsVoid()
89 assertEquals(false, NullType.INSTANCE.isTypeVariable()); in testIsTypeVariable()
94 … assertThrows(UnsupportedOperationException.class, () -> NullType.INSTANCE.asReferenceType()); in testAsReferenceTypeUsage()
99 … assertThrows(UnsupportedOperationException.class, () -> NullType.INSTANCE.asTypeParameter()); in testAsTypeParameter()
104 assertThrows(UnsupportedOperationException.class, () -> NullType.INSTANCE.asArrayType()); in testAsArrayTypeUsage()
[all …]
DVoidTypeTest.java115 assertEquals(false, ResolvedVoidType.INSTANCE.isAssignableBy(NullType.INSTANCE)); in testIsAssignableBy()
DReferenceTypeTest.java195 assertEquals(true, object.isAssignableBy(NullType.INSTANCE)); in testIsAssignableBySimple()
196 assertEquals(true, string.isAssignableBy(NullType.INSTANCE)); in testIsAssignableBySimple()
197 assertEquals(true, listOfStrings.isAssignableBy(NullType.INSTANCE)); in testIsAssignableBySimple()
198 assertEquals(true, listOfA.isAssignableBy(NullType.INSTANCE)); in testIsAssignableBySimple()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-model/com/github/javaparser/symbolsolver/model/typesystem/
DNullType.java24 public class NullType implements Type { class
26 public static final NullType INSTANCE = new NullType();
28 private NullType() { in NullType() method in NullType
/external/javaparser/javaparser-symbol-solver-model/src/main/java/com/github/javaparser/symbolsolver/model/typesystem/
DNullType.java26 public class NullType implements ResolvedType { class
28 public static final NullType INSTANCE = new NullType();
30 private NullType() { in NullType() method in NullType
/external/proguard/src/proguard/classfile/attribute/preverification/
DVerificationTypeFactory.java36 static final NullType NULL_TYPE = new NullType();
83 public static NullType createNullType() in createNullType()
DNullType.java32 public class NullType extends VerificationType class
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/constraintformulas/
DTypeSubtypeOfType.java6 import com.github.javaparser.symbolsolver.model.typesystem.NullType;
46 if (S instanceof NullType) { in reduce()
52 if (T instanceof NullType) { in reduce()
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
DVerificationTypeVisitor.java42 … Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, NullType null… in visitNullType()
52 …azz, Method method, CodeAttribute codeAttribute, int offset, int index, NullType null… in visitStackNullType()
62 …azz, Method method, CodeAttribute codeAttribute, int offset, int index, NullType null… in visitVariablesNullType()
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/contexts/
DCompilationUnitContextResolutionTest.java32 import com.github.javaparser.symbolsolver.model.typesystem.NullType;
233 …on> ref = context.solveMethod("assertEquals", ImmutableList.of(NullType.INSTANCE, NullType.INSTANC… in solveMethodStaticallyImportedWithoutAsterisk()
DClassOrInterfaceDeclarationContextResolutionTest.java35 import com.github.javaparser.symbolsolver.model.typesystem.NullType;
413 …edMethodDeclaration> ref = context.solveMethod("foo5", ImmutableList.of(NullType.INSTANCE), false); in solveMethodWithAmbiguosCall()
493 …Optional<MethodUsage> ref = context.solveMethodAsUsage("foo5", ImmutableList.of(NullType.INSTANCE)… in solveMethodAsUsageWithAmbiguosCall()
/external/junit-params/
DREADME.google10 javax.lang.model.type.NullType by replacing
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/reflectionmodel/
DReflectionClassAdapter.java8 import com.github.javaparser.symbolsolver.model.typesystem.NullType;
142 if (type instanceof NullType) { in isAssignableBy()
DReflectionInterfaceDeclaration.java29 import com.github.javaparser.symbolsolver.model.typesystem.NullType;
192 if (type instanceof NullType) { in isAssignableBy()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
DReflectionClassAdapter.java10 import com.github.javaparser.symbolsolver.model.typesystem.NullType;
142 if (type instanceof NullType) { in isAssignableBy()
DReflectionInterfaceDeclaration.java35 import com.github.javaparser.symbolsolver.model.typesystem.NullType;
199 if (type instanceof NullType) { in isAssignableBy()
/external/dagger2/java/dagger/internal/codegen/langmodel/
DAccessibility.java36 import javax.lang.model.type.NullType;
128 public Boolean visitNull(NullType type, Void p) { in visitNull()
DDaggerTypes.java42 import javax.lang.model.type.NullType;
324 public NullType getNullType() {
DDaggerElements.java65 import javax.lang.model.type.NullType;
322 public String visitNull(NullType nullType, Void v) {
/external/auto/common/src/main/java/com/google/auto/common/
DMoreTypes.java49 import javax.lang.model.type.NullType;
683 public static NullType asNullType(TypeMirror maybeNullType) { in asNullType()
687 private static final class NullTypeVisitor extends CastingTypeVisitor<NullType> {
695 public NullType visitNull(NullType type, Void ignore) { in visitNull()
/external/turbine/java/com/google/turbine/processing/
DTurbineTypeMirror.java54 import javax.lang.model.type.NullType;
656 public static class TurbineNullType extends TurbineTypeMirror implements NullType {
674 return obj instanceof NullType; in equals()
DModelFactory.java81 import javax.lang.model.type.NullType;
216 public NullType nullType() { in nullType()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/model/typesystem/
DReferenceTypeImpl.java79 if (other instanceof NullType) { in isAssignableBy()
/external/javassist/src/main/javassist/bytecode/stackmap/
DTypeData.java320 return new NullType(); in getArrayType()
908 public static class NullType extends ClassName { class in TypeData
909 public NullType() { in NullType() method in TypeData.NullType

12