Searched defs:retType (Results 1 - 21 of 21) sorted by relevance

/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 DExpr.java211 static final boolean checkResultValue(CtClass retType, String prog) argument
217 if (!hasIt && retType != CtClass.voidType)
/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);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dsprpdata.c152 UStringPrepType retType; local
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; local
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/
H A Dtestidn.cpp334 UStringPrepType retType; local
337 retType = getValues(result,value,isIndex);
340 if(type != retType && retType != USPREP_DELETE){
362 length = (retType == USPREP_DELETE)? 0 : 1;
395 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){
407 UStringPrepType retType; local
430 retType = getValues(result,value,isIndex);
432 if(retType != type){
433 pTestIDNA->errln( "FAIL: Did not get the expected type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]);
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dsprpdata.c152 UStringPrepType retType; local
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; local
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/icu/icu4c/source/test/intltest/
H A Dtestidn.cpp334 UStringPrepType retType; local
337 retType = getValues(result,value,isIndex);
340 if(type != retType && retType != USPREP_DELETE){
362 length = (retType == USPREP_DELETE)? 0 : 1;
395 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){
407 UStringPrepType retType; local
430 retType = getValues(result,value,isIndex);
432 if(retType != type){
433 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/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/chromium_org/third_party/angle/src/compiler/translator/
H A DSymbolTable.h188 TFunction(const TString *name, const TType &retType, TOperator tOp = EOpNull) argument
190 returnType(retType),
/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/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp203 /// @param retType function return type
214 llvm::Type *retType,
222 llvm::FunctionType::get(retType, theArgTypes, isVarArg);
1750 llvm::Type *retType = builder.getVoidTy(); local
1759 retType,
1769 retType = builder.getVoidTy();
1778 retType,
1788 retType = builder.getVoidTy();
1796 retType,
1806 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/deqp/modules/gles31/functional/
H A Des31fProgramUniformTests.cpp1119 const glu::DataType retType = getSamplerLookupReturnType(samplerTypes[i]); local
1120 if (typeReq[0](retType) || typeReq[1](retType))
/external/deqp/modules/gles3/functional/
H A Des3fUniformApiTests.cpp1303 const glu::DataType retType = getSamplerLookupReturnType(samplerTypes[i]); local
1304 if (typeReq[0](retType) || typeReq[1](retType))
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp1053 QualType retType = T; local
1055 if (const PointerType* PT = retType->getAs<PointerType>())
1057 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>())
H A DRewriteModernObjC.cpp1251 QualType retType = T; local
1253 if (const PointerType* PT = retType->getAs<PointerType>())
1255 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>())
/external/clang/lib/AST/
H A DASTContext.cpp6852 QualType retType; local
6859 retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true);
6862 retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false,
6864 if (retType.isNull()) return QualType();
6867 retType = retType.getUnqualifiedType();
6876 if (getCanonicalType(retType) != LRetType)
6878 if (getCanonicalType(retType) != RRetType)
6959 return getFunctionType(retType, types, EPI);
6995 return getFunctionType(retType, prot
[all...]
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/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/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 3454 milliseconds