HomeSort by relevance Sort by last modified time
    Searched refs:lines (Results 501 - 525 of 1509) sorted by null

<<21222324252627282930>>

  /frameworks/av/services/camera/libcameraservice/device3/
Camera3Device.cpp 433 String8 lines; local
443 lines.appendFormat(" Device status: %s\n", status);
445 lines.appendFormat(" Error cause: %s\n", mErrorCause.string());
447 lines.appendFormat(" Stream configuration:\n");
448 lines.appendFormat(" Operation mode: %s \n", mIsConstrainedHighSpeedConfiguration ?
452 write(fd, lines.string(), lines.size());
455 lines.appendFormat(" No input stream.\n");
456 write(fd, lines.string(), lines.size())
    [all...]
  /external/google-breakpad/src/common/windows/
pdb_source_line_writer.cc 200 bool PDBSourceLineWriter::PrintLines(IDiaEnumLineNumbers *lines) {
206 while (SUCCEEDED(lines->Next(1, &line, &count)) && count == 1) {
285 CComPtr<IDiaEnumLineNumbers> lines; local
286 if (FAILED(session_->findLinesByRVA(rva, DWORD(length), &lines))) {
290 if (!PrintLines(lines)) {
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
StringUtil.java 405 * then passed to {@link #fixedWidth(String[], int)} as the {@code lines}
412 List<String> lines = new ArrayList<String>(); local
415 lines.add(line);
418 String[] lineArray = lines.toArray(new String[0]);
423 * Reformats the given array of lines to a fixed width by inserting
427 * whitespace. Lines which are already short enough will be passed
437 * @param lines array of lines to format
440 public static String fixedWidth(String[] lines, int width) {
443 for (String line : lines) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pydoc.py 16 Run "pydoc -k <keyword>" to search for a keyword in the synopsis lines
88 lines = split(strip(doc), '\n')
89 if len(lines) == 1:
90 return lines[0], ''
91 elif len(lines) >= 2 and not rstrip(lines[1]):
92 return lines[0], join(lines[2:], '\n')
93 return '', join(lines, '\n')
    [all...]
socket.py 329 lines = filter(None, map(str, list))
330 self._wbuf_len += sum(map(len, lines))
331 self._wbuf.extend(lines)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pydoc.py 16 Run "pydoc -k <keyword>" to search for a keyword in the synopsis lines
88 lines = split(strip(doc), '\n')
89 if len(lines) == 1:
90 return lines[0], ''
91 elif len(lines) >= 2 and not rstrip(lines[1]):
92 return lines[0], join(lines[2:], '\n')
93 return '', join(lines, '\n')
    [all...]
socket.py 329 lines = filter(None, map(str, list))
330 self._wbuf_len += sum(map(len, lines))
331 self._wbuf.extend(lines)
  /prebuilts/tools/common/gradle-plugins/repository/commons-io/commons-io/1.3.2/
commons-io-1.3.2.jar 
  /prebuilts/tools/common/m2/repository/commons-io/commons-io/1.3.2/
commons-io-1.3.2.jar 
  /system/extras/tests/net_test/
ping6_test.py 259 lines = open("/proc/net/%s" % protocol).readlines()
263 self.assertEqual(net_test.IPV6_SEQ_DGRAM_HEADER, lines[0])
264 lines = lines[1:]
287 for line in lines:
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 425 unsigned lines = len / max_line; local
427 if (lines > 0) {
429 if (len / characters > lines) {
  /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/linux-tools-perf/src/tools/perf/util/
dwarf-aux.c 613 /* Walk on lines of blocks included in given DIE */
653 * die_walk_lines - Walk on lines inside given DIE
658 * Walk on all lines inside given @rt_die and call @callback on each line.
659 * If the @rt_die is a function, walk only on the lines inside the function,
666 Dwarf_Lines *lines; local
684 /* Get lines list in the CU */
685 if (dwarf_getsrclines(cu_die, &lines, &nlines) != 0) {
686 pr_debug2("Failed to get source lines on this CU.\n");
689 pr_debug2("Get %zd lines from this CU\n", nlines);
691 /* Walk on the lines on lines list *
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_calendar.py 179 lines = []
183 lines.append(line)
184 return lines
test_zipfile.py 46 # Make a source file with some lines
76 lines = directory.splitlines()
77 self.assertEqual(len(lines), 4) # Number of files + header
79 self.assertIn('File Name', lines[0])
80 self.assertIn('Modified', lines[0])
81 self.assertIn('Size', lines[0])
83 fn, date, time_, size = lines[1].split()
610 # Make a source file with some lines
652 lines = directory.splitlines()
653 self.assertEqual(len(lines), 4) # Number of files + heade
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_calendar.py 179 lines = []
183 lines.append(line)
184 return lines
test_zipfile.py 46 # Make a source file with some lines
76 lines = directory.splitlines()
77 self.assertEqual(len(lines), 4) # Number of files + header
79 self.assertIn('File Name', lines[0])
80 self.assertIn('Modified', lines[0])
81 self.assertIn('Size', lines[0])
83 fn, date, time_, size = lines[1].split()
610 # Make a source file with some lines
652 lines = directory.splitlines()
653 self.assertEqual(len(lines), 4) # Number of files + heade
    [all...]
  /sdk/attribute_stats/src/
Analyzer.java 468 String[] lines = metadata.split("\n"); local
469 for (int i = 0; i < lines.length; i++) {
470 String line = lines[i];
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptParser.java 681 // attributes end up on subsequent lines we don't find it on
744 * @param lines The array of lines
749 private static final Matcher getNextLineMatcher(String[] lines,
752 if (nextIndex == lines.length) {
758 Matcher m = pattern.matcher(lines[nextIndex]);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DeqpTestRunner.java 580 public void processNewLines(String[] lines) {
581 for (String line : lines) {
675 public void processNewLines(String[] lines) {
676 for (String line : lines) {
933 final String[] lines = processes.split("(\\\\r|\\\\n)+"); local
    [all...]
  /external/deqp/modules/gles2/scripts/
genutil.py 24 lines = text.split("\n")
25 lines = [indentStr + line for line in lines]
26 lines = [ ["", line][line.strip() != ""] for line in lines]
27 return "\n".join(lines)
  /external/lldb/test/unittest2/
case.py 812 lines = []
814 lines.append('Items in the first set but not the second:')
816 lines.append(repr(item))
818 lines.append('Items in the second set but not the first:')
820 lines.append(repr(item))
822 standardMsg = '\n'.join(lines)
    [all...]
  /external/opencv/cv/include/
cvcompat.h 505 float* lines, int linesNumber )
507 CvMat linesMat = cvMat( 1, linesNumber, CV_32FC2, lines );
518 int* lines, int linesNumber )
520 CvMat linesMat = cvMat( 1, linesNumber, CV_32SC4, lines );
530 float* lines, int linesNumber )
532 CvMat linesMat = cvMat( 1, linesNumber, CV_32FC2, lines );
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
peers.cpp 406 QStringList lines = info.split(QRegExp("\\n")); local
409 for (QStringList::Iterator it = lines.begin();
410 it != lines.end(); it++) {
422 name = lines[0];
430 lines[0]);
444 item->setData(lines[0], peer_role_address);
592 QStringList lines = bss.split(QRegExp("\\n")); local
593 for (QStringList::Iterator it = lines.begin();
594 it != lines.end(); it++) {
629 for (int i = 0; i < lines.size(); i++)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/tests/
G726EncTest.c 159 int lines[500] = {0}; variable
177 while((lines[e]!=0)&& (e<500) ){
181 lines[e]=line;
200 lines[q]=0;
    [all...]

Completed in 1514 milliseconds

<<21222324252627282930>>