Home
last modified time | relevance | path

Searched refs:exprType (Results 1 – 22 of 22) sorted by relevance

/external/javassist/src/main/javassist/compiler/
DTypeChecker.java57 protected int exprType; // VOID, NULL, CLASS, BOOLEAN, INT, ... field in TypeChecker
172 exprType = CLASS; in atNewExpr()
193 exprType = type; in atNewArrayExpr()
228 exprType = type; in atMultiNewArray()
275 exprType = varType; in atVariableAssign()
284 int aType = exprType; in atArrayAssign()
288 exprType = aType; in atArrayAssign()
298 int fType = exprType; in atFieldAssign()
302 exprType = fType; in atFieldAssign()
311 int type1 = exprType; in atCondExpr()
[all …]
DJvstTypeChecker.java46 if (exprType == VOID) { in addNullIfVoid()
47 exprType = CLASS; in addNullIfVoid()
60 exprType = CLASS; in atMember()
65 exprType = CLASS; in atMember()
71 exprType = CLASS; in atMember()
126 if (exprType == VOID || CodeGen.isRefType(exprType) || arrayDim > 0) in atCastToRtype()
131 exprType = destType; in atCastToRtype()
139 if (CodeGen.isRefType(exprType) || arrayDim > 0) in atCastToWrapper()
142 CtClass clazz = resolver.lookupClass(exprType, arrayDim, className); in atCastToWrapper()
144 exprType = CLASS; in atCastToWrapper()
[all …]
DJvstCodeGen.java83 if (exprType == VOID) { in addNullIfVoid()
85 exprType = CLASS; in addNullIfVoid()
99 exprType = CLASS; in atMember()
107 exprType = CLASS; in atMember()
132 exprType = CLASS; in callGetType()
147 if (arrayDim != 1 || exprType != CLASS) in atFieldAssign()
172 varNo += is2word(exprType, arrayDim) ? 2 : 1; in atAssignParamList()
203 if (exprType == VOID || isRefType(exprType) || arrayDim > 0) in atCastToRtype()
208 atNumCastExpr(exprType, destType); in atCastToRtype()
209 exprType = destType; in atCastToRtype()
[all …]
DCodeGen.java105 protected int exprType; // VOID, NULL, CLASS, BOOLEAN, INT, ... field in CodeGen
369 if (is2word(exprType, arrayDim)) in atStmnt()
371 else if (exprType != VOID) in atStmnt()
645 int type = exprType; in atReturnStmnt2()
672 if (exprType != CLASS || arrayDim > 0) in atThrowStmnt()
690 if (exprType != CLASS && arrayDim == 0) in atSyncStmnt()
862 exprType = varType; in atVariableAssign()
877 bytecode.addOpcode(getArrayReadOp(exprType, arrayDim)); in atArrayAssign()
880 int aType = exprType; in atArrayAssign()
893 exprType = aType; in atArrayAssign()
[all …]
DMemberCodeGen.java334 exprType = CLASS; in atNewExpr()
424 atNumCastExpr(exprType, type); in atNewArrayExpr2()
431 exprType = type; in atNewArrayExpr2()
463 if (exprType != INT) in atMultiNewArray()
468 exprType = type; in atMultiNewArray()
548 exprType = CLASS; in atCallExpr()
556 else if (exprType == CLASS /* && arrayDim == 0 */) in atCallExpr()
765 types[i] = exprType; in atMethodArgs()
793 exprType = CLASS; in setReturnType()
797 exprType = MemberResolver.descToType(c); in setReturnType()
[all …]
/external/skia/src/sksl/ir/
DSkSLSwizzle.cpp137 const Type& exprType = expr->type(); in Make() local
138 SkASSERTF(exprType.isVector() || exprType.isScalar(), in Make()
139 "cannot swizzle type '%s'", exprType.description().c_str()); in Make()
152 if (exprType.isScalar()) { in Make()
155 exprType.toCompound(context, components.size(), /*rows=*/1), in Make()
161 if (components.count() == exprType.columns()) { in Make()
207 const Type& componentType = exprType.componentType(); in Make()
/external/llvm-project/flang/lib/Semantics/
Dcheck-case.cpp209 if (T::kind == exprType.kind()) { in Test()
210 CaseValues<T>(context, exprType).Check(caseList); in Test()
217 const evaluate::DynamicType &exprType; member
231 if (auto exprType{x->GetType()}) { in Enter() local
234 switch (exprType->category()) { in Enter()
237 TypeVisitor<TypeCategory::Integer>{context_, *exprType, caseList}); in Enter()
240 CaseValues<evaluate::Type<TypeCategory::Logical, 1>>{context_, *exprType} in Enter()
245 TypeVisitor<TypeCategory::Character>{context_, *exprType, caseList}); in Enter()
Dcheck-select-type.cpp261 if (auto exprType{selector->GetType()}) { in Enter() local
265 TypeCaseValues{context_, *exprType}.Check(typeCaseList); in Enter()
Dexpression.cpp1342 if (auto exprType{v->GetType()}) { in Add() local
1343 if (!(messageDisplayedSet_ & 8) && exprType->IsUnlimitedPolymorphic()) { in Add()
Dresolve-names.cpp5193 auto exprType{association.selector.expr->GetType()}; in Post() local
5197 if (exprType && !exprType->IsPolymorphic()) { // C1159 in Post()
/external/error_prone/checkerframework/
Djavacutil-2.5.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/checkerframework/ org/ ...
Ddataflow-2.5.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/checkerframework/ org/ ...
/external/skia/src/sksl/codegen/
DSkSLMetalCodeGenerator.cpp707 String exprType = this->typeName(arguments[0]->type()); in writeIntrinsicCall() local
720 this->write(exprType); in writeIntrinsicCall()
724 this->write(exprType); in writeIntrinsicCall()
731 String exprType = this->typeName(arguments[0]->type()); in writeIntrinsicCall() local
772 this->write(exprType); in writeIntrinsicCall()
/external/clang/lib/Sema/
DSemaExprObjC.cpp4197 QualType exprType) { in CheckObjCARCUnavailableWeakConversion() argument
4201 Context.getCanonicalType(exprType).getUnqualifiedType(); in CheckObjCARCUnavailableWeakConversion()
/external/llvm-project/clang/lib/Sema/
DSemaExprObjC.cpp4581 QualType exprType) { in CheckObjCARCUnavailableWeakConversion() argument
4585 Context.getCanonicalType(exprType).getUnqualifiedType(); in CheckObjCARCUnavailableWeakConversion()
/external/guice/extensions/persist/lib/
Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath ...
Dhsqldb.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hsqldb/ org/ ...
/external/guice/extensions/struts2/lib/
Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath ...
Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse ...
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/lib/
Djavassist-3.19.0-GA.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META- ...
/external/icu/tools/srcgen/currysrc/libs/
Dorg.eclipse.jdt.core_3.14.0.v20180528-0519.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_ ...
/external/kotlinc/lib/
Dkotlin-compiler.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/backend-common. ...