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

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/bin/
smtpd.py 334 lines = data.split('\n')
336 for line in lines:
347 lines = data.split('\n')
350 for line in lines:
354 lines.insert(i, 'X-Peer: %s' % peer[0])
355 data = NEWLINE.join(lines)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtpd.py 334 lines = data.split('\n')
336 for line in lines:
347 lines = data.split('\n')
350 for line in lines:
354 lines.insert(i, 'X-Peer: %s' % peer[0])
355 data = NEWLINE.join(lines)
  /prebuilts/python/linux-x86/2.7.5/bin/
smtpd.py 334 lines = data.split('\n')
336 for line in lines:
347 lines = data.split('\n')
350 for line in lines:
354 lines.insert(i, 'X-Peer: %s' % peer[0])
355 data = NEWLINE.join(lines)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtpd.py 334 lines = data.split('\n')
336 for line in lines:
347 lines = data.split('\n')
350 for line in lines:
354 lines.insert(i, 'X-Peer: %s' % peer[0])
355 data = NEWLINE.join(lines)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py 294 # first start num_context_lines[0] lines back, then
295 # num_context_lines[1] lines back if that didn't work, and so on.
296 # The last value should be huge (larger than the # of lines in a
    [all...]
OutputWindow.py 50 def writelines(self, lines):
51 for line in lines:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py 294 # first start num_context_lines[0] lines back, then
295 # num_context_lines[1] lines back if that didn't work, and so on.
296 # The last value should be huge (larger than the # of lines in a
    [all...]
OutputWindow.py 50 def writelines(self, lines):
51 for line in lines:
  /art/tools/
generate-operator-out.py 39 lines = codecs.open(filename, 'r', 'utf8', 'replace').read().split('\n')
46 for raw_line in lines:
104 # Skip blank lines.
  /external/chromium/chrome/browser/importer/
firefox2_importer.cc 104 std::vector<std::string> lines; local
105 base::SplitString(content, '\n', &lines);
108 for (size_t i = 0; i < lines.size(); ++i) {
110 TrimString(lines[i], " ", &line);
159 std::vector<std::string> lines; local
160 base::SplitString(content, '\n', &lines);
170 for (size_t i = 0; i < lines.size() && (!importer || !importer->cancelled());
173 TrimString(lines[i], " ", &line);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
filereader_unittest.py 49 def process(self, lines, file_path, test_kwarg=None):
50 self.processed.append((lines, file_path, test_kwarg))
  /external/chromium_org/third_party/flot/
jquery.flot.fillbetween.min.js 18 $.plot($("#placeholder"), dataset, { lines: { show: true, fill: true }});
30 */(function(e){function n(e){function t(e,t){var n;for(n=0;n<t.length;++n)if(t[n].id===e.fillBetween)return t[n];return typeof e.fillBetween=="number"?e.fillBetween<0||e.fillBetween>=t.length?null:t[e.fillBetween]:null}function n(e,n,r){if(n.fillBetween==null)return;var i=t(n,e.getData());if(!i)return;var s=r.pointsize,o=r.points,u=i.datapoints.pointsize,a=i.datapoints.points,f=[],l,c,h,p,d,v,m=n.lines.show,g=s>2&&r.format[2].y,y=m&&n.lines.steps,b=!0,w=0,E=0,S,x;for(;;){if(w>=o.length)break;S=f.length;if(o[w]==null){for(x=0;x<s;++x)f.pu (…)
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_unfilled.c 30 * Convert triangles to points or lines as needed.
92 static void lines( struct draw_stage *stage, function
148 lines( stage, header );
  /external/chromium_org/third_party/skia/src/views/animated/
SkStaticTextView.cpp 45 int lines = width > 0 ? SkTextLineBreaker::CountLines(fText.c_str(), fText.size(), fPaint, width) : 0; local
47 this->setHeight(lines * fPaint.getFontSpacing() + fMargin.fY * 2);
  /external/chromium_org/third_party/tlslite/scripts/
tlsdb.py 78 lines = s.splitlines()
80 for line in lines:
  /external/chromium_org/tools/cygprofile/
patch_orderfile.py 65 lines = f.readlines() variable
67 for line in lines:
  /external/eigen/bench/btl/data/
gnuplot_common_settings.hh 46 # set data style lines
47 # set function style lines
  /external/elfutils/libdwfl/
dwfl_module.c 57 if (cu->lines != NULL)
58 free (cu->lines);
  /external/emma/core/java12/com/vladium/emma/report/
MethodItem.java 113 final int [] lines = lineMap.keys (); local
116 final int [] blocks = (int []) lineMap.get (lines [l]);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_unfilled.c 30 * Convert triangles to points or lines as needed.
92 static void lines( struct draw_stage *stage, function
148 lines( stage, header );
  /external/skia/src/views/animated/
SkStaticTextView.cpp 45 int lines = width > 0 ? SkTextLineBreaker::CountLines(fText.c_str(), fText.size(), fPaint, width) : 0; local
47 this->setHeight(lines * fPaint.getFontSpacing() + fMargin.fY * 2);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_linecache.py 55 # Check whether lines correspond to those from file iteration
75 lines = linecache.getlines(support.TESTFN)
76 self.assertEqual(lines, ["\n", "def f():\n", " return 3\n"])
test_robotparser.py 36 lines = StringIO.StringIO(robots_txt).readlines()
38 parser.parse(lines)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_linecache.py 55 # Check whether lines correspond to those from file iteration
75 lines = linecache.getlines(support.TESTFN)
76 self.assertEqual(lines, ["\n", "def f():\n", " return 3\n"])
test_robotparser.py 36 lines = StringIO.StringIO(robots_txt).readlines()
38 parser.parse(lines)

Completed in 1348 milliseconds

<<11121314151617181920>>