Searched refs:retType (Results 1 - 25 of 27) sorted by relevance

12

/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
H A DMethodDef.java52 public Class<?> retType; field in class:MethodDef
H A DRmiSerializer.java120 Class<?> retType = readType(buffer);
131 def.retType = retType;
/external/javassist/src/main/javassist/expr/
H A DCast.java102 CtClass retType = getType();
107 int retVar = jc.recordReturnType(retType, true);
108 jc.recordProceed(new ProceedForCast(index, retType));
112 checkResultValue(retType, statement);
118 bytecode.addConstZero(retType);
119 bytecode.addStore(retVar, retType); // initialize $_
122 bytecode.addLoad(retVar, retType);
137 CtClass retType; field in class:Cast.ProceedForCast
141 retType = t;
155 gen.setType(retType);
[all...]
H A DInstanceof.java105 CtClass retType = CtClass.booleanType;
110 int retVar = jc.recordReturnType(retType, true);
118 checkResultValue(retType, statement);
124 bytecode.addConstZero(retType);
125 bytecode.addStore(retVar, retType); // initialize $_
128 bytecode.addLoad(retVar, retType);
H A DMethodCall.java208 CtClass retType = Descriptor.getReturnType(signature, cp);
212 int retVar = jc.recordReturnType(retType, true);
223 checkResultValue(retType, statement);
229 if (retType != CtClass.voidType) {
230 bytecode.addConstZero(retType);
231 bytecode.addStore(retVar, retType); // initialize $_
235 if (retType != CtClass.voidType)
236 bytecode.addLoad(retVar, retType);
H A DFieldAccess.java159 CtClass retType;
166 retType = fieldType;
171 retType = CtClass.voidType;
180 boolean included = checkResultValue(retType, statement);
184 int retVar = jc.recordReturnType(retType, included);
186 jc.recordProceed(new ProceedForRead(retType, opcode,
200 if (retType == CtClass.voidType) {
205 bytecode.addConstZero(retType);
206 bytecode.addStore(retVar, retType); // initialize $_
211 bytecode.addLoad(retVar, retType);
[all...]
H A DNewArray.java176 CtClass retType;
206 retType = Descriptor.toCtClass(desc, thisClass.getClassPool());
221 checkResultValue(retType, statement);
222 int retVar = jc.recordReturnType(retType, true);
223 jc.recordProceed(new ProceedForArray(retType, opcode, index, dim));
H A DExpr.java211 static final boolean checkResultValue(CtClass retType, String prog) argument
217 if (!hasIt && retType != CtClass.voidType)
/external/icu4c/test/cintltst/
H A Dsprpdata.c151 UStringPrepType retType; local
161 retType = getValues(result,&value,&isIndex);
164 if(type != retType && retType != USPREP_DELETE){
186 length = (retType == USPREP_DELETE)? 0 : 1;
218 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){
231 UStringPrepType retType; local
255 retType = getValues(result, &value, &isIndex);
257 if(retType != type){
258 log_err( "FAIL: Did not get the expected type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]);
[all...]
/external/icu4c/test/intltest/
H A Dtestidn.cpp332 UStringPrepType retType; local
335 retType = getValues(result,value,isIndex);
338 if(type != retType && retType != USPREP_DELETE){
360 length = (retType == USPREP_DELETE)? 0 : 1;
393 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){
405 UStringPrepType retType; local
428 retType = getValues(result,value,isIndex);
430 if(retType != type){
431 pTestIDNA->errln( "FAIL: Did not get the expected type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]);
[all...]
/external/webkit/Source/WebCore/platform/gtk/
H A DPlatformScreenGtk.cpp128 Atom retType; local
134 0, 4, FALSE, XA_CARDINAL, &retType, &retFormat, &retNItems, &retAfter, (guchar**)&workAreaPos);
137 if (xRes == Success && workAreaPos != NULL && retType == XA_CARDINAL && retNItems == 4 && retFormat == 32) {
/external/javassist/src/main/javassist/
H A DCtMethod.java276 CtClass retType;
279 retType = getReturnType();
288 params, retType,
/external/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp203 /// @param retType function return type
214 llvm::Type *retType,
222 llvm::FunctionType::get(retType, theArgTypes, isVarArg);
1723 llvm::Type *retType = builder.getVoidTy(); local
1732 retType,
1742 retType = builder.getVoidTy();
1751 retType,
1761 retType = builder.getVoidTy();
1769 retType,
1779 retType
213 createFunction(llvm::Module &module, llvm::Type *retType, const ArgTypes &theArgTypes, const ArgNames &theArgNames, const std::string &functName, llvm::GlobalValue::LinkageTypes linkage, bool declarationOnly, bool isVarArg) argument
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DDeodexUtil.java181 TypeIdItem retType = TypeIdItem.lookupTypeIdItem(dexFile, methodRet);
182 if (retType == null) {
186 ProtoIdItem protoItem = ProtoIdItem.lookupProtoIdItem(dexFile, retType, paramListItem);
/external/javassist/src/main/javassist/util/proxy/
H A DRuntimeSupport.java148 * @param retType return type.
150 public static String makeDescriptor(Class[] params, Class retType) { argument
157 makeDesc(sbuf, retType);
H A DProxyFactory.java1164 Class retType = meth.getReturnType();
1165 addUnwrapper(code, retType);
1166 addReturn(code, retType);
/external/sonivox/jet_tools/JetCreator/
H A DJetUtils.py250 def IniGetValue(configFile, section, option, retType='str', default=''):
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/bytecode/
H A DSignatureAttribute.java229 Type retType; field in class:SignatureAttribute.MethodSignature
235 retType = ret;
256 public Type getReturnType() { return retType; }
276 sbuf.append(retType);
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DSymbolTable.h139 TFunction(const TString *name, TType& retType, TOperator tOp = EOpNull) : argument
141 returnType(retType),
/external/jdiff/src/jdiff/
H A DRootDocToXML.java540 com.sun.javadoc.Type retType = md[i].returnType();
541 if (retType.qualifiedTypeName().compareTo("void") == 0) {
546 emitType(retType);
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTracer.java40 String retType) {
43 returnType = retType;
39 Tracer(ClassPool classes, ConstPool cp, int maxStack, int maxLocals, String retType) argument
/external/clang/lib/AST/
H A DASTContext.cpp6292 QualType retType; local
6299 retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true);
6302 retType = mergeTypes(lbase->getResultType(), rbase->getResultType(), false,
6304 if (retType.isNull()) return QualType();
6307 retType = retType.getUnqualifiedType();
6316 if (getCanonicalType(retType) != LRetType)
6318 if (getCanonicalType(retType) != RRetType)
6402 return getFunctionType(retType, types.begin(), types.size(), EPI);
6439 return getFunctionType(retType, prot
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_runtime.cpp1257 QtMethodMatchType retType = types[0]; local
1258 args[0] = QVariant(retType.typeId(), (void *)0); // the return value

Completed in 1941 milliseconds

12