reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
106 if (entry.deleted) continue; 107 if (entry.module) 108 if (entry.module != module_name) continue; 110 if (entry.module_regexp) 111 if (!entry.module_regexp->Execute(module_name.GetStringRef())) continue; 113 if (entry.symbol) 114 if (entry.symbol != function_name) continue; 116 if (entry.symbol_regexp) 117 if (!entry.symbol_regexp->Execute(function_name.GetStringRef())) 120 if (entry.first_instruction_only) 123 return entry.recognizer;