HomeSort by relevance Sort by last modified time
    Searched refs:NullType (Results 1 - 25 of 30) sorted by null

1 2

  /external/javaparser/javaparser-symbol-solver-model/src/main/java/com/github/javaparser/symbolsolver/model/typesystem/
NullType.java 26 public class NullType implements ResolvedType {
28 public static final NullType INSTANCE = new NullType();
30 private NullType() {
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/model/typesystem/
NullTypeTest.java 58 assertEquals(false, NullType.INSTANCE.isArray());
63 assertEquals(false, NullType.INSTANCE.isPrimitive());
68 assertEquals(true, NullType.INSTANCE.isNull());
73 assertEquals(true, NullType.INSTANCE.isReference());
78 assertEquals(false, NullType.INSTANCE.isReferenceType());
83 assertEquals(false, NullType.INSTANCE.isVoid());
88 assertEquals(false, NullType.INSTANCE.isTypeVariable());
93 NullType.INSTANCE.asReferenceType();
98 NullType.INSTANCE.asTypeParameter();
103 NullType.INSTANCE.asArrayType()
    [all...]
VoidTypeTest.java 114 assertEquals(false, ResolvedVoidType.INSTANCE.isAssignableBy(NullType.INSTANCE));
ReferenceTypeTest.java 187 assertEquals(true, object.isAssignableBy(NullType.INSTANCE));
188 assertEquals(true, string.isAssignableBy(NullType.INSTANCE));
189 assertEquals(true, listOfStrings.isAssignableBy(NullType.INSTANCE));
190 assertEquals(true, listOfA.isAssignableBy(NullType.INSTANCE));
    [all...]
PrimitiveTypeTest.java 324 assertEquals(false, ptu.isAssignableBy(NullType.INSTANCE));
  /external/proguard/src/proguard/classfile/attribute/preverification/
VerificationTypeFactory.java 36 static final NullType NULL_TYPE = new NullType();
81 * Creates a new NullType.
83 public static NullType createNullType()
NullType.java 32 public class NullType extends VerificationType
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/constraintformulas/
TypeSubtypeOfType.java 6 import com.github.javaparser.symbolsolver.model.typesystem.NullType;
46 if (S instanceof NullType) {
52 if (T instanceof NullType) {
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
VerificationTypeVisitor.java 42 public void visitNullType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, NullType nullType);
52 public void visitStackNullType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, NullType nullType);
62 public void visitVariablesNullType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, NullType nullType);
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
TypeNames.java 24 import javax.lang.model.type.NullType;
88 public NullName visitNull(NullType t, Void p) {
  /art/runtime/verifier/
reg_type-inl.h 206 inline const NullType* NullType::GetInstance() {
reg_type_cache-inl.h 85 inline const NullType& RegTypeCache::Null() {
86 return *NullType::GetInstance();
reg_type_cache.h 52 class NullType;
131 const NullType& Null();
reg_type.cc 55 const NullType* NullType::instance_ = nullptr;
    [all...]
reg_type.h 879 class NullType final : public RegType {
886 static const NullType* GetInstance() PURE;
889 static const NullType* CreateInstance(ObjPtr<mirror::Class> klass,
909 NullType(ObjPtr<mirror::Class> klass, const std::string_view& descriptor, uint16_t cache_id)
    [all...]
reg_type_cache.cc 61 entries_.push_back(NullType::GetInstance());
316 NullType::Destroy();
364 create_primitive_type_instance(TypeHelper<NullType>(""));
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/contexts/
CompilationUnitContextResolutionTest.java 32 import com.github.javaparser.symbolsolver.model.typesystem.NullType;
227 SymbolReference<ResolvedMethodDeclaration> ref = context.solveMethod("assertEquals", ImmutableList.of(NullType.INSTANCE, NullType.INSTANCE), false, typeSolver);
ClassOrInterfaceDeclarationContextResolutionTest.java 36 import com.github.javaparser.symbolsolver.model.typesystem.NullType;
415 SymbolReference<ResolvedMethodDeclaration> ref = context.solveMethod("foo5", ImmutableList.of(NullType.INSTANCE), false, new ReflectionTypeSolver());
488 Optional<MethodUsage> ref = context.solveMethodAsUsage("foo5", ImmutableList.of(NullType.INSTANCE), new ReflectionTypeSolver());
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionClassAdapter.java 10 import com.github.javaparser.symbolsolver.model.typesystem.NullType;
142 if (type instanceof NullType) {
ReflectionInterfaceDeclaration.java 32 import com.github.javaparser.symbolsolver.model.typesystem.NullType;
194 if (type instanceof NullType) {
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/model/typesystem/
ReferenceTypeImpl.java 88 if (other instanceof NullType) {
  /external/proguard/src/proguard/classfile/util/
SimplifiedVisitor.java 718 public void visitNullType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, NullType nullType)
720 visitAnyVerificationType(clazz, method, codeAttribute, offset, nullType);
772 public void visitStackNullType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, NullType nullType)
774 visitNullType(clazz, method, codeAttribute, offset, nullType);
827 public void visitVariablesNullType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, NullType nullType)
829 visitNullType(clazz, method, codeAttribute, offset, nullType);
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/
TypeExtractor.java 269 return NullType.INSTANCE;
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 886 public void visitNullType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, NullType nullType)
    [all...]
  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.java     [all...]

Completed in 4445 milliseconds

1 2