/external/google-breakpad/src/processor/ |
basic_source_line_resolver_types.h | 67 lines() { } 68 RangeMap< MemAddr, linked_ptr<Line> > lines; member in struct:google_breakpad::BasicSourceLineResolver::Function
|
/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/strace/tests/ |
sigaction.awk | 33 lines = 5
|
/external/toybox/tests/ |
wc.test | 11 lines
|
/frameworks/av/services/camera/libcameraservice/device3/ |
Camera3ZslStream.cpp | 273 String8 lines; local 274 lines.appendFormat(" Stream[%d]: ZSL\n", mId); 275 write(fd, lines.string(), lines.size()); 279 lines = String8(); 280 lines.appendFormat(" Input buffers pending: %zu, in flight %zu\n", 282 write(fd, lines.string(), lines.size());
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
StringIO.py | 170 lines thus read. 173 to EOF, whole lines totalling approximately sizehint bytes (or more 177 lines = [] 180 lines.append(line) 185 return lines 284 lines = open(file, 'r').readlines() 287 for line in lines[:-2]: 289 f.writelines(lines[-2:]) 294 f.seek(len(lines[0])) 295 f.write(lines[1] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
StringIO.py | 170 lines thus read. 173 to EOF, whole lines totalling approximately sizehint bytes (or more 177 lines = [] 180 lines.append(line) 185 return lines 284 lines = open(file, 'r').readlines() 287 for line in lines[:-2]: 289 f.writelines(lines[-2:]) 294 f.seek(len(lines[0])) 295 f.write(lines[1] [all...] |
/external/elfutils/src/libdwfl/ |
dwfl_module_getsrc_file.c | 67 return &dwfl_linecu (line)->die.cu->lines->info[line->idx]; 79 for (size_t cnt = 0; cnt < cu->die.cu->lines->nlines; ++cnt) 81 Dwarf_Line *line = &cu->die.cu->lines->info[cnt]; 128 match[inner] = &cu->lines->idx[cnt]; 150 match[cur_match++] = &cu->lines->idx[cnt];
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
_h_d_m_x.py | 80 lines = content.split(";") 81 topRow = lines[0].split() 87 lines = (line.split() for line in lines[1:]) 88 for line in lines:
|
/build/tools/ |
java-layers.py | 20 sys.stderr.write(" - Lines consisting of two java package names: The\n") 24 sys.stderr.write(" - Lines consisting of one java package name: The\n") 27 sys.stderr.write(" - Lines consisting of a dash (+) followed by one java\n") 31 sys.stderr.write(" - Lines consisting of a plus (-) followed by one java\n") 121 lines = f.readlines() 127 lines = [lineno(x,n) for x in lines] 128 lines = [(n,s.split("#")[0].strip()) for (n,s) in lines] 129 lines = [(n,s) for (n,s) in lines if len(s) > 0 [all...] |
/external/google-breakpad/src/common/ |
stabs_to_module_unittest.cc | 69 ASSERT_EQ((size_t) 1, function->lines.size()); 70 Module::Line *line = &function->lines[0]; 135 ASSERT_EQ(0U, function->lines.size()); 171 ASSERT_EQ((size_t) 2, function->lines.size()); 173 Module::Line *line1 = &function->lines[0]; 179 Module::Line *line2 = &function->lines[1]; 221 ASSERT_EQ(0U, function->lines.size()); 242 // got full coverage of non-failure source lines in dump_stabs.cc.
|
/external/libvorbis/vq/ |
distribution.c | 35 long lines=0; local 167 lines++; 169 sprintf(buf,"getting min/max (%.2f::%.2f). lines...",min,max); 170 if(!(lines&0xff))spinnit(buf,lines); 209 lines--; 210 if(!(lines&0xff))spinnit("counting distribution. lines so far...",lines);
|
/external/skia/src/core/ |
SkEdgeBuilder.cpp | 117 SkPoint lines[SkLineClipper::kMaxPoints]; local 118 int lineCount = SkLineClipper::ClipLine(pts, clip, lines, canCullToTheRight); 121 if (edge->setLine(lines[i], lines[i + 1], shiftUp)) { 194 SkPoint lines[SkLineClipper::kMaxPoints]; local 195 int lineCount = SkLineClipper::ClipLine(pts, clip, lines, canCullToTheRight); 197 this->addLine(&lines[i]);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
CodeContext.py | 6 the lines which contain the block opening keywords, e.g. 'if', for the 7 enclosing block. The number of hint lines is determined by the numlines 8 variable in the CodeContext section of config-extensions.def. Lines which do 51 # Start two update cycles, one for context lines, one for font changes. 95 The indentation of empty lines (or comment lines) is INFINITY. 108 """Get context lines, starting at new_topvisible and working backwards. 115 lines = [] 128 lines.append((linenum, indent, text, opener)) 131 lines.reverse( [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
CodeContext.py | 6 the lines which contain the block opening keywords, e.g. 'if', for the 7 enclosing block. The number of hint lines is determined by the numlines 8 variable in the CodeContext section of config-extensions.def. Lines which do 51 # Start two update cycles, one for context lines, one for font changes. 95 The indentation of empty lines (or comment lines) is INFINITY. 108 """Get context lines, starting at new_topvisible and working backwards. 115 lines = [] 128 lines.append((linenum, indent, text, opener)) 131 lines.reverse( [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_binascii.py | 65 lines = [] 69 lines.append(a) 71 for line in lines: 81 lines = [] 85 lines.append(a) 105 for line in map(addnoise, lines): 117 lines = [] 121 lines.append(a) 123 for line in lines:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_binascii.py | 65 lines = [] 69 lines.append(a) 71 for line in lines: 81 lines = [] 85 lines.append(a) 105 for line in map(addnoise, lines): 117 lines = [] 121 lines.append(a) 123 for line in lines:
|
/development/tools/axl/ |
chewperf.py | 48 lines = [x for x in rawLines if "Pulled" in x] 50 sidx = lines[0].split().index("Pulled") 52 chewed = [[int(x.split()[sidx + 2]), int(x.split()[sidx + 4])] for x in lines]
|
/external/e2fsprogs/po/ |
at-expand.pl | 68 my $lines = 0; 107 $lines++; 108 if ($lines == 6) {
|
/external/elfutils/src/libdw/ |
dwarf_getsrc_file.c | 68 Dwarf_Lines *lines; local 70 if (INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines) != 0) 87 Dwarf_Line *line = &lines->info[cnt];
|
/external/skia/tools/ |
sanitize_source_files.py | 28 lines in a file (Eg: TabReplacer). 41 lines = f.readlines() 45 new_lines = [] # Collect changed lines here. 50 for line in lines: 61 old_content = ''.join(lines)
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
scanresults.cpp | 80 QStringList lines = bss.split(QRegExp("\\n")); local 81 for (QStringList::Iterator it = lines.begin(); 82 it != lines.end(); it++) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_file_util.py | 62 lines = ['a', 'b', 'c'] 65 write_file(foo, lines) 67 self.assertEqual(content, lines)
|