HomeSort by relevance Sort by last modified time
    Searched refs:lines (Results 126 - 150 of 423) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/markdown/markdown/extensions/
imagelinks.py 39 def run(self, lines):
51 for line in lines:
  /external/quake/quake/src/QW/client/
draw.h 33 void Draw_ConsoleBackground (int lines);
console.c 30 int con_totallines; // total lines in console scrollback
39 // for transparent notify lines
42 int con_notifylines; // scan lines to clear for notify lines
465 Draws the last few lines of output transparently over the game top
540 void Con_DrawConsole (int lines)
548 if (lines <= 0)
552 Draw_ConsoleBackground (lines);
555 con_vislines = lines;
558 rows = (lines-22)>>3; // rows of text to dra
    [all...]
  /external/v8/test/benchmarks/
testcfg.py 53 lines = output.stdout.splitlines()
54 for line in lines:
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.h 59 bool up(unsigned lines = 1);
60 bool down(unsigned lines = 1);
  /packages/apps/Email/src/com/android/email/mail/transport/
DiscourseLogger.java 26 * A class to keep last N of lines sent to the server and responses received from the server.
109 String[] lines = getLines(); local
110 if (lines.length == 0) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AMReceiver.java 59 * @param lines a portion of the am output
64 public void processNewLines(String[] lines) {
69 for (String s : lines) {
70 // ignore empty lines.
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_mpeg2_stereo_proc.cpp 289 /* can be between -1 (all lines zero) and 575 (no line zero) */
312 sfbNo = mp3_sfBandIndex[sfreq].l[sfbTemp]; /* number of lines to process */
314 /* from sfbStart up sfbNo lines do ms_stereo or normal stereo */
326 sfbNo = mp3_sfBandIndex[sfreq].l[sfb+1] - mp3_sfBandIndex[sfreq].l[sfb]; /* No of lines to process */
355 sfbNo = mp3_sfBandIndex[sfreq].s[sfb+1] - mp3_sfBandIndex[sfreq].s[sfb]; /* No of lines to process */
383 int32 lines = mp3_sfBandIndex[sfreq].s[sfb+1] - mp3_sfBandIndex[sfreq].s[sfb]; local
385 i = 3 * mp3_sfBandIndex[sfreq].s[sfb] + (j + 1) * lines - 1;
387 while (lines > 0)
393 lines = -10;
395 lines--
485 int32 lines = mp3_sfBandIndex[sfreq].s[sfb+1] - mp3_sfBandIndex[sfreq].s[sfb]; local
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/
IOUtils.java 513 * Return an Iterator for the lines in a <code>Reader</code>.
535 * @return an Iterator of the lines in the reader, never null
544 * Return an Iterator for the lines in an <code>InputStream</code>, using
568 * @return an Iterator of the lines in the reader, never null
    [all...]
  /external/dbus/bus/
desktop-file.c 42 BusDesktopFileLine *lines; member in struct:__anon5145
116 bus_desktop_file_line_free (&section->lines[i]);
118 dbus_free (section->lines);
137 BusDesktopFileLine *lines; local
146 lines = dbus_realloc (section->lines,
149 if (lines == NULL)
152 section->lines = lines;
288 desktop_file->sections[n].lines = NULL
    [all...]
  /external/icu4c/test/perf/normperf/
normperf.h 33 ULine* lines; member in class:QuickCheckPerfFunction
49 retVal = (*fn)(lines[i].name,lines[i].len,mode, options, status);
53 retVal = (*fn)(lines[i].name,-1,mode, options, status);
70 totalChars+= lines[i].len;
79 lines = srcLines;
89 lines = NULL;
102 ULine* lines; member in class:NormPerfFunction
120 retVal = (*fn)(lines[i].name,lines[i].len,pDest,destLen, options, status)
    [all...]
  /external/v8/tools/
logreader.js 53 * CSV lines parser.
167 * Processes log lines.
169 * @param {Array.<string>} lines Log lines.
172 LogReader.prototype.processLog_ = function(lines) {
173 for (var i = 0, n = lines.length; i < n; ++i, ++this.lineNum_) {
174 var line = lines[i];
  /development/scripts/
stack 87 def FindBuildFingerprint(lines):
88 """Searches the given file (array of lines) for the build fingerprint."""
90 for line in lines:
238 def ConvertTrace(lines):
249 # Examples of matched trace lines include lines from tombstone files like:
251 # Or lines from AndroidFeedback crash report system logs like:
255 # Examples of matched value lines include:
260 # Lines from 'code around' sections of the output will be matched before
261 # value lines because otheriwse the 'code around' sections will be confused a
    [all...]
  /external/clang/lib/Analysis/
ReachableCode.cpp 245 llvm::SmallVector<ErrLoc, 24> lines; local
269 lines.push_back(ErrLoc(c, R1, R2));
282 lines.push_back(ErrLoc(MarkLiveTop(&b, reachable,
288 llvm::array_pod_sort(lines.begin(), lines.end(), LineCmp);
290 for (llvm::SmallVectorImpl<ErrLoc>::iterator I=lines.begin(), E=lines.end();
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Pyramid.cpp 31 int lines, size = calcStorage(width, height, border2, levels, &lines); local
34 + sizeof(short *) * lines +
40 ImageTypeShort position = (ImageTypeShort) &y[lines];
96 unsigned int PyramidShort::calcStorage(real width, real height, real border2, int levels, int *lines)
100 *lines = size = 0;
104 *lines += height + border2;
  /external/icu4c/test/intltest/
tsmthred.cpp 845 const Line *lines; member in class:CollatorThreadTest
850 lines(NULL),
857 lines = l;
870 resLen = ucol_getSortKey(coll, lines[i].buff, lines[i].buflen, newSk, 1024);
876 cmpres = ucol_strcoll(coll, lines[i-1].buff, lines[i-1].buflen, lines[i].buff, lines[i].buflen);
877 cmpres2 = ucol_strcoll(coll, lines[i].buff, lines[i].buflen, lines[i-1].buff, lines[i-1].buflen)
977 Line *lines = new Line[200000]; local
    [all...]
  /external/webkit/Tools/Scripts/
VCSUtils.pm 106 my $svnPropertyValueStartRegEx = qr#^ (\+|-|Merged|Reverse-merged) ([^\r\n]+)#; # $2 is the start of the property's value (which may span multiple lines).
565 # svnConvertedText: the header text with some lines converted to SVN
566 # format. Git-specific lines are preserved.
685 # in some lines corrected.
712 # Fix paths on ""---" and "+++" lines to match the leading
785 # svnConvertedText: the header text with some lines converted to SVN
786 # format. Git-specific lines are preserved.
841 # svnConvertedText: the diff with some lines converted to SVN format.
842 # Git-specific lines are preserved.
909 # modified or patch(1) will complain. So, we only modify non-chunk range lines
    [all...]
  /external/bluetooth/glib/gio/tests/
data-output-stream.c 39 char *lines; local
49 lines = g_malloc0 ((strlen (TEST_STRING) + strlen (endl[newline_type])) * MAX_LINES + 1);
62 g_stpcpy ((char*)(lines + i*strlen(s)), s);
76 g_assert_cmpstr ((char*)data, ==, lines);
81 g_free (lines);
287 g_test_add_func ("/data-input-stream/read-lines-LF", test_read_lines_LF);
288 g_test_add_func ("/data-input-stream/read-lines-CR", test_read_lines_CR);
289 g_test_add_func ("/data-input-stream/read-lines-CR-LF", test_read_lines_CR_LF);
  /external/chromium/chrome/browser/autofill/
autofill_merge_unittest.cc 167 std::vector<std::string> lines; local
168 Tokenize(profiles, "\n", &lines);
169 for (size_t i = 0; i < lines.size(); ++i) {
170 std::string line = lines[i];
190 if ((i > 0 && line == kProfileSeparator) || i == lines.size() - 1) {
  /external/markdown/markdown/
preprocessors.py 23 Preprocessors are run after the text is broken into lines.
26 list of lines of the document, modifies it as necessary and returns
32 def run(self, lines):
36 the (possibly modified) list of lines.
108 def run(self, lines):
109 text = "\n".join(lines)
196 def run (self, lines):
198 for line in lines:
  /external/opencv/cvaux/src/
cvcorrespond.cpp 324 icvDynamicCorrespondMulti( int lines, /* number of scanlines */
340 if( (lines < 1) ||
351 for( n = 0; n < lines; n++ )
387 cvDynamicCorrespondMulti( int lines, /* number of scanlines */
396 IPPI_CALL( icvDynamicCorrespondMulti( lines, /* number of scanlines */
cvmorphing.cpp 279 icvMorphEpilines8uC3Multi( int lines, /* number of lines */
308 if( lines < 1 ||
322 for( currLine = 0; currLine < lines; currLine++ )
360 cvMorphEpilinesMulti( int lines, /* number of lines */
379 IPPI_CALL( icvMorphEpilines8uC3Multi( lines, /* number of lines */
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 197 def _rfind_in_lines(regex, lines, start_position, not_found_position):
209 current_line = lines[start_position.row][:start_position.column]
219 current_line = lines[current_row]
395 """Converts multiple lines into a single line (with line breaks replaced by a
397 def __init__(self, lines, start_position, end_position):
401 lines: a list of multiple lines to combine into a single line.
402 start_position: offset within lines of where to start the single line.
406 trimmed_lines = lines[start_position.row:end_position.row + 1]
506 """Tracks current function name and the number of lines in its body
    [all...]
  /external/skia/src/core/
SkEdgeBuilder.cpp 96 SkPoint lines[SkLineClipper::kMaxPoints]; local
97 int lineCount = SkLineClipper::ClipLine(pts, clip, lines);
99 this->addLine(&lines[i]);
  /external/llvm/utils/lit/lit/
TestFormats.py 30 lines = Util.capture([path, '--gtest_list_tests'],
33 lines = lines.replace('\r', '')
34 lines = lines.split('\n')
40 for ln in lines:

Completed in 896 milliseconds

1 2 3 4 56 7 8 91011>>