Home
last modified time | relevance | path

Searched refs:headerFile (Results 1 – 2 of 2) 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/vk-gl-cts/external/openglcts/scripts/
Dmustpass.py255 def getIncludeGuardName (headerFile): argument
256 return '_' + os.path.basename(headerFile).upper().replace('.', '_')