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

<<11121314151617181920>>

  /external/chromium_org/tools/code_coverage/
croc.py 80 self.lines = {} # line_no -> None=executable, 0=instrumented, 1=covered
84 """Updates the coverage summary based on covered lines."""
86 for l in self.lines.itervalues():
146 continue # Skip groups with no executable lines
328 lcov_data: An iterable returning lines of data in LCOV format. For
339 cov_lines = cov_file.lines
495 # Scan file to find potentially-executable lines
496 lines = self.scan_file(covf.local_path, covf.attrs.get('language'))
497 if lines:
498 for l in lines
    [all...]
croc_test.py 51 self.assertEqual(f.lines, {})
68 """Test updating coverage when no lines are instrumented."""
70 f.lines = {1: None, 2: None, 4: None}
91 """Test updating coverage when no lines are covered."""
93 f.lines = {1: None, 2: None, 4: 0, 5: 0, 7: None}
104 """Test updating coverage when lines are covered."""
106 f.lines = {1: None, 2: None, 3: 1, 4: 0, 5: 0, 6: 1, 7: None}
148 # 'bar' group is skipped because it has no executable lines
188 A list of executable lines.
360 '# Ignore unknown lines',
    [all...]
  /external/opencv/cv/src/
cvfundam.cpp 1030 const CvMat* fmatrix, CvMat* lines )
    [all...]
  /external/libvpx/libvpx/vp9/common/x86/
vp9_intrapred_ssse3.asm 124 ; store 4 lines
153 ; store 4 lines
164 ; store next 4 lines
193 ; first 4 lines and first half of 3rd 4 lines
253 ; write 4x4 lines (and the first half of the second 4x4 lines)
281 ; write second half of second 4x4 lines
333 ; store 4 lines
359 ; store 4 lines
    [all...]
  /external/chromium_org/ash/system/user/
tray_user.cc 216 // link do not wrap over more than three lines in total for aesthetic reasons
514 std::vector<base::string16> lines; local
517 &lines);
518 // Loop through the lines, creating a renderer for each.
521 for (std::vector<base::string16>::const_iterator it = lines.begin();
522 it != lines.end(); ++it) {
606 // lines are needed. The lower bound is the minimum of the current bubble
610 std::vector<base::string16> lines; local
612 lines.clear();
616 gfx::TRUNCATE_LONG_WORDS, &lines) != 0
    [all...]
  /external/bison/data/
location.cc 65 /// (line related) Advance to the COUNT next lines.
66 void lines (int count = 1)
221 /// Extend the current location to the COUNT next lines.
222 void lines (unsigned int count = 1)
224 end.lines (count);
  /external/chromium/net/http/
http_response_headers_unittest.cc 922 std::string name, value, lines; local
926 lines.append(name);
927 lines.append(": ");
928 lines.append(value);
929 lines.append("\n");
932 EXPECT_EQ(std::string(tests[i].expected_lines), lines); local
    [all...]
  /external/chromium_org/ash/system/chromeos/
tray_display_unittest.cc 32 std::vector<base::string16> lines; local
33 lines.push_back(headline);
35 lines.push_back(name1);
37 lines.push_back(l10n_util::GetStringFUTF16(
42 lines.push_back(l10n_util::GetStringFUTF16(
46 return JoinString(lines, '\n');
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
comment.js 92 var lineString = options.lineComment || mode.lineComment, lines = [];
102 lines.push(line);
106 var line = lines[i - start];
  /external/chromium_org/third_party/devscripts/
licensecheck.pl.vanilla 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
226 "lines|l=i" => \$opt_lines,
346 # Ignore lines matching "see foo for copyright information" etc.
371 --lines, -l Specify how many lines of the file header
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,
373 # Ignore lines matching "see foo for copyright information" etc.
398 --lines, -l Specify how many lines of the file header
  /external/libvpx/libvpx/examples/includes/geshi/
geshi.php 76 /** Use a pre to wrap lines when line numbers are enabled or to wrap the whole code. */
407 * Lines that should be highlighted extra
413 * Styles of lines that should be highlighted extra
419 * Styles of extra-highlighted lines
469 * Line number styles for fancy lines
870 * For fancy line numbers, the second parameter is used to signal which lines
875 * @param int Defines which lines are fancy
889 * span over multiple lines or not. Defaults to true to reduce overhead.
1697 $lines = intval($lines); variable
2977 $lines = explode("\\n", $result); variable
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
RenderScriptProcessor.java 349 * @param lines The output to parse.
352 private boolean parseLlvmOutput(ArrayList<String> lines) {
354 if (lines.size() == 0) {
368 for (int i = 0; i < lines.size(); i++) {
369 String p = lines.get(i);
497 // expect it's likely split on several lines. So let's move it back on a single line
499 String[] lines = content.split("\n"); //$NON-NLS-1$ local
501 for (String line : lines) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
driver_unittest.py 78 driver._server_process = MockServerProcess(lines=[
94 driver._server_process = MockServerProcess(lines=[
112 driver._server_process = MockServerProcess(lines=[
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
printing_unittest.py 248 lines = err.buflist
249 self.assertEqual(len(lines), 1)
250 self.assertTrue(lines[0].endswith('passes/image.html\n'))
  /external/chromium_org/third_party/skia/src/core/
SkLineClipper.cpp 188 SkPoint lines[]) {
287 // Now copy the results into the caller's lines[] parameter
291 lines[lineCount - i] = result[i];
294 memcpy(lines, result, (lineCount + 1) * sizeof(SkPoint));
  /external/chromium_org/tools/gyp/pylib/gyp/
win_tool.py 237 # to filter is pairs of lines that look like this:
240 lines = out.splitlines()
242 processing = set(os.path.basename(x) for x in lines if x.startswith(prefix))
243 for line in lines:
  /external/chromium_org/ui/gfx/
render_text.h 142 // Sum of preceding lines' heights.
405 const std::vector<internal::Line>& lines() const { return lines_; } function in class:gfx::RenderText
406 void set_lines(std::vector<internal::Line>* lines) { lines_.swap(*lines); }
486 // Ensure the text is laid out, lines are computed, and |lines_| is valid.
495 // Returns layout text positions that are suitable for breaking lines.
634 // Whether the text should be broken into multiple lines. Uses the width of
673 // Lines computed by EnsureLayout. These should be invalidated with
  /external/skia/src/core/
SkLineClipper.cpp 188 SkPoint lines[]) {
287 // Now copy the results into the caller's lines[] parameter
291 lines[lineCount - i] = result[i];
294 memcpy(lines, result, (lineCount + 1) * sizeof(SkPoint));
  /frameworks/base/core/tests/coretests/src/android/text/
StaticLayoutTest.java 79 * Basic test showing effect of includePad = true wrapping to 2 lines.
96 * Basic test showing effect of includePad = true wrapping to 3 lines.
115 * Basic test showing effect of includePad = true wrapping to 3 lines and
144 * to 3 lines.
165 * spacingMult = 1.5, wrapping to 3 lines.
187 * spacingMult = 0.8 when wrapping to 3 lines.
296 int lines = values.length >> 1; local
297 assertEquals(lines, l.getLineCount());
300 for (int i = 0, n = 0; i < lines; ++i, n += 2) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_curses.py 260 lines, cols = curses.LINES, curses.COLS
261 curses.resizeterm(lines - 1, cols + 1)
263 if curses.LINES != lines - 1 or curses.COLS != cols + 1:
264 raise RuntimeError, "Expected resizeterm to update LINES and COLS"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_curses.py 260 lines, cols = curses.LINES, curses.COLS
261 curses.resizeterm(lines - 1, cols + 1)
263 if curses.LINES != lines - 1 or curses.COLS != cols + 1:
264 raise RuntimeError, "Expected resizeterm to update LINES and COLS"
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
backtracking.rb 54 * fixed look; k=2 made a few extra thousand lines. ;)
  /external/chromium/net/websockets/
websocket_handshake_handler.cc 74 // is, lines that are not formatted as "<name>: <value>\r\n".
81 StringTokenizer lines(headers.begin(), headers.end(), "\r\n");
82 while (lines.GetNext()) {
83 std::string::const_iterator line_begin = lines.token_begin();
84 std::string::const_iterator line_end = lines.token_end();
websocket_job_unittest.cc 314 std::vector<std::string> lines; local
315 base::SplitString(kHandshakeResponseMessage, '\n', &lines);
316 for (size_t i = 0; i < lines.size() - 2; i++) {
317 std::string line = lines[i] + "\r\n";

Completed in 1645 milliseconds

<<11121314151617181920>>