Lines Matching defs:lists
248 static MethodMatcher* lists[OracleCommandCount] = { 0, };
252 return ((lists[command] != NULL) &&
254 lists[command]->match(method));
263 if (command == LogCommand && !LogCompilation && lists[LogCommand] == NULL)
265 lists[command] = new MethodMatcher(class_name, c_mode, method_name, m_mode, signature, lists[command]);
266 return lists[command];
275 lists[OptionCommand] = new MethodOptionMatcher(class_name, c_mode, method_name, m_mode,
276 signature, option, lists[OptionCommand]);
277 return lists[OptionCommand];
282 return lists[OptionCommand] != NULL &&
283 ((MethodOptionMatcher*)lists[OptionCommand])->match(method, option);
289 if (lists[ExcludeCommand] != NULL) {
290 if (lists[ExcludeCommand]->match(method)) {
296 if (lists[CompileOnlyCommand] != NULL) {
297 return !lists[CompileOnlyCommand]->match(method);
320 if (lists[LogCommand] == NULL) return true; // by default, log all
650 if (lists[PrintCommand] != NULL) {
746 lists[CompileOnlyCommand]->print();