HomeSort by relevance Sort by last modified time
    Searched refs:lines (Results 76 - 100 of 426) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Tools/CodeCoverage/
cov.py 85 Parse one source file and return a list of lines
136 lines = open(f, "r").readlines()
137 results[f] = (len(lines), 0, "".join(lines))
144 # Our requirement is that we have the same amount of lines as
147 lines = open(cov_file, "r").readlines()
153 if len(lines) != len(base_gcov_lines):
154 print "Error Base: %s and Target: %s have different amount of lines" % (possible_gcovs[0],cov_file)
158 # and the same number of lines things might work out
161 for line in lines
    [all...]
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseSvnPropertyValue.pl 114 multiple lines.
118 expectedReturn => ["A\nlong sentence that spans\nmultiple lines.", "\n"],
127 multiple lines.
132 expectedReturn => ["A\r\nlong sentence that spans\r\nmultiple lines.", "\r\n"],
141 multiple lines.
144 expectedReturn => ["A\nlong sentence that spans\nmultiple lines.", " + A single-line.\n"],
153 multiple lines.
156 expectedReturn => ["A\nlong sentence that spans\nmultiple lines.", "Added: svn:executable\n"],
165 multiple lines.
168 multiple lines
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
diff_parser.py 74 """Gets a converter function of diff lines.
94 The field "lines" is a list which contains tuples in this format:
105 return [line[1] for line in self.lines if not line[0]]
109 self.lines = []
112 self.lines.append((0, line_number, line))
115 self.lines.append((line_number, 0, line))
118 self.lines.append((deleted_line_number, new_line_number, line))
181 # Nothing to do. We may still have some added lines.
  /external/wpa_supplicant/wpa_gui/
scanresults.ui.h 52 QStringList lines = QStringList::split(QChar('\n'), res); local
54 for (QStringList::Iterator it = lines.begin(); it != lines.end(); it++) {
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
scanresults.ui.h 52 QStringList lines = QStringList::split(QChar('\n'), res); local
54 for (QStringList::Iterator it = lines.begin(); it != lines.end(); it++) {
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui/
scanresults.ui.h 52 QStringList lines = QStringList::split(QChar('\n'), res); local
54 for (QStringList::Iterator it = lines.begin(); it != lines.end(); it++) {
  /external/libvpx/examples/includes/geshi/geshi/
povray.php 176 # normal hash lines
  /external/quake/quake/src/QW/client/
console.h 43 extern int con_notifylines; // scan lines to clear for notify lines
49 void Con_DrawConsole (int lines);
  /external/v8/test/mjsunit/
debug-sourceslice.js 29 // Source lines for test.
30 var lines = [ 'function a() { b(); };\n', variable
42 // Build source by putting all lines together
44 for (var i = 0; i < lines.length; i++) {
45 source += lines[i];
61 for (var slice_size = 0; slice_size < lines.length; slice_size++) {
62 for (var n = 0; n < lines.length - slice_size; n++) {
70 expected += lines[n + i];
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
python.py 30 """Processes text lines for checking style."""
36 def check(self, lines):
  /frameworks/base/opengl/libs/GLES2_dbg/
generate_caller_cpp.py 25 def generate_caller(lines):
30 for line in lines:
131 lines = open("gl2_api_annotated.in").readlines() variable
132 output = generate_caller(lines)
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatReceiver.java 139 public void processNewLines(String[] lines) {
141 processLogLines(lines);
146 private void processLogLines(String[] lines) {
147 List<LogCatMessage> messages = mLogCatMessageParser.processLogLines(lines,
  /external/webkit/Tools/iExploder/iexploder-1.3.2/htdocs/
iexploder.rb 29 attr_accessor :offset, :lines, :stop_num
229 if (@mangledTagTotal >= @offset) && (@mangledTagTotal < (@offset + @lines))
248 # If we are at line 30 with 8 extra lines, there is no point to try line 31
249 # with 8 lines as well.. skip back to 1 and bump up the line count.
251 if (@offset + @lines) > @htmlMaxTags
252 nextNum = ((@lines * 2 -1)) * @htmlMaxTags
265 @lines = @subtest_num.div(@htmlMaxTags) + 1
273 if (! @lookup_mode) && (@lines <= @htmlMaxTags) && (@stop_num != @test_num)
325 test.lines=0
327 while test.lines < ma
    [all...]
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_stereo_proc.cpp 355 sfbNo = mp3_sfBandIndex[sfreq].l[sfbTemp+1] - mp3_sfBandIndex[sfreq].l[sfbTemp]; /* No of lines to process */
373 sfbNo = mp3_sfBandIndex[sfreq].s[sfbTemp+1] - mp3_sfBandIndex[sfreq].s[sfbTemp]; /* No of lines to process */
405 int32 lines; local
406 lines = mp3_sfBandIndex[sfreq].s[sfb+1] - mp3_sfBandIndex[sfreq].s[sfb];
407 i = 3 * mp3_sfBandIndex[sfreq].s[sfb] + (j + 1) * lines - 1;
409 while (lines > 0)
415 lines = -10;
417 lines--;
449 sfbNo = mp3_sfBandIndex[sfreq].s[sfbTemp+1] - mp3_sfBandIndex[sfreq].s[sfbTemp]; /* No of lines to process */
488 int32 lines = mp3_sfBandIndex[sfreq].s[sfb+1] - mp3_sfBandIndex[sfreq].s[sfb] local
    [all...]
  /dalvik/dx/tests/069-dex-source-position/
run 22 dx --debug --dex --no-optimize --positions=lines --no-locals \
  /external/markdown/markdown/
blockparser.py 48 def parseDocument(self, lines):
51 Given a list of lines, an ElementTree object (not just a parent Element)
58 # Create a ElementTree from the lines
60 self.parseChunk(self.root, '\n'.join(lines))
67 blocks which will be split on blank lines, it could contain only one
  /external/markdown/markdown/extensions/
abbr.py 43 def run(self, lines):
50 for line in lines:
fenced_code.py 26 Include tilde's in a code block and wrap with blank lines:
86 def run(self, lines):
88 text = "\n".join(lines)
  /external/quake/quake/src/WinQuake/
draw.h 32 void Draw_ConsoleBackground (int lines);
  /external/webkit/Source/WebCore/css/
view-source.css 32 counter-reset: lines;
74 content: counter(lines);
75 counter-increment: lines;
130 -webkit-border-fit: lines;
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthWeekEventsView.java 218 * checking and reallocation. Used for drawing lines.
553 float lines[] = new float[8 * 4]; local
561 lines[i++] = xOffset;
562 lines[i++] = 0;
563 lines[i++] = xOffset;
564 lines[i++] = mHeight;
568 lines[i++] = 0;
569 lines[i++] = 0;
570 lines[i++] = mWidth;
571 lines[i++] = 0
    [all...]
  /sdk/chimpchat/test/com/android/chimpchat/adb/
AdbChimpDeviceTest.java 41 List<String> lines = Resources.readLines(resource, Charset.defaultCharset()); local
42 return Joiner.on("\r\n").join(lines);
  /external/elfutils/tests/
run-get-lines.sh 22 ./get-lines testfile testfile2 > get-lines.out
24 diff -u get-lines.out - <<"EOF"
26 5 lines
33 4 lines
39 4 lines
45 4 lines
51 4 lines
57 5 lines
65 rm -f testfile testfile2 get-lines.ou
    [all...]
  /external/webkit/Source/WebCore/html/
ValidationMessage.cpp 83 Vector<String> lines; local
84 m_message.split('\n', lines);
87 for (unsigned i = 0; i < lines.size(); ++i) {
90 m_bubbleMessage->appendChild(Text::create(doc, lines[i]), ec);
93 bold->setInnerText(lines[i], ec);
  /ndk/sources/host-tools/sed-4.2.1/doc/
sed.x 124 Replace the selected lines with
197 case the command will be executed for all input lines;
199 for input lines which match that address; or with two
201 for all input lines which match the inclusive range of
202 lines starting from the first address and continuing to
242 For example, ``sed -n 1~2p'' will print all the odd-numbered lines in
254 Match lines matching the regular expression
258 Match lines matching the regular expression
288 lines following
294 and the lines followin
    [all...]

Completed in 513 milliseconds

1 2 34 5 6 7 8 91011>>