Home
last modified time | relevance | path

Searched refs:headerFile (Results 1 – 3 of 3) sorted by relevance

/third_party/vk-gl-cts/scripts/src_util/
Dcheck_include_guards.py32 def getIncludeGuardName (headerFile): argument
33 return '_' + os.path.basename(headerFile).upper().replace('.', '_')
35 def hasValidIncludeGuard (headerFile): argument
36 includeGuard = getIncludeGuardName(headerFile)
37 f = open(headerFile, 'rt')
38 isHpp = headerFile[-4:] == ".hpp"
61 def fixIncludeGuard (headerFile): argument
62 f = open(headerFile, 'rt')
64 isHpp = headerFile[-4:] == ".hpp"
65 includeGuard = getIncludeGuardName(headerFile)
[all …]
/third_party/flutter/flutter/dev/tools/gen_keycodes/lib/
Dkey_data.dart176 Map<String, int> _readAndroidKeyCodes(String headerFile) {
179 headerFile = headerFile.replaceAllMapped(enumBlock, (Match match) => match.group(1));
182 for (Match match in enumEntry.allMatches(headerFile)) {
193 Map<String, int> _readGlfwKeyCodes(String headerFile) {
197 for (Match match in enumEntry.allMatches(headerFile)) {
/third_party/vk-gl-cts/external/openglcts/scripts/
Dmustpass.py255 def getIncludeGuardName (headerFile): argument
256 return '_' + os.path.basename(headerFile).upper().replace('.', '_')