Home | History | Annotate | Download | only in emugen

Lines Matching refs:baseName

93     std::string baseName = std::string(argv[optind]);
94 ApiGen apiEntries(baseName);
97 std::string typesFilename = inDir + "/" + baseName + TYPES_EXTENTION;
103 std::string filename = inDir + "/" + baseName + SPEC_EXTENSION;
111 apiEntries.genAttributesTemplate(inDir + "/" + baseName + ATTRIB_EXTENSION);
115 std::string attribFileName = inDir + "/" + baseName + ATTRIB_EXTENSION;
124 apiEntries.genOpcodes(encoderDir + "/" + baseName + "_opcodes.h");
125 apiEntries.genContext(encoderDir + "/" + baseName + "_client_context.h", ApiGen::CLIENT_SIDE);
126 apiEntries.genContextImpl(encoderDir + "/" + baseName + "_client_context.cpp", ApiGen::CLIENT_SIDE);
128 apiEntries.genProcTypes(encoderDir + "/" + baseName + "_client_proc.h", ApiGen::CLIENT_SIDE);
129 apiEntries.genFuncTable(encoderDir + "/" + baseName + "_ftable.h", ApiGen::CLIENT_SIDE);
131 apiEntries.genEntryPoints(encoderDir + "/" + baseName + "_entry.cpp", ApiGen::CLIENT_SIDE);
132 apiEntries.genEncoderHeader(encoderDir + "/" + baseName + "_enc.h");
133 apiEntries.genEncoderImpl(encoderDir + "/" + baseName + "_enc.cpp");
137 apiEntries.genOpcodes(decoderDir + "/" + baseName + "_opcodes.h");
138 apiEntries.genProcTypes(decoderDir + "/" + baseName + "_server_proc.h", ApiGen::SERVER_SIDE);
139 apiEntries.genContext(decoderDir + "/" + baseName + "_server_context.h", ApiGen::SERVER_SIDE);
140 apiEntries.genContextImpl(decoderDir + "/" + baseName + "_server_context.cpp", ApiGen::SERVER_SIDE);
141 apiEntries.genDecoderHeader(decoderDir + "/" + baseName + "_dec.h");
142 apiEntries.genDecoderImpl(decoderDir + "/" + baseName + "_dec.cpp");
146 apiEntries.genProcTypes(wrapperDir + "/" + baseName + "_wrapper_proc.h", ApiGen::WRAPPER_SIDE);
147 apiEntries.genContext(wrapperDir + "/" + baseName + "_wrapper_context.h", ApiGen::WRAPPER_SIDE);
148 apiEntries.genContextImpl(wrapperDir + "/" + baseName + "_wrapper_context.cpp", ApiGen::WRAPPER_SIDE);
149 apiEntries.genEntryPoints(wrapperDir + "/" + baseName + "_wrapper_entry.cpp", ApiGen::WRAPPER_SIDE);