Searched refs:getType (Results 1 - 25 of 3012) sorted by relevance

1234567891011>>

/external/conscrypt/android-stub/src/main/java/javax/net/ssl/
H A DSNIServerName.java27 public final int getType() { method in class:SNIServerName
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/model/typesystem/
H A DLazyType.java18 private ResolvedType getType() { method in class:LazyType
27 return getType().isArray();
32 return getType().arrayLevel();
37 return getType().isPrimitive();
42 return getType().isNull();
47 return getType().isReference();
52 return getType().isReferenceType();
57 return getType().isVoid();
62 return getType().isTypeVariable();
67 return getType()
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
H A DBaseTypeReference.java41 return getType().hashCode();
48 return getType().equals(((TypeReference)o).getType());
51 return getType().equals(o.toString());
59 return getType().compareTo(o.toString());
62 @Override public int length() { return getType().length(); }
63 @Override public char charAt(int index) { return getType().charAt(index); }
64 @Override public CharSequence subSequence(int start, int end) { return getType().subSequence(start, end); }
65 @Override @Nonnull public String toString() { return getType(); }
H A DBaseFieldReference.java45 return hashCode*31 + getType().hashCode();
54 getType().equals(other.getType());
66 return getType().compareTo(o.getType());
/external/compiler-rt/lib/ubsan/
H A Dubsan_value.cc24 CHECK(getType().isSignedIntegerTy());
29 sizeof(SIntMax) * 8 - getType().getIntegerBitWidth();
32 if (getType().getIntegerBitWidth() == 64)
35 if (getType().getIntegerBitWidth() == 128)
38 if (getType().getIntegerBitWidth() == 128)
45 CHECK(getType().isUnsignedIntegerTy());
48 if (getType().getIntegerBitWidth() == 64)
51 if (getType().getIntegerBitWidth() == 128)
54 if (getType().getIntegerBitWidth() == 128)
61 if (getType()
[all...]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/declarations/
H A DResolvedParameterDeclaration.java52 return getType().asArrayType().getComponentType().describe() + "...";
54 return getType().describe();
H A DResolvedValueDeclaration.java37 ResolvedType getType(); method in interface:ResolvedValueDeclaration
/external/annotation-tools/asmx/test/conform/org/objectweb/asm/tree/
H A DUnitTest.java13 assertEquals(in.getType(), AbstractInsnNode.INSN);
18 assertEquals(iin.getType(), AbstractInsnNode.INT_INSN);
23 assertEquals(vn.getType(), AbstractInsnNode.VAR_INSN);
28 assertEquals(tin.getType(), AbstractInsnNode.TYPE_INSN);
33 assertEquals(fn.getType(), AbstractInsnNode.FIELD_INSN);
41 assertEquals(mn.getType(), AbstractInsnNode.METHOD_INSN);
46 assertEquals(jn.getType(), AbstractInsnNode.JUMP_INSN);
49 assertEquals(ln.getType(), AbstractInsnNode.LABEL);
52 assertEquals(iincn.getType(), AbstractInsnNode.IINC_INSN);
55 assertEquals(ldcn.getType(), AbstractInsnNod
[all...]
/external/javassist/src/main/javassist/bytecode/annotation/
H A DEnumMemberValue.java62 return getType(cl).getField(getValue()).get(null);
65 throw new ClassNotFoundException(getType() + "." + getValue());
68 throw new ClassNotFoundException(getType() + "." + getValue());
72 Class getType(ClassLoader cl) throws ClassNotFoundException { method in class:EnumMemberValue
73 return loadClass(cl, getType());
81 public String getType() { method in class:EnumMemberValue
109 return getType() + "." + getValue();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
H A DBaseAnnotation.java44 hashCode = hashCode*31 + getType().hashCode();
53 getType().equals(other.getType()) &&
63 res = getType().compareTo(o.getType());
71 return annotation1.getType().compareTo(annotation2.getType());
/external/parameter-framework/upstream/parameter/
H A DComponent.h45 virtual Type getType() const { return EComponent; } function in class:CComponent
H A DParameterBlock.h45 virtual Type getType() const { return EParameterBlock; } function in class:CParameterBlock
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
H A DBasicAnnotation.java17 @Nonnull String getType(); method in interface:BasicAnnotation
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/debug/
H A DLocalInfo.java38 @Nullable String getType(); method in interface:LocalInfo
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXNull.java48 public int getType() method in class:XNull
128 return obj2.getType() == CLASS_NULL;
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/comparators/
H A DParameterComparator.java15 int compareType = new ClassComparator().compare(o1.getType(), o2.getType());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/util/
H A DDexAnnotator.java91 switch (mapItem.getType()) {
93 annotators.put(mapItem.getType(), HeaderItem.makeAnnotator(this, mapItem));
96 annotators.put(mapItem.getType(), StringIdItem.makeAnnotator(this, mapItem));
99 annotators.put(mapItem.getType(), TypeIdItem.makeAnnotator(this, mapItem));
102 annotators.put(mapItem.getType(), ProtoIdItem.makeAnnotator(this, mapItem));
105 annotators.put(mapItem.getType(), FieldIdItem.makeAnnotator(this, mapItem));
108 annotators.put(mapItem.getType(), MethodIdItem.makeAnnotator(this, mapItem));
111 annotators.put(mapItem.getType(), ClassDefItem.makeAnnotator(this, mapItem));
114 annotators.put(mapItem.getType(), MapItem.makeAnnotator(this, mapItem));
117 annotators.put(mapItem.getType(), TypeListIte
[all...]
/external/annotation-tools/asmx/test/conform/org/objectweb/asm/
H A DUnitTest.java49 assertEquals(Type.getType(Integer.TYPE), Type.INT_TYPE);
50 assertEquals(Type.getType(Void.TYPE), Type.VOID_TYPE);
51 assertEquals(Type.getType(Boolean.TYPE), Type.BOOLEAN_TYPE);
52 assertEquals(Type.getType(Byte.TYPE), Type.BYTE_TYPE);
53 assertEquals(Type.getType(Character.TYPE), Type.CHAR_TYPE);
54 assertEquals(Type.getType(Short.TYPE), Type.SHORT_TYPE);
55 assertEquals(Type.getType(Double.TYPE), Type.DOUBLE_TYPE);
56 assertEquals(Type.getType(Float.TYPE), Type.FLOAT_TYPE);
57 assertEquals(Type.getType(Long.TYPE), Type.LONG_TYPE);
58 String s1 = Type.getType(UnitTes
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp30 return ConstantInt::get(Val->getType(), 0);
83 PointerType *PTy = cast<PointerType>(CI.getType());
123 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale);
129 Value *Off = ConstantInt::get(AI.getArraySize()->getType(),
144 Value *NewCast = AllocaBuilder.CreateBitCast(New, AI.getType(), "tmpcast");
192 if (I->getOperand(0)->getType() == Ty)
237 Type *SrcTy = CI->getOperand(0)->getType(); // A from above
238 Type *MidTy = CI->getType(); // B from above
266 if (V->getType() == Ty || isa<Constant>(V)) return false;
291 isEliminableCastPair(CSrc, CI.getOpcode(), CI.getType(), T
[all...]
/external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
H A DBasicInterpreter.java82 return newValue(Type.getType("Lnull;"));
115 return newValue(Type.getType("Ljava/lang/Class;"));
117 return newValue(Type.getType(cst.getClass()));
122 return newValue(Type.getType(((FieldInsnNode) insn).desc));
124 return newValue(Type.getType("L" + ((TypeInsnNode) insn).desc
181 return newValue(Type.getType(((FieldInsnNode) insn).desc));
185 return newValue(Type.getType("[Z"));
187 return newValue(Type.getType("[C"));
189 return newValue(Type.getType("[B"));
191 return newValue(Type.getType("[
[all...]
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
H A DAnnotationTypeFilter.java61 if (accepted(annotation.getType(clazz)))
70 if (accepted(annotation.getType(clazz)))
79 if (accepted(annotation.getType(clazz)))
88 if (accepted(annotation.getType(clazz)))
97 if (accepted(annotation.getType(clazz)))
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
H A DBaseAnnotationEncodedValue.java46 int hashCode = getType().hashCode();
54 return getType().equals(other.getType()) &&
65 res = getType().compareTo(other.getType());
/external/deqp/framework/randomshaders/
H A DrsgVariableValue.cpp35 DE_ASSERT(a.getType() == b.getType());
37 if (a.getType().isStruct())
39 int numMembers = (int)a.getType().getMembers().size();
46 else if (a.getType().isArray())
48 int numElements = (int)a.getType().getNumElements();
57 int numElements = (int)a.getType().getNumElements();
58 switch (a.getType().getBaseType())
184 : m_type (other.getType())
185 , m_min (other.getType()
[all...]
/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp34 ParamTys.push_back(I->getType());
42 switch((int)Fn.arg_begin()->getType()->getTypeID()) {
55 Fn.arg_begin()->getType());
74 ParamTys.push_back((*I)->getType());
167 assert(V->getType()->isIntegerTy() && "Can't bswap a non-integer type!");
169 unsigned BitSize = V->getType()->getPrimitiveSizeInBits();
176 Value *Tmp1 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8),
178 Value *Tmp2 = Builder.CreateLShr(V, ConstantInt::get(V->getType(), 8),
184 Value *Tmp4 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 24),
186 Value *Tmp3 = Builder.CreateShl(V, ConstantInt::get(V->getType(),
[all...]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestInterpretedLexing.java87 assertEquals(result.getType(), Atype);
90 assertEquals(result.getType(), Atype);
101 assertEquals(result.getType(), Atype);
112 assertEquals(result.getType(), INTtype);
115 assertEquals(result.getType(), INTtype);
127 assertEquals(result.getType(), Atype);
130 assertEquals(result.getType(), Atype);
133 assertEquals(result.getType(), Atype);
136 assertEquals(result.getType(), Atype);
139 assertEquals(result.getType(), Atyp
[all...]

Completed in 872 milliseconds

1234567891011>>