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

<<11121314151617181920>>

  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 274 lines = file(filename).readlines()
280 fragments = lines[0].rstrip().split()
284 self.parse_lines(lines[1:])
286 def parse_lines(self, lines):
288 for line in lines:
  /external/lldb/utils/vim-lldb/python-vim-lldb/
vim_panes.py 321 """ Highlights each set of lines in each highlight group """
324 lines = highlights[highlightType]
325 if len(lines) == 0:
329 lines = ['\%' + '%d' % line + 'l' for line in lines]
330 cmd += '\\|'.join(lines)
401 """ Get content for a frame-aware pane. Also builds the list of lines that
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib2_localnet.py 528 lines = ["We\n", "got\n", "here\n", "verylong " * 8192 + "\n"]
529 expected_response = "".join(lines)
534 self.assertEqual(line, lines[index],
537 (index, len(lines[index]), len(line)))
540 self.assertEqual(index + 1, len(lines))
test_unicodedata.py 300 lines = (unichr(i) + u'A').splitlines()
303 self.assertEqual(len(lines), 2,
306 self.assertEqual(len(lines), 1,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib2_localnet.py 528 lines = ["We\n", "got\n", "here\n", "verylong " * 8192 + "\n"]
529 expected_response = "".join(lines)
534 self.assertEqual(line, lines[index],
537 (index, len(lines[index]), len(line)))
540 self.assertEqual(index + 1, len(lines))
test_unicodedata.py 300 lines = (unichr(i) + u'A').splitlines()
303 self.assertEqual(len(lines), 2,
306 self.assertEqual(len(lines), 1,
  /external/v8/tools/gcmole/
gcmole.lua 124 func(filename, pipe:lines())
276 local function parse (filename, lines)
279 for funcname in lines do
349 local function SearchForErrors(filename, lines)
351 for l in lines do
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
argparse.py 333 # helper for wrapping lines
335 lines = []
343 lines.append(indent + ' '.join(line))
349 lines.append(indent + ' '.join(line))
351 lines[0] = lines[0][len(indent):]
352 return lines
358 lines = get_lines([prog] + opt_parts, indent, prefix)
359 lines.extend(get_lines(pos_parts, indent))
361 lines = get_lines([prog] + pos_parts, indent, prefix
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
argparse.py 333 # helper for wrapping lines
335 lines = []
343 lines.append(indent + ' '.join(line))
349 lines.append(indent + ' '.join(line))
351 lines[0] = lines[0][len(indent):]
352 return lines
358 lines = get_lines([prog] + opt_parts, indent, prefix)
359 lines.extend(get_lines(pos_parts, indent))
361 lines = get_lines([prog] + pos_parts, indent, prefix
    [all...]
  /external/mksh/src/
histrap.c 296 /* Run editor on selected lines, then run resulting commands */
706 int lines, fd; local
752 lines = histload(hist_source, base + 2, (size_t)histfsize - 2);
755 if (lines > histsize && histptr >= history) {
837 int lno = 0, lines = 0; local
843 return (lines);
849 return (lines);
854 ++lines;
    [all...]
  /external/selinux/sepolgen/src/sepolgen/
refpolicy.py 893 self.lines = l
895 self.lines = []
898 # If there are no lines, treat this as a spacer between
900 if len(self.lines) == 0:
904 for line in self.lines:
909 if len(other.lines):
910 for line in other.lines:
912 self.lines.append(line)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
refpolicy.py 893 self.lines = l
895 self.lines = []
898 # If there are no lines, treat this as a spacer between
900 if len(self.lines) == 0:
904 for line in self.lines:
909 if len(other.lines):
910 for line in other.lines:
912 self.lines.append(line)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/
refpolicy.py 893 self.lines = l
895 self.lines = []
898 # If there are no lines, treat this as a spacer between
900 if len(self.lines) == 0:
904 for line in self.lines:
909 if len(other.lines):
910 for line in other.lines:
912 self.lines.append(line)
  /external/chromium-trace/trace-viewer/tracing/third_party/devscripts/
licensecheck.pl 31 [B<-l>|B<--lines=>I<N>] [B<-i>|B<--ignore=>I<regex>] [B<-c>|B<--check=>I<regex>]
55 =item B<-l=>I<N>, B<--lines=>I<N>
57 Specify the number of lines of each file's header which should be parsed
113 If this is set to a positive number then the specified number of lines
115 the license(s) in use. This is equivalent to the B<--lines> command line
230 "lines|l=i" => \$opt_lines,
349 # Remove new lines
380 # Ignore lines matching "see foo for copyright information" etc.
405 --lines, -l Specify how many lines of the file heade
    [all...]
  /external/mesa3d/src/mesa/main/
texcompress_fxt1.c 1352 const GLubyte *lines[4]; local
    [all...]
  /external/v8/src/
d8.js 775 // Default is ten lines starting five lines before the current location.
778 // line. Set it to start from 5 lines before the current location.
781 // source start line. Set it to start from 1 lines before the current
787 var lines = 10;
793 from = Debug.State.displaySourceStartLine - lines;
796 lines = parseInt(args[1]) - from + 1; // inclusive of the ending line.
801 Debug.State.displaySourceEndLine = from + lines - 1;
802 var sourceArgs = '' + from + ' ' + lines;
812 // Default is ten lines starting five lines before the current location
1548 var lines = source.split('\\n'); variable
    [all...]
  /frameworks/native/cmds/flatland/
GLHelper.cpp 361 static bool compileShaderLines(GLenum shaderType, const char* const* lines,
363 const char* src = makeShaderString(lines);
367 printShaderSource(lines);
  /libcore/tzdata/update/src/test/libcore/tzdata/update/
FileUtilsTest.java 246 List<String> lines = FileUtils.readLines(file); local
247 assertEquals(3, lines.size());
248 assertEquals(lines, Arrays.asList("One", "Two", "Three"));
  /external/regex-re2/lib/codereview/
codereview.py 356 lines = msg.splitlines()
357 if len(lines) >= 2:
358 msg = lines[0]
359 patchset = lines[1].strip()
360 patches = [x.split(" ", 1) for x in lines[2:]]
628 # some lines with spaces, some with tabs. Only a heuristic
688 # Lines beginning with # are ignored.
979 # CONTRIBUTORS is a list of lines like:
    [all...]
  /bootable/recovery/
screen_ui.cpp 219 void ScreenRecoveryUI::DrawTextLines(int* y, const char* const* lines) {
220 for (size_t i = 0; lines != nullptr && lines[i] != nullptr; ++i) {
221 DrawTextLine(y, lines[i], false);
  /external/compiler-rt/make/
AppleBI.mk 27 # Log full compile lines in B&I logs and omit summary lines.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ConfigTab.java 144 // Add lines to the table
308 * Fill the lines of the tables.
309 * Get all the information from the model which are returned in a list (lines) of lists (columns).
323 Iterator lines = differences.iterator();
324 this.firstLine = (List) lines.next();
330 while (lines.hasNext()) {
331 List line = (List) lines.next();
  /external/elfutils/src/libdw/
libdw_findcu.c 116 newp->lines = NULL;
  /external/fio/
server.h 139 uint16_t lines; member in struct:cmd_line_pdu
  /external/google-breakpad/src/common/
dwarf_cu_to_module.h 139 // Populate MODULE and LINES with source file names and code/line
142 // lines to LINES.
144 Module *module, vector<Module::Line> *lines) = 0;
251 // Assign all our source Lines to the Functions that cover their
277 // section. Record source files in module_, but record source lines
282 // Assign the lines in lines_ to the individual line lists of the
285 // lines belong to which functions, beyond their addresses.)

Completed in 4010 milliseconds

<<11121314151617181920>>