Lines Matching full:prefix
90 # practice, we can rename our local variables with a leading _ prefix,
178 def __init__(self, prefix: str):
180 prefix, 'qapi-events',
182 self._event_enum_name = c_name(prefix + 'QAPIEvent', protect=False)
184 self._event_emit_name = c_name(prefix + 'qapi_event_emit')
192 #include "%(prefix)sqapi-emit-events.h"
201 prefix=self._prefix))
212 #include "%(prefix)sqapi-emit-events.h"
214 prefix=self._prefix))
248 prefix: str) -> None:
249 vis = QAPISchemaGenEventVisitor(prefix)