Lines Matching refs:options
41 void failed(rtl::OString const & typeName, CppuOptions * options) { in failed() argument
42 fprintf(stderr, "%s ERROR: %s\n", options->getProgramName().getStr(), in failed()
49 codemaker::GeneratedTypeSet & generated, CppuOptions * options) in produce() argument
51 if (!produceType(rTypeKey, bIsExtraType, typeMgr, generated, options)) { in produce()
53 failed(typeName, options); in produce()
59 codemaker::GeneratedTypeSet & generated, CppuOptions * options) in produce() argument
61 if (!produceType(typeName, typeMgr, generated, options)) { in produce()
62 failed(typeName, options); in produce()
149 CppuOptions options; in SAL_IMPLEMENT_MAIN_WITH_ARGS() local
153 if (!options.initOptions(argc, argv)) in SAL_IMPLEMENT_MAIN_WITH_ARGS()
166 if (!typeMgr.init(options.getInputFiles(), options.getExtraInputFiles())) in SAL_IMPLEMENT_MAIN_WITH_ARGS()
168 …fprintf(stderr, "%s : init registries failed, check your registry files.\n", options.getProgramNam… in SAL_IMPLEMENT_MAIN_WITH_ARGS()
172 if (options.isValid("-B")) in SAL_IMPLEMENT_MAIN_WITH_ARGS()
174 typeMgr.setBase(options.getOption("-B")); in SAL_IMPLEMENT_MAIN_WITH_ARGS()
180 if (options.isValid("-T")) in SAL_IMPLEMENT_MAIN_WITH_ARGS()
182 OString tOption(options.getOption("-T")); in SAL_IMPLEMENT_MAIN_WITH_ARGS()
209 tmpName, typeMgr, generated, &options, true); in SAL_IMPLEMENT_MAIN_WITH_ARGS()
214 typeName.replace('.', '/'), typeMgr, generated, &options); in SAL_IMPLEMENT_MAIN_WITH_ARGS()
220 produceAllTypes("/", typeMgr, generated, &options, true); in SAL_IMPLEMENT_MAIN_WITH_ARGS()
225 produce("com/sun/star/uno/RuntimeException", typeMgr, generated, &options); in SAL_IMPLEMENT_MAIN_WITH_ARGS()
226 produce("com/sun/star/uno/TypeClass", typeMgr, generated, &options); in SAL_IMPLEMENT_MAIN_WITH_ARGS()
227 produce("com/sun/star/uno/XInterface", typeMgr, generated, &options); in SAL_IMPLEMENT_MAIN_WITH_ARGS()
232 options.getProgramName().getStr(), in SAL_IMPLEMENT_MAIN_WITH_ARGS()