Lines Matching defs:f

10 f = open(sys.argv[1], 'r').read()  variable
13 f = f.strip() variable
16 f = re.sub(r'\s*//\s*EMSCRIPTEN_START_ASM\s*', '', f) variable
17 f = re.sub(r'\s*//\s*EMSCRIPTEN_START_FUNCS\s*', '', f) variable
18 f = re.sub(r'\s*//\s*EMSCRIPTEN_END_ASM\s*', '', f) variable
19 f = re.sub(r'\s*//\s*EMSCRIPTEN_END_FUNCS\s*', '', f) variable
20 f = re.sub(r'\s*/\*\* @suppress {uselessCode} \*/\s*', '', f) variable
22 f = f.replace('Module["asm"] = (function(global,env,buffer) {', 'Module["asm"]=(function(global,env… variable
25 f = re.sub(r';new Int8Array\(\w+\);', ';', f) variable
26 f = re.sub(r';new Int16Array\(\w+\);', ';', f) variable
27 f = re.sub(r';new Int32Array\(\w+\);', ';', f) variable
28 f = re.sub(r';new Uint8Array\(\w+\);', ';', f) variable
29 f = re.sub(r';new Uint16Array\(\w+\);', ';', f) variable
30 f = re.sub(r';new Uint32Array\(\w+\);', ';', f) variable
31 f = re.sub(r';new Float32Array\(\w+\);', ';', f) variable
32 f = re.sub(r';new Float64Array\(\w+\);', ';', f) variable
33 f = f.replace(';new TextDecoder("utf8");', ';') variable
34 f = f.replace('}new TextDecoder("utf8");', '}') variable
35 f = f.replace(';new TextDecoder("utf-16le");', ';') variable
36 f = f.replace('}new TextDecoder("utf-16le");', '}') variable
41 f = re.sub(r'var (\w);\1\|\|\(\1=Module\);', r'var \1=Module;', f) variable
46 f = re.sub(r'\s*function\s*\(Module\)\s*{\s*Module\s*=\s*Module\s*\|\|\s*{\s*}\s*;\s*var\s+(\w+)\s*… variable
48 f = re.sub(r'\s+', ' ', f) variable
49 f = re.sub(r'[\n\s]+\n\s*', '\n', f) variable
50 f = re.sub(r'([;{}=,\+\-\*/\(\)\[\]])[\n]', r'\1', f) variable
51 f = re.sub(r'([;{}=,\*/\(\)\[\]])[\s]', r'\1', f) variable