/external/linux-tools-perf/src/tools/perf/ |
builtin-kmem.c | 694 int lines; local 699 lines = strtoul(arg, NULL, 10); 702 caller_lines = lines; 704 alloc_lines = lines; 750 OPT_CALLBACK('l', "line", NULL, "num", "show n lines", parse_line_opt),
|
/external/lldb/source/Commands/ |
CommandObjectLog.cpp | 219 { LLDB_OPT_SET_1, false, "threadsafe", 't', no_argument, NULL, 0, eArgTypeNone, "Enable thread safe logging to avoid interweaved log lines." }, 222 { LLDB_OPT_SET_1, false, "sequence", 's', no_argument, NULL, 0, eArgTypeNone, "Prepend all log lines with an increasing integer sequence id." }, 223 { LLDB_OPT_SET_1, false, "timestamp", 'T', no_argument, NULL, 0, eArgTypeNone, "Prepend all log lines with a timestamp." }, 224 { LLDB_OPT_SET_1, false, "pid-tid", 'p', no_argument, NULL, 0, eArgTypeNone, "Prepend all log lines with the process and thread ID that generates the log line." }, 225 { LLDB_OPT_SET_1, false, "thread-name",'n', no_argument, NULL, 0, eArgTypeNone, "Prepend all log lines with the thread name for the thread that generates the log line." },
|
/external/mesa3d/docs/ |
dispatch.html | 69 <p>This can be implemented in just a few lines of C code. The file 221 changed lines in the assembly code.</p> 235 larger (e.g., 29,332 lines for <tt>glapi_x86-64.S</tt> versus 1,155 lines for 237 implementation to generate many lines of diffs. Since the assmebly files
|
versions.html | 140 <li>Faster rendering of lines when width=2.0 153 <li>texture mapped points and lines 169 <li>view volume clipping of smooth shaded lines resulted in bad colors 195 <li>round-off errors in clipping lines against clip planes fixed 230 <li>fixed bug when blending lines, points, bitmaps outside of window 378 <li>Z coordinates of clipped lines were incorrect 488 <li>fixed seg fault bug drawing flat-shaded, depth-tested lines 521 <li>pixel buffer could overflow with long, wide lines 569 <li>trying to use mipmapped textured points or lines caused crash 637 <li>antialiased lines [all...] |
/external/toybox/generated/ |
globals.h | 975 long lines; member in struct:head_data 1033 // Count of consecutive blank lines for -l has to persist between files 1103 char **lines; member in struct:sort_data 1109 long lines; member in struct:split_data 1125 long lines; member in struct:tail_data
|
/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
|
/frameworks/base/tests/notification/src/com/android/frameworks/tests/notification/ |
NotificationTests.java | 91 static final String[] LINES = new String[] { 134 if (end > LINES.length) { 135 end = LINES.length; 139 if (i >= LINES.length) break; 141 longSmsText.append(LINES[i]);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
generator.py | 50 From_ lines in the body of the message by putting a `>' in front of 265 lines = text.split('\n') 267 if lines and lines[-1] == '': 268 blocks.append(NL.join(lines[:-1]))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
generator.py | 50 From_ lines in the body of the message by putting a `>' in front of 265 lines = text.split('\n') 267 if lines and lines[-1] == '': 268 blocks.append(NL.join(lines[:-1]))
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
AidlProcessor.java | 315 * @param lines The output to parse. 319 private boolean parseAidlOutput(ArrayList<String> lines, IFile file) { 321 if (lines.size() == 0) { 327 for (int i = 0; i < lines.size(); i++) { 328 String p = lines.get(i);
|
/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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_inspect.py | 207 lines = self.source.split("\n") 208 return "\n".join(lines[top-1:bottom]) + "\n" 332 # where the second and third lines are _not_ indented. 346 # the arguments are on two lines and _not_ indented and 352 # the body is on two lines, following the argument list and 399 lines = ["x=1"] 400 co = compile(lines[0], "_dynamically_created_file", "exec") 403 linecache.cache[co.co_filename] = (1, None, lines, co.co_filename) 404 self.assertEqual(inspect.findsource(co), (lines,0)) 405 self.assertEqual(inspect.getsource(co), lines[0] [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
trace.py | 113 -m, --missing Annotate executable lines that were not executed 130 # Simple rx to find lines with no code. 344 print "lines cov% module (path)" 357 def write_results_file(self, path, lines, lnotab, lines_hit): 369 for i, line in enumerate(lines): 371 # do the blank/comment match to try to mark more lines 380 # lines preceded by no marks weren't hit 383 if lineno in lnotab and not PRAGMA_NOCOVER in lines[i]: 388 outfile.write(lines[i].expandtabs(8)) 394 """Return dict where keys are lines in the line number table."" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_inspect.py | 207 lines = self.source.split("\n") 208 return "\n".join(lines[top-1:bottom]) + "\n" 332 # where the second and third lines are _not_ indented. 346 # the arguments are on two lines and _not_ indented and 352 # the body is on two lines, following the argument list and 399 lines = ["x=1"] 400 co = compile(lines[0], "_dynamically_created_file", "exec") 403 linecache.cache[co.co_filename] = (1, None, lines, co.co_filename) 404 self.assertEqual(inspect.findsource(co), (lines,0)) 405 self.assertEqual(inspect.getsource(co), lines[0] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
trace.py | 113 -m, --missing Annotate executable lines that were not executed 130 # Simple rx to find lines with no code. 344 print "lines cov% module (path)" 357 def write_results_file(self, path, lines, lnotab, lines_hit): 369 for i, line in enumerate(lines): 371 # do the blank/comment match to try to mark more lines 380 # lines preceded by no marks weren't hit 383 if lineno in lnotab and not PRAGMA_NOCOVER in lines[i]: 388 outfile.write(lines[i].expandtabs(8)) 394 """Return dict where keys are lines in the line number table."" [all...] |
/bionic/libc/kernel/tools/ |
cpp.py | 173 # same file, in between lines 269 def parseString(self, lines): 270 """Parse a list of text lines into a BlockList object.""" 273 unsaved_files=[(file_, lines)], [all...] |
/external/kernel-headers/original/uapi/linux/ |
videodev2.h | 360 #define V4L2_PIX_FMT_M420 v4l2_fourcc('M', '4', '2', '0') /* 12 YUV 4:2:0 2 lines y, 1 line uv interleaved */ [all...] |
/external/clang/include/clang/AST/ |
Comment.h | 895 /// opening and a closing command and contains multiple lines of text 901 ArrayRef<VerbatimBlockLineComment *> Lines; 917 return reinterpret_cast<child_iterator>(Lines.begin()); 921 return reinterpret_cast<child_iterator>(Lines.end()); 930 Lines = L; 938 return Lines.size(); 942 return Lines[LineIdx]->getText();
|
/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/libdwfl/ |
libdwflP.h | 296 struct Dwfl_Lines *lines; member in struct:dwfl_cu 308 match those in libdw's Dwarf_CU.lines->info table. */ 311 unsigned int idx; /* My index in the dwfl_cu.lines table. */ 318 const struct Dwfl_Lines *lines = ((const void *) line local 321 return lines->cu; 504 /* Ensure that CU->lines (and CU->cu->lines) is set up. */
|
/external/lldb/examples/python/ |
symbolication.py | 472 lines = list() 483 lines.append ("%#16.16x: %8s %s" % (inst_pc, mnemonic, operands)) 485 line_len = len(lines[-1]) 487 lines[-1] += ' ' * (comment_column - line_len) 488 lines[-1] += "; %s" % comment 508 print ' -> ', lines[i] 510 print ' ', lines[i]
|
/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
|
/external/llvm/lib/DebugInfo/DWARF/ |
DWARFContext.cpp | 422 DILineInfoTable Lines; 425 return Lines; 435 Lines.push_back(std::make_pair(Address, Result)); 436 return Lines; 444 return Lines; 455 Lines.push_back(std::make_pair(Row.Address, Result)); 458 return Lines;
|
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
RecurrenceSet.java | 418 * fold and unfolds ical content lines as per RFC 2445 section 4.1. 420 * <h3>4.1 Content Lines</h3> 422 * <p>The iCalendar object is organized into individual lines of text, called 423 * content lines. Content lines are delimited by a line break, which is a CRLF 426 * <p>Lines of text SHOULD NOT be longer than 75 octets, excluding the line 427 * break. Long content lines SHOULD be split into a multiple line
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completion1-expected-completion39.txt | 17 android:maxLines : Makes the TextView be at most this many lines tall. [integer] 19 android:lines : Makes the TextView be exactly this many lines tall. [integer] 21 android:minLines : Makes the TextView be at least this many lines tall. [integer] 32 android:singleLine : Constrains the text to a single horizontally scrolling line instead of letting it wrap onto multiple lines, and advances focus instead of inserting a newline when you press the enter key. * Deprecated: This attribute is deprecated. Use "maxLines" instead to change the layo... 59 android:lineSpacingExtra : Extra spacing between lines of text. [dimension] 60 android:lineSpacingMultiplier : Extra spacing between lines of text, as a multiplier. [float]
|