Home
last modified time | relevance | path

Searched refs:getType (Results 1 – 25 of 3529) sorted by relevance

12345678910>>...142

/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/
Dcom_github_javaparser_symbolsolver_model_typesystem_LazyType.txt2 …Line 25) getType().isArray() ==> com.github.javaparser.symbolsolver.model.typesystem.Type.isArray()
3 Line 25) getType() ==> com.github.javaparser.symbolsolver.model.typesystem.LazyType.getType()
4 …Line 30) getType().arrayLevel() ==> com.github.javaparser.symbolsolver.model.typesystem.Type.array…
5 Line 30) getType() ==> com.github.javaparser.symbolsolver.model.typesystem.LazyType.getType()
6 …Line 35) getType().isPrimitive() ==> com.github.javaparser.symbolsolver.model.typesystem.Type.isPr…
7 Line 35) getType() ==> com.github.javaparser.symbolsolver.model.typesystem.LazyType.getType()
8 Line 40) getType().isNull() ==> com.github.javaparser.symbolsolver.model.typesystem.Type.isNull()
9 Line 40) getType() ==> com.github.javaparser.symbolsolver.model.typesystem.LazyType.getType()
10 …Line 45) getType().isReference() ==> com.github.javaparser.symbolsolver.model.typesystem.Type.isRe…
11 Line 45) getType() ==> com.github.javaparser.symbolsolver.model.typesystem.LazyType.getType()
[all …]
Dcom_github_javaparser_symbolsolver_javaparsermodel_declarations_JavaParserSymbolDeclaration.txt13 …de.get(typeSolver).getType(getParentNode(wrappedNode)) ==> com.github.javaparser.symbolsolver.java…
18 Line 136) parameter.getType() ==> com.github.javaparser.ast.body.Parameter.getType()
19 …e.byName(((com.github.javaparser.ast.type.PrimitiveType) parameter.getType()).getType().name()) ==…
20 …Line 137) ((com.github.javaparser.ast.type.PrimitiveType) parameter.getType()).getType().name() ==…
21 …ser.ast.type.PrimitiveType) parameter.getType()).getType() ==> com.github.javaparser.ast.type.Prim…
22 Line 137) parameter.getType() ==> com.github.javaparser.ast.body.Parameter.getType()
23 …Line 139) JavaParserFacade.get(typeSolver).convertToUsage(parameter.getType(), wrappedNode) ==> co…
25 Line 139) parameter.getType() ==> com.github.javaparser.ast.body.Parameter.getType()
28 …Line 150) JavaParserFacade.get(typeSolver).convert(variableDeclarator.getType(), JavaParserFactory…
30 …Line 150) variableDeclarator.getType() ==> com.github.javaparser.ast.body.VariableDeclarator.getTy…
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/GlobalISel/
DMachineIRBuilder.cpp154 assert(getMRI()->getType(Res).isPointer() && "invalid operand type"); in buildFrameIndex()
162 assert(getMRI()->getType(Res).isPointer() && "invalid operand type"); in buildGlobalValue()
163 assert(getMRI()->getType(Res).getAddressSpace() == in buildGlobalValue()
164 GV->getType()->getAddressSpace() && in buildGlobalValue()
174 assert((getMRI()->getType(Res).isScalar() || in validateBinaryOp()
175 getMRI()->getType(Res).isVector()) && in validateBinaryOp()
177 assert(getMRI()->getType(Res) == getMRI()->getType(Op0) && in validateBinaryOp()
178 getMRI()->getType(Res) == getMRI()->getType(Op1) && "type mismatch"); in validateBinaryOp()
183 assert(getMRI()->getType(Res).isPointer() && in buildGEP()
184 getMRI()->getType(Res) == getMRI()->getType(Op0) && "type mismatch"); in buildGEP()
[all …]
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/model/typesystem/
DLazyType.java18 private ResolvedType getType() { in getType() method in LazyType
27 return getType().isArray(); in isArray()
32 return getType().arrayLevel(); in arrayLevel()
37 return getType().isPrimitive(); in isPrimitive()
42 return getType().isNull(); in isNull()
47 return getType().isReference(); in isReference()
52 return getType().isReferenceType(); in isReferenceType()
57 return getType().isVoid(); in isVoid()
62 return getType().isTypeVariable(); in isTypeVariable()
67 return getType().isWildcard(); in isWildcard()
[all …]
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineCasts.cpp30 return ConstantInt::get(Val->getType(), 0); in DecomposeSimpleLinearExpr()
83 PointerType *PTy = cast<PointerType>(CI.getType()); in PromoteCastOfAllocation()
123 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale); in PromoteCastOfAllocation()
129 Value *Off = ConstantInt::get(AI.getArraySize()->getType(), in PromoteCastOfAllocation()
144 Value *NewCast = AllocaBuilder.CreateBitCast(New, AI.getType(), "tmpcast"); in PromoteCastOfAllocation()
192 if (I->getOperand(0)->getType() == Ty) in EvaluateInDifferentType()
237 Type *SrcTy = CI->getOperand(0)->getType(); // A from above in isEliminableCastPair()
238 Type *MidTy = CI->getType(); // B from above in isEliminableCastPair()
266 if (V->getType() == Ty || isa<Constant>(V)) return false; in ShouldOptimizeCast()
291 isEliminableCastPair(CSrc, CI.getOpcode(), CI.getType(), TD)) { in commonCastTransforms()
[all …]
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp33 return ConstantInt::get(Val->getType(), 0); in decomposeSimpleLinearExpr()
83 PointerType *PTy = cast<PointerType>(CI.getType()); in PromoteCastOfAllocation()
129 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale); in PromoteCastOfAllocation()
135 Value *Off = ConstantInt::get(AI.getArraySize()->getType(), in PromoteCastOfAllocation()
151 Value *NewCast = AllocaBuilder.CreateBitCast(New, AI.getType(), "tmpcast"); in PromoteCastOfAllocation()
196 if (I->getOperand(0)->getType() == Ty) in EvaluateInDifferentType()
238 Type *SrcTy = CI->getOperand(0)->getType(); // A from above in isEliminableCastPair()
239 Type *MidTy = CI->getType(); // B from above in isEliminableCastPair()
270 if (V->getType() == Ty || isa<Constant>(V)) return false; in ShouldOptimizeCast()
295 isEliminableCastPair(CSrc, CI.getOpcode(), CI.getType(), DL)) { in commonCastTransforms()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DIntrinsicLowering.cpp34 ParamTys.push_back(I->getType()); in EnsureFunctionExists()
42 switch((int)Fn.arg_begin()->getType()->getTypeID()) { in EnsureFPIntrinsicsExist()
55 Fn.arg_begin()->getType()); in EnsureFPIntrinsicsExist()
74 ParamTys.push_back((*I)->getType()); in ReplaceCallWith()
166 assert(V->getType()->isIntOrIntVectorTy() && "Can't bswap a non-integer type!"); in LowerBSWAP()
168 unsigned BitSize = V->getType()->getScalarSizeInBits(); in LowerBSWAP()
175 Value *Tmp1 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8), in LowerBSWAP()
177 Value *Tmp2 = Builder.CreateLShr(V, ConstantInt::get(V->getType(), 8), in LowerBSWAP()
183 Value *Tmp4 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 24), in LowerBSWAP()
185 Value *Tmp3 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8), in LowerBSWAP()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/util/
DDexAnnotator.java91 switch (mapItem.getType()) { in DexAnnotator()
93 annotators.put(mapItem.getType(), HeaderItem.makeAnnotator(this, mapItem)); in DexAnnotator()
96 annotators.put(mapItem.getType(), StringIdItem.makeAnnotator(this, mapItem)); in DexAnnotator()
99 annotators.put(mapItem.getType(), TypeIdItem.makeAnnotator(this, mapItem)); in DexAnnotator()
102 annotators.put(mapItem.getType(), ProtoIdItem.makeAnnotator(this, mapItem)); in DexAnnotator()
105 annotators.put(mapItem.getType(), FieldIdItem.makeAnnotator(this, mapItem)); in DexAnnotator()
108 annotators.put(mapItem.getType(), MethodIdItem.makeAnnotator(this, mapItem)); in DexAnnotator()
111 annotators.put(mapItem.getType(), ClassDefItem.makeAnnotator(this, mapItem)); in DexAnnotator()
114 annotators.put(mapItem.getType(), MapItem.makeAnnotator(this, mapItem)); in DexAnnotator()
117 annotators.put(mapItem.getType(), TypeListItem.makeAnnotator(this, mapItem)); in DexAnnotator()
[all …]
/external/compiler-rt/lib/ubsan/
Dubsan_value.cc24 CHECK(getType().isSignedIntegerTy()); in getSIntValue()
29 sizeof(SIntMax) * 8 - getType().getIntegerBitWidth(); in getSIntValue()
32 if (getType().getIntegerBitWidth() == 64) in getSIntValue()
35 if (getType().getIntegerBitWidth() == 128) in getSIntValue()
38 if (getType().getIntegerBitWidth() == 128) in getSIntValue()
45 CHECK(getType().isUnsignedIntegerTy()); in getUIntValue()
48 if (getType().getIntegerBitWidth() == 64) in getUIntValue()
51 if (getType().getIntegerBitWidth() == 128) in getUIntValue()
54 if (getType().getIntegerBitWidth() == 128) in getUIntValue()
61 if (getType().isUnsignedIntegerTy()) in getPositiveIntValue()
[all …]
/external/llvm/lib/CodeGen/
DIntrinsicLowering.cpp34 ParamTys.push_back(I->getType()); in EnsureFunctionExists()
42 switch((int)Fn.arg_begin()->getType()->getTypeID()) { in EnsureFPIntrinsicsExist()
55 Fn.arg_begin()->getType()); in EnsureFPIntrinsicsExist()
74 ParamTys.push_back((*I)->getType()); in ReplaceCallWith()
167 assert(V->getType()->isIntegerTy() && "Can't bswap a non-integer type!"); in LowerBSWAP()
169 unsigned BitSize = V->getType()->getPrimitiveSizeInBits(); in LowerBSWAP()
176 Value *Tmp1 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8), in LowerBSWAP()
178 Value *Tmp2 = Builder.CreateLShr(V, ConstantInt::get(V->getType(), 8), in LowerBSWAP()
184 Value *Tmp4 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 24), in LowerBSWAP()
186 Value *Tmp3 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8), in LowerBSWAP()
[all …]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DIntrinsicLowering.cpp34 ParamTys.push_back(I->getType()); in EnsureFunctionExists()
42 switch((int)Fn->arg_begin()->getType()->getTypeID()) { in EnsureFPIntrinsicsExist()
55 Fn->arg_begin()->getType()); in EnsureFPIntrinsicsExist()
74 ParamTys.push_back((*I)->getType()); in ReplaceCallWith()
167 assert(V->getType()->isIntegerTy() && "Can't bswap a non-integer type!"); in LowerBSWAP()
169 unsigned BitSize = V->getType()->getPrimitiveSizeInBits(); in LowerBSWAP()
176 Value *Tmp1 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8), in LowerBSWAP()
178 Value *Tmp2 = Builder.CreateLShr(V, ConstantInt::get(V->getType(), 8), in LowerBSWAP()
184 Value *Tmp4 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 24), in LowerBSWAP()
186 Value *Tmp3 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8), in LowerBSWAP()
[all …]
/external/guava/guava-tests/test/com/google/common/reflect/
DTypeTokenResolutionTest.java57 return new TypeToken<A[]>(getClass()) {}.getType(); in getArrayTypeA()
89 assertEquals(new TypeToken<String[]>() {}.getType(), foo.getArrayTypeA()); in testPartialSpecialization()
148 assertEquals(new TypeToken<List<String>>() {}.getType(),
150 .getType());
190 final Type f = new TypeToken<F>(getClass()) {}.getType();
191 final Type t = new TypeToken<T>(getClass()) {}.getType();
194 return new TypeToken<F>(getClass()) {}.getType();
198 return new TypeToken<T>(getClass()) {}.getType();
232 TypeToken.of(ParameterizedOuter.class).resolveType(fieldType).getType());
238 assertEquals(String.class, TypeToken.of(this.getClass()).resolveType(String.class).getType());
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp36 return ConstantInt::get(Val->getType(), 0); in decomposeSimpleLinearExpr()
86 PointerType *PTy = cast<PointerType>(CI.getType()); in PromoteCastOfAllocation()
132 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale); in PromoteCastOfAllocation()
138 Value *Off = ConstantInt::get(AI.getArraySize()->getType(), in PromoteCastOfAllocation()
154 Value *NewCast = AllocaBuilder.CreateBitCast(New, AI.getType(), "tmpcast"); in PromoteCastOfAllocation()
199 if (I->getOperand(0)->getType() == Ty) in EvaluateInDifferentType()
269 auto *Ty = CI.getType(); in commonCastTransforms()
284 if (!Cmp || Cmp->getOperand(0)->getType() != Sel->getType()) in commonCastTransforms()
295 if (!Src->getType()->isIntegerTy() || !CI.getType()->isIntegerTy() || in commonCastTransforms()
296 shouldChangeType(CI.getType(), Src->getType())) in commonCastTransforms()
[all …]
/external/clang/lib/CodeGen/
DCGExprAgg.cpp127 if (E->getDecl()->getType()->isReferenceType()) { in VisitDeclRefExpr()
130 EmitFinalDestCopy(E->getType(), result.getReferenceLValue(CGF, E)); in VisitDeclRefExpr()
190 return EmitFinalDestCopy(E->getType(), LV); in VisitPseudoObjectExpr()
193 CGF.EmitPseudoObjectRValue(E, EnsureSlot(E->getType())); in VisitPseudoObjectExpr()
204 EmitFinalDestCopy(E->getType(), Res); in VisitAtomicExpr()
220 if (LV.getType()->isAtomicType() || CGF.LValueIsSuitableForInlineAtomic(LV)) { in EmitAggLoadOfLValue()
225 EmitFinalDestCopy(E->getType(), LV); in EmitAggLoadOfLValue()
265 EmitFinalDestCopy(E->getType(), src); in EmitMoveFromReturnSlot()
325 Ctx.getAsConstantArrayType(E->getSubExpr()->getType()); in VisitCXXStdInitializerListExpr()
329 RecordDecl *Record = E->getType()->castAs<RecordType>()->getDecl(); in VisitCXXStdInitializerListExpr()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DConstants.cpp56 if (getType()->isFPOrFPVectorTy()) in isNegativeZeroValue()
208 if (!getType()->isVectorTy()) in isFiniteNonZeroFP()
210 for (unsigned i = 0, e = getType()->getVectorNumElements(); i != e; ++i) { in isFiniteNonZeroFP()
221 if (!getType()->isVectorTy()) in isNormalFP()
223 for (unsigned i = 0, e = getType()->getVectorNumElements(); i != e; ++i) { in isNormalFP()
234 if (!getType()->isVectorTy()) in hasExactInverseFP()
236 for (unsigned i = 0, e = getType()->getVectorNumElements(); i != e; ++i) { in hasExactInverseFP()
247 if (!getType()->isVectorTy()) in isNaN()
249 for (unsigned i = 0, e = getType()->getVectorNumElements(); i != e; ++i) { in isNaN()
258 if (!getType()->isVectorTy()) in containsUndefElement()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/FuzzMutate/
DOpDescriptor.h98 return V->getType() == Only; in onlyType()
108 return !V->getType()->isVoidTy(); in anyType()
116 return V->getType()->isIntegerTy(); in anyIntType()
124 return V->getType()->isFloatingPointTy(); in anyFloatType()
132 return V->getType()->isPointerTy() && !V->isSwiftError(); in anyPtrType()
149 if (const auto *PtrT = dyn_cast<PointerType>(V->getType())) in sizedPtrType()
168 if (isa<ArrayType>(V->getType())) in anyAggregateType()
169 return V->getType()->getArrayNumElements() > 0; in anyAggregateType()
172 if (isa<StructType>(V->getType())) in anyAggregateType()
173 return V->getType()->getStructNumElements() > 0; in anyAggregateType()
[all …]
/external/llvm/lib/IR/
DConstants.cpp61 if (getType()->isFPOrFPVectorTy()) in isNegativeZeroValue()
282 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer"); in getAggregateElement()
330 assert(C->getType()->isFirstClassType() && "Cannot evaluate aggregate vals!"); in canTrapImpl()
556 assert(Slot->getType() == IntegerType::get(Context, V.getBitWidth())); in get()
584 assert(C->getType() == Ty->getScalarType() && in get()
745 return Constant::getNullValue(getType()->getSequentialElementType()); in getSequentialElement()
749 return Constant::getNullValue(getType()->getStructElementType(Elt)); in getStructElement()
753 if (isa<SequentialType>(getType())) in getElementValue()
759 if (isa<SequentialType>(getType())) in getElementValue()
765 Type *Ty = getType(); in getNumElements()
[all …]
/external/deqp/framework/randomshaders/
DrsgVariableValue.cpp35 DE_ASSERT(a.getType() == b.getType()); in compareValueRangesAllTrue()
37 if (a.getType().isStruct()) in compareValueRangesAllTrue()
39 int numMembers = (int)a.getType().getMembers().size(); in compareValueRangesAllTrue()
46 else if (a.getType().isArray()) in compareValueRangesAllTrue()
48 int numElements = (int)a.getType().getNumElements(); in compareValueRangesAllTrue()
57 int numElements = (int)a.getType().getNumElements(); in compareValueRangesAllTrue()
58 switch (a.getType().getBaseType()) in compareValueRangesAllTrue()
184 : m_type (other.getType()) in ValueRange()
185 , m_min (other.getType().getScalarSize()) in ValueRange()
186 , m_max (other.getType().getScalarSize()) in ValueRange()
[all …]
DrsgVariableValue.hpp79 const VariableType& getType (void) const { return m_type; } in getType() function in rsg::StridedValueRead
94 const VariableType& getType (void) const { return *m_type; } in getType() function in rsg::ConstStridedValueAccess
97 …cess component (int compNdx) const { return ConstStridedValueAccess(getType().getElementType(… in component()
98 …lementNdx) const { return ConstStridedValueAccess(getType().getElementType(), m_value + Stride*get… in arrayElement()
99 …x) const { return ConstStridedValueAccess(getType().getMembers()[memberNdx].getType(), m_value + S… in member()
115 …StridedValueRead<Stride> value (void) const { return StridedValueRead<Stride>(getType(), m_v… in value()
130 …StridedValueAccess component (int compNdx) { return StridedValueAccess(this->getType().getEle… in component()
131 …ementNdx) { return StridedValueAccess(this->getType().getElementType(), this->m_value + Stride*thi… in arrayElement()
132 … { return StridedValueAccess(this->getType().getMembers()[memberNdx].getType(), this->m_value + S… in member()
164 DE_ASSERT(this->getType() == valueRead.getType()); in operator =()
[all …]
/external/guice/core/test/com/google/inject/
DTypeLiteralTypeResolutionTest.java100 resolver.getReturnType(List.class.getMethod("subList", int.class, int.class)).getType()); in testDirectInheritance()
110 resolver.getSupertype(Collection.class).getType()); in testGenericSupertype()
113 resolver.getSupertype(Iterable.class).getType()); in testGenericSupertype()
116 resolver.getSupertype(AbstractList.class).getType()); in testGenericSupertype()
117 assertEquals(Object.class, resolver.getSupertype(Object.class).getType()); in testGenericSupertype()
122 assertEquals(MyInteger.class, resolver.getParameterTypes(comparableCompareTo).get(0).getType()); in testRecursiveTypeVariable()
138 assertEquals(listOf(Short.class), resolver.getFieldType(list).getType()); in testFields()
139 assertEquals(Short.class, resolver.getFieldType(instance).getType()); in testFields()
150 Short.class, resolver.getParameterTypes(newHasGenericConstructor).get(0).getType()); in testGenericConstructor()
160 assertEquals(NullPointerException.class, type.getExceptionTypes(newThrower).get(0).getType()); in testThrowsExceptions()
[all …]
/external/antlr/tool/src/test/java/org/antlr/test/
DTestTreeNodeStream.java156 assertEquals(101, ((Tree)stream.LT(1)).getType()); in testLT()
157 assertEquals(Token.DOWN, ((Tree)stream.LT(2)).getType()); in testLT()
158 assertEquals(102, ((Tree)stream.LT(3)).getType()); in testLT()
159 assertEquals(Token.DOWN, ((Tree)stream.LT(4)).getType()); in testLT()
160 assertEquals(103, ((Tree)stream.LT(5)).getType()); in testLT()
161 assertEquals(Token.UP, ((Tree)stream.LT(6)).getType()); in testLT()
162 assertEquals(104, ((Tree)stream.LT(7)).getType()); in testLT()
163 assertEquals(Token.UP, ((Tree)stream.LT(8)).getType()); in testLT()
164 assertEquals(Token.EOF, ((Tree)stream.LT(9)).getType()); in testLT()
166 assertEquals(Token.EOF, ((Tree)stream.LT(100)).getType()); in testLT()
[all …]
/external/swiftshader/third_party/LLVM/lib/VMCore/
DConstants.cpp180 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!"); in canTrap()
279 assert(getType()->isVectorTy() && "Not a vector constant!"); in getVectorElements()
287 VectorType *VT = cast<VectorType>(getType()); in getVectorElements()
448 assert(C->getType() == Ty->getScalarType() && in get()
598 assert(V[i]->getType() == T->getElementType() && in ConstantArray()
605 assert(V[i]->getType() == Ty->getElementType() && in get()
652 EltTypes.push_back(V[i]->getType()); in getTypeForElements()
673 assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) && in ConstantStruct()
705 assert(V[i]->getType() == T->getElementType() && in ConstantVector()
713 VectorType *T = VectorType::get(V.front()->getType(), V.size()); in get()
[all …]
DInstructions.cpp62 if (Op1->getType() != Op2->getType()) in areInvalidOperands()
65 if (VectorType *VT = dyn_cast<VectorType>(Op0->getType())) { in areInvalidOperands()
69 VectorType *ET = dyn_cast<VectorType>(Op1->getType()); in areInvalidOperands()
75 } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) { in areInvalidOperands()
87 : Instruction(PN.getType(), Instruction::PHI, in PHINode()
131 replaceAllUsesWith(UndefValue::get(getType())); in removeIncomingValue()
188 : Instruction(LP.getType(), Instruction::LandingPad, in LandingPadInst()
265 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType()); in init()
273 FTy->getParamType(i) == Args[i]->getType()) && in init()
287 cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType()); in init()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
DBaseTypeReference.java41 return getType().hashCode(); in hashCode()
48 return getType().equals(((TypeReference)o).getType()); in equals()
51 return getType().equals(o.toString()); in equals()
59 return getType().compareTo(o.toString()); in compareTo()
62 @Override public int length() { return getType().length(); } in length()
63 @Override public char charAt(int index) { return getType().charAt(index); } in charAt()
64 …@Override public CharSequence subSequence(int start, int end) { return getType().subSequence(start… in subSequence()
65 @Override @Nonnull public String toString() { return getType(); } in toString()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/
DContentTypeDetectorTest.java42 assertEquals(ContentTypeDetector.UNKNOWN, detector.getType()); in testEmptyStream()
50 assertEquals(ContentTypeDetector.CLASSFILE, detector.getType()); in testClassFile()
57 assertEquals(ContentTypeDetector.CLASSFILE, detector.getType()); in testClassFile11()
64 assertEquals(ContentTypeDetector.CLASSFILE, detector.getType()); in testClassFile12()
71 assertEquals(ContentTypeDetector.CLASSFILE, detector.getType()); in testClassFile13()
78 assertEquals(ContentTypeDetector.CLASSFILE, detector.getType()); in testClassFile14()
85 assertEquals(ContentTypeDetector.CLASSFILE, detector.getType()); in testClassFile15()
92 assertEquals(ContentTypeDetector.CLASSFILE, detector.getType()); in testClassFile16()
99 assertEquals(ContentTypeDetector.CLASSFILE, detector.getType()); in testClassFile17()
106 assertEquals(ContentTypeDetector.CLASSFILE, detector.getType()); in testClassFile18()
[all …]

12345678910>>...142