/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/ |
MethodDef.java | 52 public Class<?> retType;
|
RmiSerializer.java | 120 Class<?> retType = readType(buffer); 131 def.retType = retType;
|
/external/javassist/src/main/javassist/expr/ |
Cast.java | 102 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; 141 retType = t; 155 gen.setType(retType); [all...] |
Instanceof.java | 105 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);
|
MethodCall.java | 208 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);
|
FieldAccess.java | 159 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...] |
NewArray.java | 176 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));
|
Expr.java | 211 static final boolean checkResultValue(CtClass retType, String prog) 217 if (!hasIt && retType != CtClass.voidType)
|
/dalvik/vm/arch/generic/ |
Call.cpp | 82 ffi_type* retType; 103 retType = getFfiType(*shorty); 114 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, dstArg, retType, types) != FFI_OK) {
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
sprpdata.c | 151 UStringPrepType retType; 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; 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/cintltst/ |
sprpdata.c | 152 UStringPrepType retType; 162 retType = getValues(result,&value,&isIndex); 165 if(type != retType && retType != USPREP_DELETE){ 187 length = (retType == USPREP_DELETE)? 0 : 1; 219 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){ 232 UStringPrepType retType; 256 retType = getValues(result, &value, &isIndex); 258 if(retType != type){ 259 log_err( "FAIL: Did not get the expected type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
testidn.cpp | 332 UStringPrepType retType; 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; 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/icu4c/test/intltest/ |
testidn.cpp | 333 UStringPrepType retType; 336 retType = getValues(result,value,isIndex); 339 if(type != retType && retType != USPREP_DELETE){ 361 length = (retType == USPREP_DELETE)? 0 : 1; 394 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){ 406 UStringPrepType retType; 429 retType = getValues(result,value,isIndex); 431 if(retType != type){ 432 pTestIDNA->errln( "FAIL: Did not get the expected type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); [all...] |
/external/javassist/src/main/javassist/ |
CtMethod.java | 276 CtClass retType; 279 retType = getReturnType(); 288 params, retType,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/ |
GLAPISpec.java | 110 String retType = words.get(0).trim(); 132 return new GLAPISpec(func, new GLDataTypeSpec(retType, null), glArgs);
|
/external/llvm/examples/ExceptionDemo/ |
ExceptionDemo.cpp | 203 /// @param retType function return type 214 llvm::Type *retType, 222 llvm::FunctionType::get(retType, theArgTypes, isVarArg); [all...] |
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/ |
DeodexUtil.java | 192 TypeIdItem retType = TypeIdItem.lookupTypeIdItem(dexFile, methodRet); 193 if (retType == null) { 197 ProtoIdItem protoItem = ProtoIdItem.lookupProtoIdItem(dexFile, retType, paramListItem);
|
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
importgl.h | 62 #define FNDEF(retType, funcName, args) IMPORTGL_API retType (*funcPtr_##funcName) args IMPORTGL_FNPTRINIT
|
/external/javassist/src/main/javassist/util/proxy/ |
RuntimeSupport.java | 148 * @param retType return type. 150 public static String makeDescriptor(Class[] params, Class retType) { 157 makeDesc(sbuf, retType);
|
ProxyFactory.java | [all...] |
/external/sonivox/jet_tools/JetCreator/ |
JetUtils.py | 250 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/ |
SignatureAttribute.java | 229 Type retType; 235 retType = ret; 256 public Type getReturnType() { return retType; } 276 sbuf.append(retType);
|
/external/chromium_org/third_party/angle/src/compiler/ |
SymbolTable.h | 136 TFunction(const TString *name, TType& retType, TOperator tOp = EOpNull) : 138 returnType(retType),
|
/frameworks/native/opengl/libs/GLES_trace/tools/ |
genapi.py | 156 """$!retType!$ GLTrace_$!func!$($!inputArgList!$) { 175 <!--(if retType != "void")--> 176 $!retType!$ retValue = glContext->hooks->gl.$!callsite!$; 182 <!--(if retType != "void")--> 206 <!--(if retType != "void")--> 339 retType = self.ret,
|
/external/jdiff/src/jdiff/ |
RootDocToXML.java | 540 com.sun.javadoc.Type retType = md[i].returnType(); 541 if (retType.qualifiedTypeName().compareTo("void") == 0) { 546 emitType(retType); [all...] |