Home
last modified time | relevance | path

Searched refs:retType (Results 1 – 25 of 25) 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 …]
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()
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()
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/icu4c/test/cintltst/
Dsprpdata.c151 UStringPrepType retType; in compareMapping() local
161 retType = getValues(result,&value,&isIndex); in compareMapping()
164 if(type != retType && retType != USPREP_DELETE){ in compareMapping()
186 length = (retType == USPREP_DELETE)? 0 : 1; in compareMapping()
218 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){ in compareMapping()
231 UStringPrepType retType; in compareFlagsForRange() local
255 retType = getValues(result, &value, &isIndex); in compareFlagsForRange()
257 if(retType != type){ in compareFlagsForRange()
258 …ed type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange()
262 …ed type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange()
/external/icu4c/test/intltest/
Dtestidn.cpp332 UStringPrepType retType; in compareMapping() local
335 retType = getValues(result,value,isIndex); in compareMapping()
338 if(type != retType && retType != USPREP_DELETE){ in compareMapping()
360 length = (retType == USPREP_DELETE)? 0 : 1; in compareMapping()
393 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){ in compareMapping()
405 UStringPrepType retType; in compareFlagsForRange() local
428 retType = getValues(result,value,isIndex); in compareFlagsForRange()
430 if(retType != type){ in compareFlagsForRange()
431 …ed type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange()
435 …ed type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange()
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp214 llvm::Type *retType, in createFunction() argument
222 llvm::FunctionType::get(retType, theArgTypes, isVarArg); in createFunction()
1723 llvm::Type *retType = builder.getVoidTy(); in createStandardUtilityFunctions() local
1732 retType, in createStandardUtilityFunctions()
1742 retType = builder.getVoidTy(); in createStandardUtilityFunctions()
1751 retType, in createStandardUtilityFunctions()
1761 retType = builder.getVoidTy(); in createStandardUtilityFunctions()
1769 retType, in createStandardUtilityFunctions()
1779 retType = builder.getVoidTy(); in createStandardUtilityFunctions()
1787 retType, in createStandardUtilityFunctions()
[all …]
/external/webkit/Source/WebCore/platform/gtk/
DPlatformScreenGtk.cpp128 Atom retType; in screenAvailableRect() local
134 … 0, 4, FALSE, XA_CARDINAL, &retType, &retFormat, &retNItems, &retAfter, (guchar**)&workAreaPos); in screenAvailableRect()
137 …if (xRes == Success && workAreaPos != NULL && retType == XA_CARDINAL && retNItems == 4 && retForma… in screenAvailableRect()
/external/javassist/src/main/javassist/
DCtMethod.java276 CtClass retType; in setWrappedBody() local
279 retType = getReturnType(); in setWrappedBody()
288 params, retType, in setWrappedBody()
/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/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
DDeodexUtil.java181 TypeIdItem retType = TypeIdItem.lookupTypeIdItem(dexFile, methodRet); in parseAndResolveMethod() local
182 if (retType == null) { in parseAndResolveMethod()
186 ProtoIdItem protoItem = ProtoIdItem.lookupProtoIdItem(dexFile, retType, paramListItem); in parseAndResolveMethod()
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
DMethodDef.java52 public Class<?> retType; field in MethodDef
DRmiSerializer.java120 Class<?> retType = readType(buffer); in readMethod() local
131 def.retType = retType; in readMethod()
/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/webkit/Source/ThirdParty/ANGLE/src/compiler/
DSymbolTable.h139 TFunction(const TString *name, TType& retType, TOperator tOp = EOpNull) :
141 returnType(retType), in TSymbol()
/external/jdiff/src/jdiff/
DRootDocToXML.java540 com.sun.javadoc.Type retType = md[i].returnType(); in processMethods() local
541 if (retType.qualifiedTypeName().compareTo("void") == 0) { in processMethods()
546 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.cpp6292 QualType retType; in mergeFunctionTypes() local
6299 retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true); in mergeFunctionTypes()
6302 retType = mergeTypes(lbase->getResultType(), rbase->getResultType(), false, in mergeFunctionTypes()
6304 if (retType.isNull()) return QualType(); in mergeFunctionTypes()
6307 retType = retType.getUnqualifiedType(); in mergeFunctionTypes()
6316 if (getCanonicalType(retType) != LRetType) in mergeFunctionTypes()
6318 if (getCanonicalType(retType) != RRetType) in mergeFunctionTypes()
6402 return getFunctionType(retType, types.begin(), types.size(), EPI); in mergeFunctionTypes()
6439 return getFunctionType(retType, proto->arg_type_begin(), in mergeFunctionTypes()
6445 return getFunctionNoProtoType(retType, einfo); in mergeFunctionTypes()
/external/webkit/Source/WebCore/bridge/qt/
Dqt_runtime.cpp1257 QtMethodMatchType retType = types[0]; in findMethodIndex() local
1258 args[0] = QVariant(retType.typeId(), (void *)0); // the return value in findMethodIndex()
/external/clang/lib/Rewrite/Frontend/
DRewriteObjC.cpp1057 QualType retType = T; in RewriteTypeIntoString() local
1059 if (const PointerType* PT = retType->getAs<PointerType>()) in RewriteTypeIntoString()
1061 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>()) in RewriteTypeIntoString()
DRewriteModernObjC.cpp1185 QualType retType = T; in RewriteTypeIntoString() local
1187 if (const PointerType* PT = retType->getAs<PointerType>()) in RewriteTypeIntoString()
1189 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>()) in RewriteTypeIntoString()