Home | History | Annotate | Download | only in emugen

Lines Matching refs:baseName

92     std::string baseName = std::string(argv[optind]);
93 ApiGen apiEntries(baseName);
96 std::string typesFilename = inDir + "/" + baseName + TYPES_EXTENTION;
102 std::string filename = inDir + "/" + baseName + SPEC_EXTENSION;
110 apiEntries.genAttributesTemplate(inDir + "/" + baseName + ATTRIB_EXTENSION);
114 std::string attribFileName = inDir + "/" + baseName + ATTRIB_EXTENSION;
123 apiEntries.genOpcodes(encoderDir + "/" + baseName + "_opcodes.h");
124 apiEntries.genContext(encoderDir + "/" + baseName + "_client_context.h", ApiGen::CLIENT_SIDE);
125 apiEntries.genContextImpl(encoderDir + "/" + baseName + "_client_context.cpp", ApiGen::CLIENT_SIDE);
127 apiEntries.genProcTypes(encoderDir + "/" + baseName + "_client_proc.h", ApiGen::CLIENT_SIDE);
128 apiEntries.genFuncTable(encoderDir + "/" + baseName + "_ftable.h", ApiGen::CLIENT_SIDE);
130 apiEntries.genEntryPoints(encoderDir + "/" + baseName + "_entry.cpp", ApiGen::CLIENT_SIDE);
131 apiEntries.genEncoderHeader(encoderDir + "/" + baseName + "_enc.h");
132 apiEntries.genEncoderImpl(encoderDir + "/" + baseName + "_enc.cpp");
136 apiEntries.genOpcodes(decoderDir + "/" + baseName + "_opcodes.h");
137 apiEntries.genProcTypes(decoderDir + "/" + baseName + "_server_proc.h", ApiGen::SERVER_SIDE);
138 apiEntries.genContext(decoderDir + "/" + baseName + "_server_context.h", ApiGen::SERVER_SIDE);
139 apiEntries.genContextImpl(decoderDir + "/" + baseName + "_server_context.cpp", ApiGen::SERVER_SIDE);
140 apiEntries.genDecoderHeader(decoderDir + "/" + baseName + "_dec.h");
141 apiEntries.genDecoderImpl(decoderDir + "/" + baseName + "_dec.cpp");
145 apiEntries.genProcTypes(wrapperDir + "/" + baseName + "_wrapper_proc.h", ApiGen::WRAPPER_SIDE);
146 apiEntries.genContext(wrapperDir + "/" + baseName + "_wrapper_context.h", ApiGen::WRAPPER_SIDE);
147 apiEntries.genContextImpl(wrapperDir + "/" + baseName + "_wrapper_context.cpp", ApiGen::WRAPPER_SIDE);
148 apiEntries.genEntryPoints(wrapperDir + "/" + baseName + "_wrapper_entry.cpp", ApiGen::WRAPPER_SIDE);