Searched refs:ptrn (Results 1 – 7 of 7) sorted by relevance
/external/deqp/scripts/src_util/ |
D | check_license.py | 72 for ptrn in SOURCE_FILES: 73 if fnmatch(file, ptrn):
|
/external/deqp/scripts/ |
D | gen_android_bp.py | 74 for ptrn in patterns: 75 if fnmatch(filename, ptrn):
|
/external/deqp/external/vulkancts/scripts/ |
D | gen_framework.py | 521 ptrn = r'\s*typedef\s+' + object.name + r'\s+([^;]+)' 522 stash = re.findall(ptrn, src) 551 ptrn = r'VKAPI_ATTR\s+(' + TYPE_PTRN + ')\s+VKAPI_CALL\s+(' + IDENT_PTRN + r')\s*\(([^)]*)\)\s*;' 552 matches = re.findall(ptrn, src) 563 ptrn = r'VKAPI_ATTR\s+(' + TYPE_PTRN + ')\s+VKAPI_CALL\s+(' + IDENT_PTRN + r')\s*\(([^)]*)\)\s*;' 564 regPtrn = re.compile(ptrn) 575 ptrn = r'#define\s+[A-Z0-9_]+_EXTENSION_NAME\s+"([^"]+)"' 577 for part in re.finditer(ptrn, src): 601 ptrn = r'#define\s+([^\s]+)\s+([^\r\n]+)' 602 matches = re.findall(ptrn, src) [all …]
|
/external/tensorflow/tensorflow/contrib/framework/python/ops/ |
D | variables.py | 852 if any(reg_exp_func(ptrn, var.name) for ptrn in include_patterns): 861 if not any(reg_exp_func(ptrn, var.name) for ptrn in exclude_patterns):
|
/external/mesa3d/src/mesa/main/ |
D | pack.c | 100 GLubyte *ptrn = (GLubyte *) _mesa_unpack_image(2, 32, 32, 1, GL_COLOR_INDEX, in _mesa_unpack_polygon_stipple() local 102 if (ptrn) { in _mesa_unpack_polygon_stipple() 106 GLubyte *p = ptrn; in _mesa_unpack_polygon_stipple() 115 free(ptrn); in _mesa_unpack_polygon_stipple() 131 GLubyte ptrn[32*4]; in _mesa_pack_polygon_stipple() local 134 ptrn[i * 4 + 0] = (GLubyte) ((pattern[i] >> 24) & 0xff); in _mesa_pack_polygon_stipple() 135 ptrn[i * 4 + 1] = (GLubyte) ((pattern[i] >> 16) & 0xff); in _mesa_pack_polygon_stipple() 136 ptrn[i * 4 + 2] = (GLubyte) ((pattern[i] >> 8 ) & 0xff); in _mesa_pack_polygon_stipple() 137 ptrn[i * 4 + 3] = (GLubyte) ((pattern[i] ) & 0xff); in _mesa_pack_polygon_stipple() 140 _mesa_pack_bitmap(32, 32, ptrn, dest, packing); in _mesa_pack_polygon_stipple()
|
/external/deqp/scripts/android/ |
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)
|
/external/scapy/scapy/layers/ |
D | dot11.py | 404 self.ptrn = re.compile(pattern.encode()) 418 if not self.ptrn.match(pay):
|