Lines Matching refs:res
589 let res = genFunctionCode(classInfo);
590 files.iServiceH = replaceAll(files.iServiceH, '[funcEnum]', res.funcEnumStr);
591 files.iServiceH = replaceAll(files.iServiceH, '[functions]', res.iServiceFuncH);
592 files.proxyH = replaceAll(files.proxyH, '[functions]', res.proxyFuncH);
593 files.stubH = replaceAll(files.stubH, '[innerFuncDef]', res.stubInnerFuncH);
594 files.serviceH = replaceAll(files.serviceH, '[functions]', res.proxyFuncH);
595 files.proxyCpp = replaceAll(files.proxyCpp, '[remoteFuncImpl]', res.proxyFuncCpp);
596 files.stubCpp = replaceAll(files.stubCpp, '[innerFuncMap]', res.stubInnerFuncMap);
597 files.stubCpp = replaceAll(files.stubCpp, '[innerFuncImpl]', res.stubInnerFuncCpp);
598 files.serviceCpp = replaceAll(files.serviceCpp, '[serviceFuncImpl]', res.serviceFuncCpp);
599 files.clientCpp = replaceAll(files.clientCpp, '[clientFuncInvoke]', res.clientFuncCpp);
600 files.clientCpp = replaceAll(files.clientCpp, '[clientFuncParaMessage]', res.clientFuncMessage);
601 files.clientCpp = replaceAll(files.clientCpp, '[clientFuncParaLogMessage]', res.clientFuncLogMessage);
751 genResult.clientFuncCpp += 'res = proxy->%s(%s);'.format(funcList[i].name, clientParamStr);