Home | History | Annotate | Download | only in net_internals

Lines Matching refs:lines

141  * whose length is a multiple of two.  Returns a string spanning multiple lines,
172 // Max sure the ASCII text on last line of output lines up with previous
173 // lines.
262 * Indent |lines| by |start|.
264 * For example, if |start| = ' -> ' and |lines| = ['line1', 'line2', 'line3']
271 function indentLines(start, lines) {
272 return start + lines.join('\n' + makeRepeatedString(' ', start.length));
301 * header lines.
383 var lines = [];
386 lines.push('Proxy server: ' + config.single_proxy);
390 lines.push('Proxy server for ' + urlScheme.toUpperCase() + ': ' +
395 lines.push('Proxy server for everything else: ' +
403 lines.push('Reversed bypass list: ');
405 lines.push('Bypass list: ');
409 lines.push(' ' + config.bypass_list[i]);
412 modes.push(lines);