Searched refs:ptrn (Results 1 - 6 of 6) sorted by relevance
/third_party/vk-gl-cts/scripts/src_util/ |
H A D | check_license.py | 72 for ptrn in SOURCE_FILES: 73 if fnmatch(file, ptrn):
|
/third_party/vk-gl-cts/scripts/ |
H A D | gen_android_bp.py | 88 for ptrn in patterns: 89 if fnmatch(filename, ptrn):
|
H A D | gen_android_mk.py | 69 for ptrn in patterns: 70 if fnmatch(filename, ptrn):
|
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
H A D | gen_framework_sc.py | 549 ptrn = r'typedef (struct|union)(\s*' + IDENT_PTRN + r')?\s*{([^}]*)}\s*(' + IDENT_PTRN + r')\s*;' 550 regPtrn = re.compile(ptrn) 610 ptrn = r'\s*typedef\s+' + object.name + r'\s+([^;]+)' 611 stash = re.findall(ptrn, src) 639 ptrn = r'VKAPI_ATTR\s+(' + TYPE_PTRN + ')\s+VKAPI_CALL\s+(' + IDENT_PTRN + r')\s*\(([^)]*)\)\s*;' 640 matches = re.findall(ptrn, src) 652 ptrn = r'VKAPI_ATTR\s+(' + TYPE_PTRN + ')\s+VKAPI_CALL\s+(' + IDENT_PTRN + r')\s*\(([^)]*)\)\s*;' 653 regPtrn = re.compile(ptrn) 664 ptrn = r'#define\s+[A-Z0-9_]+_EXTENSION_NAME\s+"([^"]+)"' 667 for part in re.finditer(ptrn, sr [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | pack.c | 102 GLubyte *ptrn = (GLubyte *) _mesa_unpack_image(2, 32, 32, 1, GL_COLOR_INDEX, in _mesa_unpack_polygon_stipple() local 104 if (ptrn) { in _mesa_unpack_polygon_stipple() 108 GLubyte *p = ptrn; in _mesa_unpack_polygon_stipple() 117 free(ptrn); in _mesa_unpack_polygon_stipple() 133 GLubyte ptrn[32*4]; in _mesa_pack_polygon_stipple() local 136 ptrn[i * 4 + 0] = (GLubyte) ((pattern[i] >> 24) & 0xff); in _mesa_pack_polygon_stipple() 137 ptrn[i * 4 + 1] = (GLubyte) ((pattern[i] >> 16) & 0xff); in _mesa_pack_polygon_stipple() 138 ptrn[i * 4 + 2] = (GLubyte) ((pattern[i] >> 8 ) & 0xff); in _mesa_pack_polygon_stipple() 139 ptrn[i * 4 + 3] = (GLubyte) ((pattern[i] ) & 0xff); in _mesa_pack_polygon_stipple() 142 _mesa_pack_bitmap(32, 32, ptrn, des in _mesa_pack_polygon_stipple() [all...] |
/third_party/vk-gl-cts/scripts/android/ |
H A D | install_apk.py | 58 ptrn = re.compile(r'^([a-zA-Z0-9\.\-:]+)\s+.*product:([^\s]+)\s+model:([^\s]+)\s+device:([^\s]+)') 64 m = ptrn.match(line.decode('utf-8'))
|
Completed in 6 milliseconds