Searched refs:getType (Results 1 - 25 of 1945) 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.cc22 CHECK(getType().isSignedIntegerTy());
27 sizeof(SIntMax) * 8 - getType().getIntegerBitWidth();
30 if (getType().getIntegerBitWidth() == 64)
33 if (getType().getIntegerBitWidth() == 128)
36 if (getType().getIntegerBitWidth() == 128)
43 CHECK(getType().isUnsignedIntegerTy());
46 if (getType().getIntegerBitWidth() == 64)
49 if (getType().getIntegerBitWidth() == 128)
52 if (getType().getIntegerBitWidth() == 128)
59 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/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/smack/src/org/jivesoftware/smackx/
H A DForm.java138 if (!FormField.TYPE_TEXT_MULTI.equals(field.getType())
139 && !FormField.TYPE_TEXT_PRIVATE.equals(field.getType())
140 && !FormField.TYPE_TEXT_SINGLE.equals(field.getType())
141 && !FormField.TYPE_JID_SINGLE.equals(field.getType())
142 && !FormField.TYPE_HIDDEN.equals(field.getType())) {
164 if (!FormField.TYPE_TEXT_MULTI.equals(field.getType())
165 && !FormField.TYPE_TEXT_PRIVATE.equals(field.getType())
166 && !FormField.TYPE_TEXT_SINGLE.equals(field.getType())) {
188 if (!FormField.TYPE_TEXT_MULTI.equals(field.getType())
189 && !FormField.TYPE_TEXT_PRIVATE.equals(field.getType())
435 public String getType() { method in class:Form
[all...]
/external/chromium_org/third_party/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/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/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();
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DOutputTest.java48 public int getType() { method in class:OutputTest
49 return token.getType();
H A DReturnTest.java45 public int getType() { method in class:ReturnTest
46 return retval.getType();

Completed in 3582 milliseconds

1234567891011>>