Lines Matching defs:const
41 const fs = require('fs');
42 const cp = require('child_process');
43 const { Buffer } = require('buffer');
44 const os = {
48 const arg = args[args.length - 1];
62 const match = out.match(/(?:^|\n)([^\n]*xcodebuild[^\n]*)(?:\n|$)/);
70 const print = console.log;
74 const quit = process.exit;
76 const logFile = globalThis.arguments[globalThis.arguments.length - 1];
83 const fd = fs.openSync(logFile, 'r');
84 const buf = Buffer.allocUnsafe(4096);
85 const dec = new (require('string_decoder').StringDecoder)('utf-8');
89 const message = versionCheck(peekline(), process.versions.v8);
94 const s = readline();
101 const lineBreak = line.indexOf('\n');
103 const res = line.slice(0, lineBreak);
107 const bytes = fs.readSync(fd, buf, 0, buf.length);
128 const curVer = expected.split(/[.-]/);
141 const FUNC_RE = /^([0-9a-fA-F]{8,16} [iItT] )(.*)$/gm;
142 const CLEAN_RE = /^[0-9a-fA-F]{8,16} [iItT] /;