Searched refs:getType (Results 101 - 125 of 1945) sorted by relevance

1234567891011>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DTypeUtils.java45 return isWideType(type.getType());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderExceptionHandler.java48 return exceptionType==null?null:exceptionType.getType();
H A DBuilderField.java70 return fieldReference.definingClass.getType();
77 @Nonnull @Override public String getType() { method in class:BuilderField
78 return fieldReference.fieldType.getType();
/external/clang/lib/CodeGen/
H A DCGExprAgg.cpp121 if (E->getDecl()->getType()->isReferenceType()) {
124 EmitFinalDestCopy(E->getType(), result.getReferenceLValue(CGF, E));
181 return EmitFinalDestCopy(E->getType(), LV);
184 CGF.EmitPseudoObjectRValue(E, EnsureSlot(E->getType()));
194 CGF.EmitAtomicExpr(E, EnsureSlot(E->getType()).getAddr());
210 if (LV.getType()->isAtomicType()) {
215 EmitFinalDestCopy(E->getType(), LV);
256 CGF.getContext().getTypeInfoInChars(E->getType());
257 EmitFinalDestCopy(E->getType(), src, typeInfo.second);
319 Ctx.getAsConstantArrayType(E->getSubExpr()->getType());
[all...]
H A DCGExpr.cpp42 cast<llvm::PointerType>(value->getType())->getAddressSpace();
48 if (value->getType() == destType) return value;
90 if (const MemberPointerType *MPT = E->getType()->getAs<MemberPointerType>()) {
96 if (!E->getType()->isAnyComplexType())
97 return EmitScalarConversion(EmitScalarExpr(E), E->getType(), BoolTy);
99 return EmitComplexToScalarConversion(EmitComplexExpr(E), E->getType(),BoolTy);
119 switch (getEvaluationKind(E->getType())) {
126 aggSlot = CreateAggTemp(E->getType(), "agg-temp");
138 if (hasAggregateEvaluationKind(E->getType()))
139 AggSlot = CreateAggTemp(E->getType(), "ag
[all...]
H A DCGExprScalar.cpp56 return E->getType()->isNullPtrType();
128 llvm::Value *Zero = llvm::Constant::getNullValue(V->getType());
135 cast<llvm::PointerType>(V->getType()));
144 if (ZI->getOperand(0)->getType() == Builder.getInt1Ty()) {
190 return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue());
193 return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue());
196 return llvm::ConstantInt::get(ConvertType(E->getType()), E->getValue());
199 return EmitNullValue(E->getType());
202 return EmitNullValue(E->getType());
208 return Builder.CreateBitCast(V, ConvertType(E->getType()));
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonErrorNode.java45 stop.getType()!=Token.EOF) )
63 public int getType() { method in class:CommonErrorNode
72 if ( ((Token)stop).getType() == Token.EOF ) {
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonErrorNode.js4 stop.getType()!=org.antlr.runtime.Token.EOF) )
23 getType: function() {
32 if ( this.stop.getType() === org.antlr.runtime.Token.EOF ) {
/external/deqp/framework/randomshaders/
H A DrsgProgramGenerator.cpp78 if ((*i)->getVariable()->getType().isSampler())
84 if ((*i)->getVariable()->getType().isSampler())
92 if (input->getVariable()->getType().isSampler())
/external/jmdns/src/javax/jmdns/impl/
H A DServiceEventImpl.java68 * @see javax.jmdns.ServiceEvent#getType()
71 public String getType() { method in class:ServiceEventImpl
95 buf.append(this.getType());
121 return new ServiceEventImpl((JmDNSImpl) this.getDNS(), this.getType(), this.getName(), newInfo);
/external/llvm/lib/IR/
H A DInstructions.cpp63 if (Op1->getType() != Op2->getType())
66 if (VectorType *VT = dyn_cast<VectorType>(Op0->getType())) {
70 VectorType *ET = dyn_cast<VectorType>(Op1->getType());
76 } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) {
88 : Instruction(PN.getType(), Instruction::PHI,
132 replaceAllUsesWith(UndefValue::get(getType()));
172 return UndefValue::get(getType());
195 : Instruction(LP.getType(), Instruction::LandingPad,
272 cast<FunctionType>(cast<PointerType>(Func->getType())
[all...]
H A DConstants.cpp57 if (getType()->isFPOrFPVectorTy())
228 assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
265 assert(C->getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
553 assert(C->getType() == Ty->getScalarType() &&
699 return Constant::getNullValue(getType()->getSequentialElementType());
705 return Constant::getNullValue(getType()->getStructElementType(Elt));
711 if (isa<SequentialType>(getType()))
719 if (isa<SequentialType>(getType()))
732 return UndefValue::get(getType()->getSequentialElementType());
738 return UndefValue::get(getType()
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp89 cast<PointerType>(MI->getArgOperand(1)->getType())->getAddressSpace();
91 cast<PointerType>(MI->getArgOperand(0)->getType())->getAddressSpace();
106 Type *SrcETy = cast<PointerType>(StrippedDest->getType())
152 MI->setArgOperand(2, Constant::getNullValue(MemOpLength->getType()));
167 if (!LenC || !FillC || !FillC->getType()->isIntegerTy(8))
178 unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace();
192 MI->setLength(Constant::getNullValue(LenC->getType()));
248 Type *Tys[3] = { CI.getArgOperand(0)->getType(),
249 CI.getArgOperand(1)->getType(),
250 CI.getArgOperand(2)->getType() };
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtfsmalls.cpp168 if (!ftp || !(ftp->getType() == Formattable::kLong) || !(ftp->getLong() == 0)) {
169 it_errln("*** Formattable constructor or getType or getLong");
195 if ((fta.getType() == Formattable::kDouble) && (fta.getDouble() == 3.0)) {
206 if ((fta.getType() == Formattable::kDate) && (fta.getDate() == 4.0)) {
231 t = (fta.getType() == Formattable::kString)
261 if ((ft_arr[0].getType() == Formattable::kDate) && (ft_arr[0].getDate() == 1.0)
262 && (ft_arr[1].getType() == Formattable::kDouble) && (ft_arr[1].getDouble() == 2.0)
263 && (ft_arr[2].getType() == Formattable::kLong) && (ft_arr[2].getLong() == (int32_t)3)
264 && (ft_arr[3].getType() == Formattable::kString) && (ft_arr[3].getString(temp) == ucs)
265 && (ft_arr[4].getType()
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtfsmalls.cpp168 if (!ftp || !(ftp->getType() == Formattable::kLong) || !(ftp->getLong() == 0)) {
169 it_errln("*** Formattable constructor or getType or getLong");
195 if ((fta.getType() == Formattable::kDouble) && (fta.getDouble() == 3.0)) {
206 if ((fta.getType() == Formattable::kDate) && (fta.getDate() == 4.0)) {
231 t = (fta.getType() == Formattable::kString)
261 if ((ft_arr[0].getType() == Formattable::kDate) && (ft_arr[0].getDate() == 1.0)
262 && (ft_arr[1].getType() == Formattable::kDouble) && (ft_arr[1].getDouble() == 2.0)
263 && (ft_arr[2].getType() == Formattable::kLong) && (ft_arr[2].getLong() == (int32_t)3)
264 && (ft_arr[3].getType() == Formattable::kString) && (ft_arr[3].getString(temp) == ucs)
265 && (ft_arr[4].getType()
[all...]
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/omnibox/
H A DSuggestionAnswerTest.java112 assertEquals(8, firstLine.getTextFields().get(0).getType());
114 assertEquals(0, firstLine.getTextFields().get(1).getType());
116 assertEquals(7, firstLine.getAdditionalText().getType());
120 assertEquals(6006, secondLine.getTextFields().get(0).getType());
122 assertEquals(666, secondLine.getStatusText().getType());
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
H A DAstUtil.java18 return (parent == null || parent.getType() != tokenType) ? null : parent;
29 switch (parent.getType()) {
42 int nameType = parent.getFirstChild().getType();
70 if (typeNameNode.getType() != Token.GETPROP && typeNameNode.getType() != Token.NAME) {
/external/chromium_org/third_party/skia/tools/
H A Dfiltermain.cpp52 if (SAVE_LAYER != canvas->getDrawCommandAt(curCommand)->getType() ||
54 DRAW_BITMAP_RECT_TO_RECT != canvas->getDrawCommandAt(curCommand+1)->getType() ||
55 RESTORE != canvas->getDrawCommandAt(curCommand+2)->getType()) {
124 if (SAVE_LAYER != canvas->getDrawCommandAt(curCommand)->getType() ||
126 SAVE != canvas->getDrawCommandAt(curCommand+1)->getType() ||
127 CLIP_RECT != canvas->getDrawCommandAt(curCommand+2)->getType() ||
128 DRAW_BITMAP_RECT_TO_RECT != canvas->getDrawCommandAt(curCommand+3)->getType() ||
129 RESTORE != canvas->getDrawCommandAt(curCommand+4)->getType() ||
130 RESTORE != canvas->getDrawCommandAt(curCommand+5)->getType()) {
190 if (SAVE != canvas->getDrawCommandAt(curCommand)->getType() ||
[all...]
/external/skia/tools/
H A Dfiltermain.cpp53 if (SAVE_LAYER != canvas->getDrawCommandAt(curCommand)->getType() ||
55 DRAW_BITMAP_RECT_TO_RECT != canvas->getDrawCommandAt(curCommand+1)->getType() ||
56 RESTORE != canvas->getDrawCommandAt(curCommand+2)->getType()) {
125 if (SAVE_LAYER != canvas->getDrawCommandAt(curCommand)->getType() ||
127 SAVE != canvas->getDrawCommandAt(curCommand+1)->getType() ||
128 CLIP_RECT != canvas->getDrawCommandAt(curCommand+2)->getType() ||
129 DRAW_BITMAP_RECT_TO_RECT != canvas->getDrawCommandAt(curCommand+3)->getType() ||
130 RESTORE != canvas->getDrawCommandAt(curCommand+4)->getType() ||
131 RESTORE != canvas->getDrawCommandAt(curCommand+5)->getType()) {
191 if (SAVE != canvas->getDrawCommandAt(curCommand)->getType() ||
[all...]
/external/llvm/include/llvm/IR/
H A DIntrinsicInst.h144 return cast<PointerType>(getRawDest()->getType())->getAddressSpace();
155 assert(getRawDest()->getType() == Ptr->getType() &&
161 assert(getLength()->getType() == L->getType() &&
175 return getArgOperand(3)->getType();
204 assert(getValue()->getType() == Val->getType() &&
234 return cast<PointerType>(getRawSource()->getType())->getAddressSpace();
238 assert(getRawSource()->getType()
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXRTreeFrag.java130 public int getType() method in class:XRTreeFrag
260 if (XObject.CLASS_NODESET == obj2.getType())
268 else if (XObject.CLASS_BOOLEAN == obj2.getType())
272 else if (XObject.CLASS_NUMBER == obj2.getType())
276 else if (XObject.CLASS_NODESET == obj2.getType())
280 else if (XObject.CLASS_STRING == obj2.getType())
284 else if (XObject.CLASS_RTREEFRAG == obj2.getType())
/external/llvm/lib/Transforms/Utils/
H A DCtorUtils.cpp35 cast<StructType>(GCL->getType()->getElementType()->getArrayElementType());
61 if (CA->getType() == GCL->getInitializer()->getType()) {
68 new GlobalVariable(CA->getType(), GCL->isConstant(), GCL->getLinkage(),
76 if (V->getType() != GCL->getType())
77 V = ConstantExpr::getBitCast(V, GCL->getType());
/external/smack/src/org/jivesoftware/smack/packet/
H A DIQ.java52 type = iq.getType();
59 public Type getType() { method in class:IQ
93 buf.append("type=\"").append(getType()).append("\">");
136 if (!(request.getType() == Type.GET || request.getType() == Type.SET)) {
171 if (!(request.getType() == Type.GET || request.getType() == Type.SET)) {
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp72 RHS->getType()->isIntegralOrEnumerationType() &&
74 RightV = svalBuilder.conjureSymbolVal(RHS, LCtx, RHS->getType(),
78 LHS->getType()->isIntegralOrEnumerationType() &&
80 LeftV = svalBuilder.conjureSymbolVal(LHS, LCtx, LHS->getType(),
93 SVal Result = evalBinOp(state, Op, LeftV, RightV, B->getType());
143 QualType LTy = getContext().getCanonicalType(LHS->getType());
150 B->getType(), CTy);
190 CanQualType T = getContext().getCanonicalType(BE->getType());
245 QualType T = CastE->getType();
246 QualType ExTy = Ex->getType();
[all...]
/external/chromium_org/tools/json_schema_compiler/
H A Didl_schema_test.py28 def getType(schema, id): function
79 getType(self.idl_basics, 'MyType1')['properties'])
84 getType(self.idl_basics, 'MyType1')['properties'].keys())
92 self.assertEquals(expected, getType(schema, expected['id']))
131 enum_with_nodoc = getType(schema, 'EnumTypeWithNoDoc')
237 foo_type = getType(schema, 'Foo')
241 enum_type = getType(schema, 'enum')
245 dictionary = getType(schema, 'dictionary')
248 mytype = getType(schema, 'MyType')
258 foo_type = getType(schem
[all...]

Completed in 5970 milliseconds

1234567891011>>