Home | History | Annotate | Download | only in aidl

Lines Matching defs:Answer

8 struct Answer {
57 test(const Answer& answer)
60 while (answer.argv[argc]) {
67 int result = parse_options(argc, answer.argv, &options);
70 if (((bool)result) != ((bool)answer.result)) {
72 answer.result << endl;
82 if (!match_arrays(answer.systemSearchPath, options.systemSearchPath)) {
86 print_array(" ", answer.systemSearchPath);
91 if (!match_arrays(answer.localSearchPath, options.localSearchPath)) {
95 print_array(" ", answer.localSearchPath);
100 if (answer.inputFileName != options.inputFileName) {
102 << " expected " << answer.inputFileName << endl;
107 if (answer.nativeLanguage != options.nativeLanguage) {
109 << " expected " << answer.nativeLanguage << endl;
114 if (answer.outputH != options.outputH) {
116 << " expected " << answer.outputH << endl;
121 if (answer.outputCPP != options.outputCPP) {
123 << " expected " << answer.outputCPP << endl;
128 if (answer.outputJava != options.outputJava) {
130 << " expected " << answer.outputJava << endl;
137 const Answer g_tests[] = {