Searched defs:num_lines (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/closure_compiler/tools/
H A Dcompile_coverage.py72 def num_lines(f): function in function:main
101 compiled_lines = sum(map(num_lines, compiled))
111 need_lines = sum(map(num_lines, files))
120 want_lines = sum(map(num_lines, files))
/external/lldb/www/python_reference/
H A Depydoc.js149 function num_lines(s) {
167 if (num_lines(elt.innerHTML) > min_lines)
/external/chromium_org/content/common/android/
H A Daddress_parser.cc90 size_t num_lines = 1; local
105 ++num_lines;
109 if (num_lines > kMaxAddressLines)
133 if (num_lines > 1) {
/external/iproute2/misc/
H A Dlnstat_util.c41 int j, num_lines = 0; local
50 num_lines++;
63 return num_lines;
H A Dlnstat.c155 int num_lines; member in struct:table_hdr
187 th.num_lines = h+1;
195 for (h = 1; h <= th.num_lines; h++) {
209 for (i = 0; i < th->num_lines; i++) {
/external/qemu/android/utils/
H A Djpeg-compress.c154 int x, int y, int w, int h, int num_lines,
197 const int y_shift = num_lines - y - 1;
153 jpeg_compressor_compress_fb(AJPEGDesc* dsc, int x, int y, int w, int h, int num_lines, int bpp, int bpl, const uint8_t* fb, int jpeg_quality, int ydir) argument
/external/ceres-solver/examples/
H A Dnist.cc155 void SkipLines(std::ifstream& ifs, int num_lines) { argument
157 for (int i = 0; i < num_lines; ++i) {
/external/chromium_org/third_party/libwebp/utils/
H A Drescaler.c305 const int num_lines = (wrk->y_accum + wrk->y_sub - 1) / wrk->y_sub; local
306 return (num_lines > max_num_lines) ? max_num_lines : num_lines;
309 int WebPRescalerImport(WebPRescaler* const wrk, int num_lines, argument
312 while (total_imported < num_lines && wrk->y_accum > 0) {
/external/webp/src/utils/
H A Drescaler.c305 const int num_lines = (wrk->y_accum + wrk->y_sub - 1) / wrk->y_sub; local
306 return (num_lines > max_num_lines) ? max_num_lines : num_lines;
309 int WebPRescalerImport(WebPRescaler* const wrk, int num_lines, argument
312 while (total_imported < num_lines && wrk->y_accum > 0) {
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_posix_libcdep.cc372 int num_lines = 0; local
375 num_lines++;
376 if (num_lines >= 2)
/external/lldb/source/Commands/
H A DCommandObjectSource.cpp179 num_lines = Args::StringToUInt32 (option_arg, 0);
180 if (num_lines == 0)
224 num_lines = 0;
243 uint32_t num_lines; member in class:CommandObjectSourceList::CommandOptions
392 end_line = start_line + m_options.num_lines;
399 if (m_options.num_lines >= 10)
402 extra_lines = m_options.num_lines/2;
413 if (m_options.num_lines > end_line - line_no)
414 m_options.num_lines = end_line - line_no + extra_lines;
431 m_options.num_lines,
[all...]
/external/kernel-headers/original/uapi/drm/
H A Dvia_drm.h262 __u32 num_lines; member in struct:drm_via_dmablit
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
H A Dcpp.py827 def num_lines(self): member in class:CleansedLines
1604 for start_line_number in xrange(line_number, clean_lines.num_lines()):
1908 if line_number + 1 < clean_lines.num_lines():
3474 for line_number in xrange(lines.num_lines()):
3805 for line_number in xrange(clean_lines.num_lines()):
3943 for line in xrange(clean_lines.num_lines()):
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffgload.c1683 FT_Int num_lines; local
1693 num_lines = ( nargs - 6 ) / 2;
1696 cff_check_points( builder, num_lines + 3 ) )
1702 while ( num_lines > 0 )
1708 num_lines--;
/external/freetype/src/cff/
H A Dcffgload.c1679 FT_Int num_lines; local
1689 num_lines = ( nargs - 6 ) / 2;
1692 cff_check_points( builder, num_lines + 3 ) )
1698 while ( num_lines > 0 )
1704 num_lines--;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcffgload.c1687 FT_Int num_lines; local
1697 num_lines = ( nargs - 6 ) / 2;
1700 cff_check_points( builder, num_lines + 3 ) )
1706 while ( num_lines > 0 )
1712 num_lines--;
/external/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2494 size_t num_lines = commands.GetSize(); local
2512 for (size_t idx = 0; idx < num_lines; idx++)
2585 if (idx != num_lines - 1)
H A DScriptInterpreterPython.cpp1642 int num_lines = input.GetSize (); local
1643 if (num_lines == 0)
1661 for (int i = 0; i < num_lines; ++i)
1735 int num_lines = user_input.GetSize (); local
1756 for (int i = 0; i < num_lines; ++i)

Completed in 6811 milliseconds