/external/quake/quake/src/WinQuake/ |
console.cpp | 39 int con_totallines; // total lines in console scrollback 40 int con_backscroll; // lines up from bottom to display 49 // for transparent notify lines 63 int con_notifylines; // scan lines to clear for notify lines 517 Draws the last few lines of output transparently over the game top 580 void Con_DrawConsole (int lines, qboolean drawinput) 587 if (lines <= 0) 598 Draw_ConsoleBackground (lines); 601 con_vislines = lines; [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/ |
shell.js | 87 var lines = msg.split ("\n"); 92 for (var i=0; i<lines.length; i++) 93 writeLineToLog (FAILED + prefix + lines[i]); 104 var lines = msg.split ("\n"); 107 for (var i=0; i<lines.length; i++) 108 writeLineToLog (STATUS + lines[i]);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SimpleElement.java | 166 String[] lines = value.split("\n"); local 169 while ((element = parseLines(lines, index)) != null) { 176 * Parses one element from the input lines array, starting at the inOutIndex 179 private static SimpleElement parseLines(String[] lines, int[] inOutIndex) { 182 while (index < lines.length) { 183 String line = lines[index++]; 248 SimpleElement e2 = SimpleElement.parseLines(lines, inOutIndex);
|
/external/chromium/testing/gmock/scripts/generator/cpp/ |
gmock_class.py | 107 lines = [] 117 lines.extend(['namespace %s {' % n for n in class_node.namespace]) # } 118 lines.append('') 121 lines.append('class Mock%s : public %s {' % (class_name, class_name)) # } 122 lines.append('%spublic:' % (' ' * (_INDENT // 2))) 125 _GenerateMethods(lines, source, class_node) 128 if lines: 130 if len(lines) == 2: 131 del lines[-1] 134 lines.append('};' [all...] |
/external/gtest/test/ |
gtest_output_test.py | 144 """Runs a command in a sub-process, and iterates the lines in its STDOUT. 195 lines = list(IterShellCommandOutput(env_cmd, stdin_string)) 196 return string.join(lines, '')
|
/external/skia/bench/ |
bench_compare.py | 10 def parse(lines): 11 """Takes iterable lines of bench output, returns {bench:{config:time}}.""" 16 for line in lines:
|
/external/webkit/Tools/Scripts/ |
print-vse-failure-logs | 61 lines = self._executive.run_command([script_path, sln_path]).splitlines() 62 order = [line.strip() for line in lines if line.find("Folder") == -1]
|
split-file-by-class | 95 my @lines = split("\n", $fileContent); 96 foreach my $line (@lines) {
|
/external/icu4c/test/perf/normperf/ |
normperf.cpp | 143 fprintf(stderr, "FAILED to read lines from file and create UPerfTest object. Error: %s\n", u_errorName(status)); 199 NormPerfFunction* func = new NormPerfFunction(ICUNormNFC, options,lines,numLines, uselen); 228 NormPerfFunction* func = new NormPerfFunction(ICUNormNFD, options,lines,numLines, uselen); 258 NormPerfFunction* func = new NormPerfFunction(ICUNormFCD, options,lines,numLines, uselen); 287 NormPerfFunction* func = new NormPerfFunction(WinNormNFC, options,lines,numLines, uselen); 316 NormPerfFunction* func = new NormPerfFunction(WinNormNFD, options,lines,numLines, uselen); 345 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,lines, numLines, UNORM_NFC, options,uselen); 373 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,lines, numLines, UNORM_NFD, options,uselen); 401 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,lines, numLines, UNORM_FCD, options,uselen); 430 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,lines, numLines, UNORM_NFC, options,uselen) [all...] |
/external/chromium/testing/gmock/scripts/ |
upload.py | 513 lines = [] 515 lines.append('--' + BOUNDARY) 516 lines.append('Content-Disposition: form-data; name="%s"' % key) 517 lines.append('') 518 lines.append(value) 520 lines.append('--' + BOUNDARY) 521 lines.append('Content-Disposition: form-data; name="%s"; filename="%s"' % 523 lines.append('Content-Type: %s' % GetContentType(filename)) 524 lines.append('') 525 lines.append(value [all...] |
/external/chromium/testing/gtest/scripts/ |
upload.py | 513 lines = [] 515 lines.append('--' + BOUNDARY) 516 lines.append('Content-Disposition: form-data; name="%s"' % key) 517 lines.append('') 518 lines.append(value) 520 lines.append('--' + BOUNDARY) 521 lines.append('Content-Disposition: form-data; name="%s"; filename="%s"' % 523 lines.append('Content-Type: %s' % GetContentType(filename)) 524 lines.append('') 525 lines.append(value [all...] |
/external/bluetooth/glib/gio/tests/ |
data-input-stream.c | 48 const char* lines[MAX_LINES]; local 54 lines[i] = "some_text"; 75 g_strconcat (lines[i], endl[newline_type], NULL), -1, NULL); 90 g_assert_cmpstr (data, ==, lines[line]); 323 g_test_add_func ("/data-input-stream/read-lines-LF", test_read_lines_LF); 324 g_test_add_func ("/data-input-stream/read-lines-CR", test_read_lines_CR); 325 g_test_add_func ("/data-input-stream/read-lines-CR-LF", test_read_lines_CR_LF);
|
/external/dbus/test/ |
unused-code-gc.py | 116 lines = f.readlines() 117 for l in lines: 180 lines = f.readlines () 181 for l in lines:
|
decode-gcov.c | 633 DBusList *lines; member in struct:Block 669 Line *lines; member in struct:File [all...] |
/external/doclava/src/com/google/doclava/ |
SampleTagInfo.java | 37 * file is copied. If an id is provided, the lines in the given file between the first two lines 118 LineNumberReader lines = new LineNumberReader(input); local 127 String line = lines.readLine(); 206 LineNumberReader lines = new LineNumberReader(input); local 209 String line = lines.readLine();
|
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/ |
CCHeadsUpDisplay.cpp | 211 Vector<String> lines; local 212 m_layerRenderer->layerTreeAsText().split('\n', lines); 213 for (size_t i = 0; i < lines.size(); ++i) { 214 ctx->drawText(*m_smallFont, TextRun(lines[i]), IntPoint(2, y));
|
/external/webkit/Tools/Scripts/webkitpy/tool/steps/ |
validatechangelogs.py | 42 # Date, reviewer, bug title, bug url, and empty lines could all be 45 if diff_file.lines[0][0] < 8:
|
validatechangelogs_unittest.py | 45 diff_file.lines = [(start_line, start_line, "foo")]
|
/frameworks/compile/libbcc/runtime/make/ |
AppleBI.mk | 15 # Log full compile lines in B&I logs and omit summary lines.
|
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
Pyramid.h | 45 static unsigned int calcStorage(real width, real height, real border2, int levels, int *lines);
|
/external/webkit/Source/WebCore/platform/qt/ |
QtMobileWebStyle.cpp | 56 QVector<QLineF> lines(checkerSize + 1); 59 lines[i] = QLineF(x, y, x, y + width); 64 lines[i] = QLineF(x, y, x, y + width); 68 painter->drawLines(lines.constData(), lines.size()); 264 QVector<QLine> lines(width + 1); 267 lines[x] = QLine(x, y, x, y + 2); 268 lines[x + midle] = QLine(width - x - 1, y, width - x - 1, y + 2); 270 // Just to ensure the lines' intersection. 271 lines[width] = QLine(midle, midle, midle, midle + 2) [all...] |
/external/opencv/cv/src/ |
cvhough.cpp | 80 to be a candidate for line. lines is the output 82 Functions return the actual number of found lines. 86 int threshold, CvSeq *lines, int linesMax ) 153 // stage 3. sort the detected lines by accumulator value 156 // stage 4. store the first min(total,linesMax) lines to the output buffer 167 cvSeqPush( lines, &line ); 194 CvSeq* lines, int linesMax ) 348 icvHoughLinesStandard( img, rho, theta, threshold, lines, linesMax ); 455 cvSeqPush( lines, &line ); 457 if( lines->total >= linesMax 752 CvSeq* lines = 0; local [all...] |
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ |
FsUtils.java | 227 LinkedList<String> lines = new LinkedList<String>(); 230 return lines; 234 return lines; 242 lines.add(line); 250 return lines;
|
/external/webkit/Source/WebCore/inspector/front-end/ |
TextViewer.js | 623 this.element.className = "text-editor-lines"; 675 // Decorations may have been removed, so we may have to sync those lines. 1901 var lines = []; variable [all...] |
/frameworks/base/core/java/android/text/ |
StaticLayout.java | 620 int[] lines = mLines; local 622 if (want >= lines.length) { 625 System.arraycopy(lines, 0, grow, 0, lines.length); 627 lines = grow; 689 lines[off + START] = start; 690 lines[off + TOP] = v; 691 lines[off + DESCENT] = below + extra; 694 lines[off + mColumns + START] = end; 695 lines[off + mColumns + TOP] = v 846 int[] lines = mLines; local [all...] |