HomeSort by relevance Sort by last modified time
    Searched refs:lines (Results 201 - 225 of 426) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/v8/tools/
ll_prof.py 137 # Get a list of disassembled lines and their addresses.
138 lines = self._GetDisasmLines(code_info, options)
139 if len(lines) == 0:
141 # Print annotated lines.
142 address = lines[0][0]
144 for i in xrange(len(lines)):
145 start_offset = lines[i][0] - address
146 if i == len(lines) - 1:
149 end_offset = lines[i + 1][0] - address
162 print "%15.2f %x: %s" % (count, lines[i][0], lines[i][1]
    [all...]
  /external/opencv/cv/src/
cvfundam.cpp 1030 const CvMat* fmatrix, CvMat* lines )
    [all...]
  /external/v8/tools/gcmole/
gcmole.lua 74 func(filename, pipe:lines())
178 local function parse (filename, lines)
181 for funcname in lines do
234 local function SearchForErrors(filename, lines)
236 for l in lines do
  /external/chromium/net/http/
http_response_headers_unittest.cc 922 std::string name, value, lines; local
926 lines.append(name);
927 lines.append(": ");
928 lines.append(value);
929 lines.append("\n");
932 EXPECT_EQ(std::string(tests[i].expected_lines), lines); local
    [all...]
  /external/libvpx/examples/includes/geshi/
geshi.php 76 /** Use a pre to wrap lines when line numbers are enabled or to wrap the whole code. */
407 * Lines that should be highlighted extra
413 * Styles of lines that should be highlighted extra
419 * Styles of extra-highlighted lines
469 * Line number styles for fancy lines
870 * For fancy line numbers, the second parameter is used to signal which lines
875 * @param int Defines which lines are fancy
889 * span over multiple lines or not. Defaults to true to reduce overhead.
1697 $lines = intval($lines); variable
2977 $lines = explode("\\n", $result); variable
    [all...]
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
JythonUtils.java 435 Collection<String> lines = splitString(argDocs[x], 80 - indentOffset); local
438 for (String line : lines) {
469 List<String> lines = Lists.newArrayList(); local
481 lines.add(currentLine.toString());
485 lines.add(currentLine.toString());
486 return lines;
  /external/skia/src/core/
SkLineClipper.cpp 145 SkPoint lines[]) {
232 // Now copy the results into the caller's lines[] parameter
236 lines[lineCount - i] = result[i];
239 memcpy(lines, result, (lineCount + 1) * sizeof(SkPoint));
  /frameworks/base/core/tests/coretests/src/android/text/
StaticLayoutTest.java 79 * Basic test showing effect of includePad = true wrapping to 2 lines.
96 * Basic test showing effect of includePad = true wrapping to 3 lines.
115 * Basic test showing effect of includePad = true wrapping to 3 lines and
144 * to 3 lines.
165 * spacingMult = 1.5, wrapping to 3 lines.
187 * spacingMult = 0.8 when wrapping to 3 lines.
296 int lines = values.length >> 1; local
297 assertEquals(lines, l.getLineCount());
300 for (int i = 0, n = 0; i < lines; ++i, n += 2) {
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
LegacyContactImporterTest.java 277 String[] lines = multiline.split("\n"); local
281 for (int i = 1; i < lines.length - 1; i++) {
282 sb.append(i).append(" ").append(lines[i]).append('\n');
  /external/chromium/net/websockets/
websocket_handshake_handler.cc 74 // is, lines that are not formatted as "<name>: <value>\r\n".
81 StringTokenizer lines(headers.begin(), headers.end(), "\r\n");
82 while (lines.GetNext()) {
83 std::string::const_iterator line_begin = lines.token_begin();
84 std::string::const_iterator line_end = lines.token_end();
websocket_job_unittest.cc 314 std::vector<std::string> lines; local
315 base::SplitString(kHandshakeResponseMessage, '\n', &lines);
316 for (size_t i = 0; i < lines.size() - 2; i++) {
317 std::string line = lines[i] + "\r\n";
  /external/clang/lib/Rewrite/
Rewriter.cpp 256 SmallVector<StringRef, 4> lines; local
257 Str.split(lines, "\n");
259 for (unsigned i = 0, e = lines.size(); i != e; ++i) {
260 indentedStr += lines[i];
376 // Find where the lines start.
400 // Indent the lines between start/end offsets.
  /external/llvm/test/lib/
llvm.exp 46 # This procedure performs variable substitutions on the RUN: lines of a test
153 # Open the test file and start reading lines
172 set lines($numLines) $runline
224 regsub ^.*RUN:(.*) $lines($i) \1 theLine
  /external/markdown/markdown/
__init__.py 385 # Split into lines and run the line preprocessors.
386 self.lines = source.split("\n")
388 self.lines = prep.run(self.lines)
391 root = self.parser.parseDocument(self.lines).getroot()
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_textwithnomarkup.js 85 multiple text lines without markup, so they should be
87 method should contain the combination of the two lines.
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_textwithnomarkup.js 85 multiple text lines without markup, so they should be
87 method should contain the combination of the two lines.
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
FileListingService.java 424 public void processNewLines(String[] lines) {
425 for (String line : lines) {
426 // no need to handle empty lines.
683 public void processNewLines(String[] lines) {
684 for (String line : lines) {
  /external/chromium/net/ftp/
ftp_network_transaction.cc 122 if (response.lines.size() != 1)
124 const char* ptr = response.lines[0].c_str();
152 if (response.lines.size() != 1)
154 const char* ptr = response.lines[0].c_str();
160 ptr = response.lines[0].c_str(); // Try without bracket.
771 std::string line = response.lines[0];
823 std::string line = response.lines[0];
1022 if (response.lines.size() != 1)
1025 if (!base::StringToInt64(response.lines[0], &size))
    [all...]
  /external/elfutils/tests/
Makefile 17 SOURCES = arextract.c arsymtest.c asm-tst1.c asm-tst2.c asm-tst3.c asm-tst4.c asm-tst5.c asm-tst6.c asm-tst7.c asm-tst8.c asm-tst9.c ecp.c get-aranges.c get-files.c get-lines.c get-pubnames.c hash.c msg_tst.c newfile.c newscn.c saridx.c scnnames.c sectiondump.c show-abbrev.c show-die-info.c showptable.c test-nlist.c update1.c update2.c update3.c update4.c
46 get-lines$(EXEEXT) get-pubnames$(EXEEXT) get-aranges$(EXEEXT) \
123 get_lines_SOURCES = get-lines.c
124 get_lines_OBJECTS = get-lines.$(OBJEXT)
185 asm-tst9.c ecp.c get-aranges.c get-files.c get-lines.c \
193 get-lines.c get-pubnames.c hash.c msg_tst.c newfile.c newscn.c \
313 run-show-die-info.sh run-get-files.sh run-get-lines.sh \
322 run-show-die-info.sh run-get-files.sh run-get-lines.sh \
449 get-lines$(EXEEXT): $(get_lines_OBJECTS) $(get_lines_DEPENDENCIES)
450 @rm -f get-lines$(EXEEXT
    [all...]
  /development/pdk/docs/source/
source_toc.cs 29 <li><a href="<?cs var:toroot ?>source/code-lines.html">Branches &amp; Releases</a></li>
  /device/samsung/maguro/
full_maguro.mk 21 # lines, full and maguro, hence its name.
  /device/samsung/tuna/
full_tuna.mk 21 # lines, full and toro, hence its name.
  /device/ti/panda/
full_panda.mk 21 # lines, full and toro, hence its name.
  /external/elfutils/libdw/
libdw.h 334 extern int dwarf_getsrclines (Dwarf_Die *cudie, Dwarf_Lines **lines,
337 /* Return one of the source lines of the CU. */
338 extern Dwarf_Line *dwarf_onesrcline (Dwarf_Lines *lines, size_t idx);
  /external/markdown/
regression-tests.py 50 lines = ['#foo', '', 'bar', '', ' baz']
51 tree = self.parser.parseDocument(lines)

Completed in 989 milliseconds

1 2 3 4 5 6 7 891011>>