Home
last modified time | relevance | path

Searched refs:uppercase (Results 1 – 8 of 8) sorted by relevance

/qemu/scripts/codeconverter/codeconverter/
H A Dqom_type_info.py77 def uppercase(self) -> Optional[str]: member in TypeDefinition
133 def uppercase(self) -> Optional[str]: member in TypeInfoVar
328 uppercase = find_typename_uppercase(self.allfiles, typename)
329 if not uppercase:
450 def find_type_definitions(files: FileList, uppercase: str) -> Iterable[TypeDefinition]:
454 m.debug("uppercase: %s", m.uppercase)
457 if m.uppercase == uppercase)
461 def gen_patches_for_type(self, uppercase: str,
464 defs = list(find_type_definitions(self.allfiles, uppercase))
466 self.warn("multiple definitions for %s", uppercase)
[all …]
H A Dqom_macros.py49 uppercase: Optional[str] = None variable in TypeIdentifiers
79 if self.uppercase is None:
88 if (self.uppercase is not None
92 (self.uppercase, self.typename))
279 and my_ids.uppercase is not None
280 and (my_ids.uppercase == m.type_identifiers.uppercase
320 uppercase = None
331 uppercase = self.name
335 uppercase = self.name[:-len(expected_suffix)]
337 instancetype=instancetype, uppercase=uppercase)
[all …]
/qemu/tests/qapi-schema/
H A Dalternate-clash.err2 alternate-clash.json:6: name of 'data' member 'a_b' must not use uppercase or '_'
H A Denum-member-case.err2 enum-member-case.json:4: name of 'data' member 'Value' must not use uppercase or '_'
H A Dargs-member-case.err2 args-member-case.json:2: name of 'data' member 'Arg' must not use uppercase or '_'
/qemu/qapi/
H A Dpragma.json80 # Externally visible types whose member names may use uppercase
/qemu/ui/
H A Dvnc.c1919 int uppercase = !!(sym >= 'A' && sym <= 'Z'); in do_key_event() local
1923 if (uppercase == shift) { in do_key_event()
1928 if (uppercase != shift) { in do_key_event()
/qemu/docs/devel/
H A Dqapi-code-gen.rst193 names may contain uppercase letters, and ``"_"`` instead of ``"-"``.