Home
last modified time | relevance | path

Searched refs:lastline (Results 1 – 16 of 16) sorted by relevance

/external/syslinux/gpxe/src/util/
Dget-pci-ids126 my $lastline = "";
130 print if($_ ne $lastline);
131 $lastline = $_;
/external/python/cpython2/Lib/idlelib/
DCallTipWindow.py22 self.lastline = None
29 if curline == self.lastline:
31 self.lastline = curline
130 self.parenline = self.parencol = self.lastline = None
/external/python/cpython2/Lib/idlelib/idle_test/
Dmock_tk.py138 lastline = len(self.data) - 1 # same as number of text lines
140 return lastline, len(self.data[lastline]) - 1
150 elif line > lastline:
/external/clang/tools/scan-build-py/libscanbuild/
Dclang.py32 def lastline(stream): function
48 line = lastline(child.stdout)
/external/python/cpython2/Tools/scripts/
Dtexcheck.py188 lastline = lineno
193 print 'Done checking %d lines.' % (lastline,)
/external/python/cpython2/Lib/email/
Dfeedparser.py349 lastline = preamble[-1]
350 eolmo = NLCRE_eol.search(lastline)
352 preamble[-1] = lastline[:-len(eolmo.group(0))]
/external/jemalloc/bin/
Djeprof.in1649 my $lastline = 0;
1653 if (($f eq $filename) && ($l > $lastline)) {
1654 $lastline = $l;
1670 my $oldlastline = $lastline;
1688 if ($l >= $lastline && $indent >= 0) {
1690 $lastline = $l+1;
1713 for (my $l = $firstline; $l <= $lastline; $l++) {
1768 ($line <= $lastline)) {
1786 AddEntry($samples1, $lastline, $running1);
1787 AddEntry($samples2, $lastline, $running2);
[all …]
/external/syslinux/com32/lua/src/
Dllex.h54 int lastline; /* line of last token `consumed' */ member
Dllex.c172 ls->lastline = 1; in luaX_setinput()
519 ls->lastline = ls->linenumber; in luaX_next()
Dlcode.c222 f->lineinfo[fs->pc] = fs->ls->lastline; in luaK_code()
/external/skia/third_party/lua/src/
Dllex.h54 int lastline; /* line of last token `consumed' */ member
Dllex.c165 ls->lastline = 1; in luaX_setinput()
512 ls->lastline = ls->linenumber; in luaX_next()
Dlcode.c222 f->lineinfo[fs->pc] = fs->ls->lastline; in luaK_code()
/external/python/cpython2/Lib/compiler/
Dpyassem.py606 self.lastline = 0
618 self.lastline = lineno
622 line = lineno - self.lastline
644 self.lastline = lineno
/external/python/cpython2/Lib/
Dmailbox.py225 lastline = None
234 lastline = line
235 if self._append_newline and lastline and not lastline.endswith(os.linesep):
/external/webrtc/talk/app/webrtc/
Dwebrtcsdp_unittest.cc2352 const std::string lastline = "a=ssrc:6 label:video_track_id_3"; in TEST_F() local
2353 EXPECT_EQ(lastline, error.line); in TEST_F()