HomeSort by relevance Sort by last modified time
    Searched refs:lines (Results 626 - 650 of 1071) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process.py 67 lines = []
72 lines.append(l)
73 return lines
  /external/chromium_org/third_party/jinja2/
lexer.py 598 lines = source.splitlines()
602 lines.append('')
604 source = '\n'.join(lines)
  /external/chromium_org/v8/tools/
grokdump.py 123 lines = reader.GetDisasmLines(start, size)
124 for line in lines:
718 def CountUndefinedInstructions(lines):
720 return sum([line.count(pattern) for (ignore, line) in lines])
866 def PrintLines(self, lines):
868 print "\n".join("%s%s" % (indent, line) for line in lines)
    [all...]
  /external/v8/src/
d8.js 856 // Default is ten lines starting five lines before the current location.
859 // line. Set it to start from 5 lines before the current location.
862 // source start line. Set it to start from 1 lines before the current
868 var lines = 10;
874 from = Debug.State.displaySourceStartLine - lines;
877 lines = parseInt(args[1]) - from + 1; // inclusive of the ending line.
882 Debug.State.displaySourceEndLine = from + lines - 1;
883 var sourceArgs = '' + from + ' ' + lines;
893 // Default is ten lines starting five lines before the current location
2164 var lines = source.split('\\n'); variable
    [all...]
messages.js 419 // Default is the first line in the script. Lines in the script is relative
453 * specified in lines.
457 * inclusive). Default is the number of lines in the script
493 // Default is the first line in the script. Lines in the script are relative
514 * Returns the number of source lines.
516 * Number of source lines.
519 // Return number of source lines.
699 * The to_line and to_position are not included in the slice, that is the lines
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
socket.py 329 lines = filter(None, map(str, list))
330 self._wbuf_len += sum(map(len, lines))
331 self._wbuf.extend(lines)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_calendar.py 179 lines = []
183 lines.append(line)
184 return lines
test_zipfile.py 46 # Make a source file with some lines
76 lines = directory.splitlines()
77 self.assertEqual(len(lines), 4) # Number of files + header
79 self.assertIn('File Name', lines[0])
80 self.assertIn('Modified', lines[0])
81 self.assertIn('Size', lines[0])
83 fn, date, time_, size = lines[1].split()
610 # Make a source file with some lines
652 lines = directory.splitlines()
653 self.assertEqual(len(lines), 4) # Number of files + heade
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
socket.py 329 lines = filter(None, map(str, list))
330 self._wbuf_len += sum(map(len, lines))
331 self._wbuf.extend(lines)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_calendar.py 179 lines = []
183 lines.append(line)
184 return lines
test_zipfile.py 46 # Make a source file with some lines
76 lines = directory.splitlines()
77 self.assertEqual(len(lines), 4) # Number of files + header
79 self.assertIn('File Name', lines[0])
80 self.assertIn('Modified', lines[0])
81 self.assertIn('Size', lines[0])
83 fn, date, time_, size = lines[1].split()
610 # Make a source file with some lines
652 lines = directory.splitlines()
653 self.assertEqual(len(lines), 4) # Number of files + heade
    [all...]
  /sdk/attribute_stats/src/
Analyzer.java 468 String[] lines = metadata.split("\n"); local
469 for (int i = 0; i < lines.length; i++) {
470 String line = lines[i];
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptParser.java 681 // attributes end up on subsequent lines we don't find it on
744 * @param lines The array of lines
749 private static final Matcher getNextLineMatcher(String[] lines,
752 if (nextIndex == lines.length) {
758 Matcher m = pattern.matcher(lines[nextIndex]);
  /external/chromium_org/chrome/test/functional/perf/endure_graphs/js/
plotter.js 214 * Draws a chart using a canvas element. Takes an array of lines to draw.
217 * @param {Array} plotData list of arrays that represent individual lines. The
235 * the second set of lines. {@code plotData} in the range of
236 * [0, {@code graphsOtherStartIndex}) are treated as the first set of lines,
241 * set of lines.
247 * @param {boolean} stackedGraph Whether or not the first set of lines is
249 * @param {boolean} stackedGraphOther Whether or not the second set of lines is
396 // Draw all data lines in the reverse order so the last graph appears on
697 * Finds the closest lines (upside and downside of the cursor position).
701 function findClosestLines(lines, opt_startIndex, opt_endIndex)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
case.py 795 lines = []
797 lines.append('Items in the first set but not the second:')
799 lines.append(repr(item))
801 lines.append('Items in the second set but not the first:')
803 lines.append(repr(item))
805 standardMsg = '\n'.join(lines)
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/timeline/
trace_event_importer_unittest.py 640 lines = [
647 text = '\n'.join(lines)
671 lines = [
678 text = '\r\n'.join(lines)
686 lines = [
692 text = '\n'.join(lines)
    [all...]
  /external/opencv/cv/include/
cvcompat.h 505 float* lines, int linesNumber )
507 CvMat linesMat = cvMat( 1, linesNumber, CV_32FC2, lines );
518 int* lines, int linesNumber )
520 CvMat linesMat = cvMat( 1, linesNumber, CV_32SC4, lines );
530 float* lines, int linesNumber )
532 CvMat linesMat = cvMat( 1, linesNumber, CV_32FC2, lines );
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/gapi/
SDL_gapivideo.c 859 static int updateLine8to8(_THIS, unsigned char *srcPointer, unsigned char *destPointer, int width, int height, int lines)
879 static int updateLine16to16(_THIS, PIXEL *srcPointer, PIXEL *destPointer, int width, int height, int lines)
897 || (lines == 1) )
907 /* read two lines at the same time, write DWORD */
969 if( (((unsigned)destPointer & 3) != 0) || (lines == 1) )
995 static int updateLine16to4(_THIS, PIXEL *srcPointer, unsigned char *destPointer, int width, int height, int lines, int yNibble, int xNibble)
1015 if( lines == 1 )
    [all...]
  /external/v8/tools/
grokdump.py 606 def PrintLines(self, lines):
608 print "\n".join("%s%s" % (indent, line) for line in lines)
908 lines = self.heap.reader.GetDisasmLines(self.entry, self.instruction_size)
912 p.PrintLines(self._FormatLine(line) for line in lines)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
peers.cpp 406 QStringList lines = info.split(QRegExp("\\n")); local
409 for (QStringList::Iterator it = lines.begin();
410 it != lines.end(); it++) {
422 name = lines[0];
430 lines[0]);
444 item->setData(lines[0], peer_role_address);
592 QStringList lines = bss.split(QRegExp("\\n")); local
593 for (QStringList::Iterator it = lines.begin();
594 it != lines.end(); it++) {
629 for (int i = 0; i < lines.size(); i++)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/tests/
G726EncTest.c 159 int lines[500] = {0}; variable
177 while((lines[e]!=0)&& (e<500) ){
181 lines[e]=line;
200 lines[q]=0;
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
GeeTestResultParser.java 81 * [ RUN ]: indicates a new test has started to run; a series of zero or more lines may
90 * All other lines are ignored.
257 public void processNewLines(String[] lines) {
258 for (String line : lines) {
  /external/chromium-trace/trace-viewer/build/
parse_deps.py 267 lines = stripped_text.split('\n')
268 for line in lines:
  /external/chromium_org/chrome/browser/resources/web_dev_style/
css_checker.py 351 lines = f[1].splitlines()
352 for lnum, line in enumerate(lines):
  /external/chromium_org/chrome/test/chromedriver/
run_buildbot_steps.py 147 lines = f.readlines()
149 lambda x: 'kMinimumSupportedChromeVersion' in x, lines)

Completed in 870 milliseconds

<<21222324252627282930>>