HomeSort by relevance Sort by last modified time
    Searched refs:lines (Results 226 - 250 of 486) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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 152 SkPoint lines[]) {
239 // Now copy the results into the caller's lines[] parameter
243 lines[lineCount - i] = result[i];
246 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) {
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
backtracking.rb 54 * fixed look; k=2 made a few extra thousand 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/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 257 SmallVector<StringRef, 4> lines; local
258 Str.split(lines, "\n");
260 for (unsigned i = 0, e = lines.size(); i != e; ++i) {
261 indentedStr += lines[i];
377 // Find where the lines start.
401 // Indent the lines between start/end offsets.
  /external/compiler-rt/make/
AppleBI.mk 23 # Log full compile lines in B&I logs and omit summary lines.
  /external/linux-tools-perf/util/
annotate.h 44 * @lines: If 'print_lines' is specified, per source code line percentages
47 * lines is allocated, percentages calculated and all sorted by percentage
55 struct source_line *lines; member in struct:annotated_source
  /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 417 public void processNewLines(String[] lines) {
418 for (String line : lines) {
419 // no need to handle empty lines.
661 public void processNewLines(String[] lines) {
662 for (String line : lines) {
  /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/libdwfl/
Makefile.am 64 lines.c dwfl_lineinfo.c dwfl_line_comp_dir.c \
  /external/markdown/
regression-tests.py 50 lines = ['#foo', '', 'bar', '', ' baz']
51 tree = self.parser.parseDocument(lines)
  /external/mksh/src/
histrap.c 247 /* Run editor on selected lines, then run resulting commands */
604 * a) permit HISTSIZE to control number of lines of history stored
702 int lines, fd, rv = 0; local
759 lines = hist_count_lines(base+2, hsize-2);
760 if (lines > histsize) {
800 int lines = 0; local
818 lines++;
824 return (lines);
828 * Shrink the history file to histsize lines
883 int lines = 0 local
    [all...]
  /external/skia/bench/
bench_util.py 48 def parse(settings, lines):
61 for line in lines:
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
picoloaddbg.lua 48 for line in infile:lines() do
50 -- discard comment-only lines
picoloadphones.lua 46 for line in infile:lines() do
48 -- discard comment-only lines
  /packages/apps/Email/src/org/apache/commons/io/
FileUtils.java     [all...]
  /sdk/anttasks/src/com/android/ant/
DependencyGraph.java 156 // expect it's likely split on several lines. So let's move it back on a single line
158 String[] lines = content.toString().split("\n"); local
160 for (String line : lines) {

Completed in 542 milliseconds

1 2 3 4 5 6 7 8 91011>>