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

1234567891011>>

/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DClassInfo.java26 abstract public Type getType(); method in class:ClassInfo
36 return getType().equals(((ClassInfo)o).getType());
40 return getType().hashCode();
45 return getType().getClassName();
/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.java44 return hashCode*31 + getType().hashCode();
53 getType().equals(other.getType());
65 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/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DTypedConstant.java37 return getType().getBasicType();
42 return getType().getBasicFrameType();
/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/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DTypeBearer.java31 public Type getType(); method in interface:TypeBearer
H A DTypeList.java49 public Type getType(int n); method in interface:TypeList
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DAmbientLight.java22 public Type getType() { method in class:AmbientLight
/external/parameter-framework/parameter/
H A DComponent.h44 virtual Type getType() const function in class:CComponent
H A DParameterBlock.h45 virtual Type getType() const 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/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/
H A DDexBackedTypeReference.java49 @Nonnull public String getType() { method in class:DexBackedTypeReference
50 return dexFile.getType(typeIndex);
H A DDexBackedFieldReference.java52 return dexFile.getType(dexFile.readUshort(fieldIdItemOffset + FieldIdItem.CLASS_OFFSET));
63 public String getType() { method in class:DexBackedFieldReference
64 return dexFile.getType(dexFile.readUshort(fieldIdItemOffset + FieldIdItem.TYPE_OFFSET));
/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/skia/src/animator/
H A DSkDisplayable.h68 virtual SkDisplayTypes getType() const;
71 SkDisplayTypes type = getType();
73 bool isApply() const { return getType() == SkType_Apply; }
74 bool isColor() const { return getType() == SkType_Color; }
76 bool isGroup() const { return getType() == SkType_Group ||
77 getType() == SkType_Save || getType() == SkType_DrawTo ||
78 getType() == SkType_SaveLayer; }
79 bool isMatrix() const { return getType() == SkType_Matrix; }
80 virtual bool isPaint() const { return 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/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...]
/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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderFieldReference.java54 return definingClass.getType();
61 @Nonnull @Override public String getType() { method in class:BuilderFieldReference
62 return fieldType.getType();

Completed in 1202 milliseconds

1234567891011>>