HomeSort by relevance Sort by last modified time
    Searched refs:retType (Results 1 - 25 of 57) sorted by null

1 2 3

  /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)
  /frameworks/rs/rsov/compiler/spirit/
builder.cpp 41 Builder::MakeFunctionDefinition(Instruction *retType, FunctionControl ctrl,
43 FunctionInst *func = MakeFunction(retType, ctrl, funcType);
builder.h 33 FunctionDefinition *MakeFunctionDefinition(Instruction *retType,
module.cpp 323 TypeFunctionInst *Module::getFunctionType(Instruction *retType,
326 return getGlobalSection()->getFunctionType(retType, argType, numArg);
330 Module::getFunctionType(Instruction *retType,
332 return getGlobalSection()->getFunctionType(retType, argTypes.data(),
837 TypeFunctionInst *GlobalSection::getFunctionType(Instruction *retType,
842 if (type->mOperand1.mInstruction != retType ||
854 TypeFunctionInst *funcTy = mBuilder->MakeTypeFunction(retType);
module.h 176 TypeFunctionInst *getFunctionType(Instruction *retType,
179 TypeFunctionInst *getFunctionType(Instruction *retType,
426 TypeFunctionInst *getFunctionType(Instruction *retType,
  /external/icu/icu4c/source/test/cintltst/
sprpdata.c 154 UStringPrepType retType;
164 retType = getValues(result,&value,&isIndex);
167 if(type != retType && retType != USPREP_DELETE){
189 length = (retType == USPREP_DELETE)? 0 : 1;
221 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){
234 UStringPrepType retType;
258 retType = getValues(result, &value, &isIndex);
260 if(retType != type){
261 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/
testidn.cpp 336 UStringPrepType retType;
339 retType = getValues(result,value,isIndex);
342 if(type != retType && retType != USPREP_DELETE){
364 length = (retType == USPREP_DELETE)? 0 : 1;
397 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){
409 UStringPrepType retType;
432 retType = getValues(result,value,isIndex);
434 if(retType != type){
435 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,
  /frameworks/rs/rsov/compiler/
Builtin.cpp 193 for (auto retType : retTypes) {
195 if (retType != "*") {
196 if (retType.back() == '+') {
197 retType.pop_back();
199 retType.append(1, '0' + width);
202 suffixed.append("_").append(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);
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/hlsl/
hlslParseables.cpp 229 inline bool IsValidGlsl(const char* cname, char retOrder, char retType, char argOrder, char argType,
246 (retOrder == 'M' && (retType == 'I' || retType == 'U' || retType == 'B')))
384 const char* retType; // return type key: empty matches type of 1st argument
389 // name retOrd retType argOrder argType stage mask
    [all...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 205 /// @param retType function return type
216 llvm::Type *retType,
224 llvm::FunctionType::get(retType, theArgTypes, isVarArg);
    [all...]
  /external/swiftshader/third_party/LLVM/examples/ExceptionDemo/
ExceptionDemo.cpp 210 /// @param retType function return type
221 llvm::Type *retType,
229 llvm::FunctionType::get(retType, theArgTypes, isVarArg);
    [all...]
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
importgl.h 55 #define FNDEF(retType, funcName, args) \
56 IMPORTGL_API retType (*funcPtr_##funcName) args IMPORTGL_FNPTRINIT;\
57 typedef retType (*funcType_##funcName) args
  /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);
  /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);
  /frameworks/rs/script_api/
Specification.cpp 533 std::string* retType, int* lineNumber) const {
534 *retType = expandString(mReturn->type, replacementIndexes);
742 string retType;
744 spec->getReturn(replacementIndexes, &retType, &lineNumber);
745 if (!retType.empty()) {
747 mReturn->parseParameterDefinition(retType, "", "", lineNumber, true, scanner);
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
SymbolTable.h 148 TFunction(const TString *name, const TType& retType, TOperator tOp = EOpNull, const char *ext = "") :
150 returnType(retType),
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
SymbolTable.h 209 TFunction(const TString *name, const TType& retType, TOperator tOp = EOpNull) :
213 defined(false), prototyped(false) { returnType.shallowCopy(retType); }

Completed in 1040 milliseconds

1 2 3