Home
last modified time | relevance | path

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

/external/javassist/src/main/javassist/expr/
DCast.java102 CtClass retType = getType(); in replace() local
107 int retVar = jc.recordReturnType(retType, true); in replace()
108 jc.recordProceed(new ProceedForCast(index, retType)); in replace()
112 checkResultValue(retType, statement); in replace()
118 bytecode.addConstZero(retType); in replace()
119 bytecode.addStore(retVar, retType); // initialize $_ in replace()
122 bytecode.addLoad(retVar, retType); in replace()
137 CtClass retType; field in Cast.ProceedForCast
141 retType = t; in ProceedForCast()
155 gen.setType(retType); in doit()
[all …]
DFieldAccess.java159 CtClass retType; in replace() local
166 retType = fieldType; in replace()
171 retType = CtClass.voidType; in replace()
180 boolean included = checkResultValue(retType, statement); in replace()
184 int retVar = jc.recordReturnType(retType, included); in replace()
186 jc.recordProceed(new ProceedForRead(retType, opcode, in replace()
200 if (retType == CtClass.voidType) { in replace()
205 bytecode.addConstZero(retType); in replace()
206 bytecode.addStore(retVar, retType); // initialize $_ in replace()
211 bytecode.addLoad(retVar, retType); in replace()
DMethodCall.java208 CtClass retType = Descriptor.getReturnType(signature, cp); in replace() local
212 int retVar = jc.recordReturnType(retType, true); in replace()
223 checkResultValue(retType, statement); in replace()
229 if (retType != CtClass.voidType) { in replace()
230 bytecode.addConstZero(retType); in replace()
231 bytecode.addStore(retVar, retType); // initialize $_ in replace()
235 if (retType != CtClass.voidType) in replace()
236 bytecode.addLoad(retVar, retType); in replace()
DInstanceof.java105 CtClass retType = CtClass.booleanType; in replace() local
110 int retVar = jc.recordReturnType(retType, true); in replace()
118 checkResultValue(retType, statement); in replace()
124 bytecode.addConstZero(retType); in replace()
125 bytecode.addStore(retVar, retType); // initialize $_ in replace()
128 bytecode.addLoad(retVar, retType); in replace()
DNewArray.java176 CtClass retType; in replace2() local
206 retType = Descriptor.toCtClass(desc, thisClass.getClassPool()); in replace2()
221 checkResultValue(retType, statement); in replace2()
222 int retVar = jc.recordReturnType(retType, true); in replace2()
223 jc.recordProceed(new ProceedForArray(retType, opcode, index, dim)); in replace2()
DExpr.java211 static final boolean checkResultValue(CtClass retType, String prog) in checkResultValue() argument
217 if (!hasIt && retType != CtClass.voidType) in checkResultValue()
/external/icu/icu4c/source/test/cintltst/
Dsprpdata.c152 UStringPrepType retType; in compareMapping() local
162 retType = getValues(result,&value,&isIndex); in compareMapping()
165 if(type != retType && retType != USPREP_DELETE){ in compareMapping()
187 length = (retType == USPREP_DELETE)? 0 : 1; in compareMapping()
219 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){ in compareMapping()
232 UStringPrepType retType; in compareFlagsForRange() local
256 retType = getValues(result, &value, &isIndex); in compareFlagsForRange()
258 if(retType != type){ in compareFlagsForRange()
259 …ed type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange()
263 …ed type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange()
/external/icu/icu4c/source/test/intltest/
Dtestidn.cpp334 UStringPrepType retType; in compareMapping() local
337 retType = getValues(result,value,isIndex); in compareMapping()
340 if(type != retType && retType != USPREP_DELETE){ in compareMapping()
362 length = (retType == USPREP_DELETE)? 0 : 1; in compareMapping()
395 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){ in compareMapping()
407 UStringPrepType retType; in compareFlagsForRange() local
430 retType = getValues(result,value,isIndex); in compareFlagsForRange()
432 if(retType != type){ in compareFlagsForRange()
433 …ed type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange()
437 …ed type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange()
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp216 llvm::Type *retType, in createFunction() argument
224 llvm::FunctionType::get(retType, theArgTypes, isVarArg); in createFunction()
1748 llvm::Type *retType = builder.getVoidTy(); in createStandardUtilityFunctions() local
1757 retType, in createStandardUtilityFunctions()
1767 retType = builder.getVoidTy(); in createStandardUtilityFunctions()
1776 retType, in createStandardUtilityFunctions()
1786 retType = builder.getVoidTy(); in createStandardUtilityFunctions()
1794 retType, in createStandardUtilityFunctions()
1804 retType = builder.getVoidTy(); in createStandardUtilityFunctions()
1812 retType, in createStandardUtilityFunctions()
[all …]
/external/javassist/src/main/javassist/
DCtMethod.java276 CtClass retType; in setWrappedBody() local
279 retType = getReturnType(); in setWrappedBody()
288 params, retType, in setWrappedBody()
/external/autotest/client/site_tests/graphics_SanAngeles/src/
Dimportgl.h55 #define FNDEF(retType, funcName, args) \ argument
56 IMPORTGL_API retType (*funcPtr_##funcName) args IMPORTGL_FNPTRINIT;\
57 typedef retType (*funcType_##funcName) args
/external/sonivox/jet_tools/JetCreator/
DJetUtils.py250 def IniGetValue(configFile, section, option, retType='str', default=''): argument
258 if retType =='int':
263 elif retType == 'float':
268 elif retType == 'bool':
276 elif retType == 'list':
699 retType = 'str'
701 retType = 'int'
715 if retType == 'str':
/external/javassist/src/main/javassist/util/proxy/
DRuntimeSupport.java150 public static String makeDescriptor(Class[] params, Class retType) { in makeDescriptor() argument
157 makeDesc(sbuf, retType); in makeDescriptor()
DProxyFactory.java1164 Class retType = meth.getReturnType(); in makeForwarder() local
1165 addUnwrapper(code, retType); in makeForwarder()
1166 addReturn(code, retType); in makeForwarder()
/external/javassist/src/main/javassist/bytecode/
DSignatureAttribute.java229 Type retType; field in SignatureAttribute.MethodSignature
235 retType = ret; in MethodSignature()
256 public Type getReturnType() { return retType; } in getReturnType()
276 sbuf.append(retType); in toString()
/external/jdiff/src/jdiff/
DRootDocToXML.java541 com.sun.javadoc.Type retType = md[i].returnType(); in processMethods() local
542 if (retType.qualifiedTypeName().compareTo("void") == 0) { in processMethods()
547 emitType(retType); in processMethods()
/external/javassist/src/main/javassist/bytecode/stackmap/
DTracer.java40 String retType) { in Tracer() argument
43 returnType = retType; in Tracer()
/external/clang/lib/AST/
DASTContext.cpp7349 QualType retType; in mergeFunctionTypes() local
7356 retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true); in mergeFunctionTypes()
7359 retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false, in mergeFunctionTypes()
7361 if (retType.isNull()) return QualType(); in mergeFunctionTypes()
7364 retType = retType.getUnqualifiedType(); in mergeFunctionTypes()
7373 if (getCanonicalType(retType) != LRetType) in mergeFunctionTypes()
7375 if (getCanonicalType(retType) != RRetType) in mergeFunctionTypes()
7456 return getFunctionType(retType, types, EPI); in mergeFunctionTypes()
7492 return getFunctionType(retType, proto->getParamTypes(), EPI); in mergeFunctionTypes()
7497 return getFunctionNoProtoType(retType, einfo); in mergeFunctionTypes()
/external/deqp/modules/gles31/functional/
Des31fProgramUniformTests.cpp1119 const glu::DataType retType = getSamplerLookupReturnType(samplerTypes[i]); in writeUniformDefinitions() local
1120 if (typeReq[0](retType) || typeReq[1](retType)) in writeUniformDefinitions()
/external/deqp/modules/gles3/functional/
Des3fUniformApiTests.cpp1303 const glu::DataType retType = getSamplerLookupReturnType(samplerTypes[i]); in writeUniformDefinitions() local
1304 if (typeReq[0](retType) || typeReq[1](retType)) in writeUniformDefinitions()
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp1044 QualType retType = T; in RewriteTypeIntoString() local
1046 if (const PointerType* PT = retType->getAs<PointerType>()) in RewriteTypeIntoString()
1048 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>()) in RewriteTypeIntoString()
DRewriteModernObjC.cpp1239 QualType retType = T; in RewriteTypeIntoString() local
1241 if (const PointerType* PT = retType->getAs<PointerType>()) in RewriteTypeIntoString()
1243 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>()) in RewriteTypeIntoString()