HomeSort by relevance Sort by last modified time
    Searched refs:lines (Results 251 - 275 of 1071) sorted by null

<<11121314151617181920>>

  /device/google/accessory/arduino/USB_Host_Shield/
Max_LCD.cpp 95 void Max_LCD::begin(uint8_t cols, uint8_t lines, uint8_t dotsize) {
96 if (lines > 1) {
99 _numlines = lines;
103 if ((dotsize != 0) && (lines == 1)) {
138 // finally, set # lines, font size, etc.
  /external/chromium/net/ftp/
ftp_ctrl_response_buffer.h 25 std::vector<std::string> lines; // Response lines, without CRLFs. member in struct:net::FtpCtrlResponse
56 // response line, without taking into account preceding lines (which
87 // Keep the response data while we add all lines to it.
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_handshake_draft75.py 336 ( # Cookie with continuation lines
377 def _create_get_memorized_lines(lines):
381 return lines
387 for lines in request_lines_set:
390 lines)
  /external/chromium_org/net/ftp/
ftp_ctrl_response_buffer.h 26 std::vector<std::string> lines; // Response lines, without CRLFs. member in struct:net::FtpCtrlResponse
57 // response line, without taking into account preceding lines (which
88 // Keep the response data while we add all lines to it.
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
nacl_http_response_headers.cc 45 // PPAPI response headers are \n delimited. Separate out the lines.
46 std::vector<std::string> lines; local
47 SplitString(headers_str, '\n', &lines);
49 for (size_t i = 0; i < lines.size(); ++i) {
52 if (!SplitOnce(lines[i], ':', &tokens)) {
53 // Ignore funny header lines that don't have the key-value separator.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
python_unittest.py 58 checker.check(lines=[])
  /external/chromium_org/third_party/flot/
jquery.flot.categories.min.js 44 */(function(e){function n(e,t,n,r){var i=t.xaxis.options.mode=="categories",s=t.yaxis.options.mode=="categories";if(!i&&!s)return;var o=r.format;if(!o){var u=t;o=[],o.push({x:!0,number:!0,required:!0}),o.push({y:!0,number:!0,required:!0});if(u.bars.show||u.lines.show&&u.lines.fill){var a=!!(u.bars.show&&u.bars.zero||u.lines.show&&u.lines.zero);o.push({y:!0,number:!0,required:!1,defaultValue:0,autoscale:a}),u.bars.horizontal&&(delete o (…)
  /external/chromium_org/third_party/lcov/bin/
mcov 242 my @lines = <INPUT>;
243 foreach my $line (@lines) {
245 # check for lines with source string.
275 my @lines = <INPUT>;
276 foreach my $line (@lines) {
  /external/chromium_org/third_party/skia/src/gpu/
GrAAHairLinePathRenderer.h 42 const PtArray& lines,
  /external/chromium_org/tools/gn/
standard_out.cc 151 std::vector<std::string> lines; local
152 base::SplitStringDontTrim(text, '\n', &lines);
154 for (size_t i = 0; i < lines.size(); i++) {
155 const std::string& line = lines[i];
  /external/chromium_org/tools/grit/grit/format/policy_templates/
policy_template_generator.py 27 lines = msg_txt.split('\n')
28 lines = [line.strip() for line in lines]
29 return "\n".join(lines)
  /external/chromium_org/tools/symsrc/
source_index.py 144 lines = [
203 lines.append('%s*%s*%s*%s' % (filename, root, path, rev))
207 lines.append('SRCSRV: end ------------------------------------------------')
209 WriteSourceStream(pdb_filename, '\r\n'.join(lines))
  /external/doclava/src/com/google/doclava/
DocFile.java 87 // Any blank lines are ignored.
90 Matcher lines = LINE.matcher(filedata); local
92 while (lines.find()) {
93 line = lines.group(1);
96 start = lines.end();
  /external/elfutils/libdwfl/
dwfl_lineinfo.c 61 const Dwarf_Line *info = &cu->die.cu->lines->info[line->idx];
  /external/libvorbis/vq/
latticetune.c 95 long lines=0; local
99 lines++;
100 if(!(lines&0xfff))spinnit("codewords so far...",lines);
  /external/skia/src/gpu/
GrAAHairLinePathRenderer.h 42 const PtArray& lines,
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3InputStream.cpp 185 String8 lines; local
186 lines.appendFormat(" Stream[%d]: Input\n", mId);
187 write(fd, lines.string(), lines.size());
  /libcore/luni/src/test/java/libcore/java/net/
NetworkInterfaceTest.java 46 String lines[] = new String[] { local
52 ifAddresses, lines);
60 String[] lines = new String[] { local
68 ifAddresses, lines);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java 128 String[] lines = new String[stack.length]; local
130 lines[i] = stack[i].toString();
133 entry.holdingStacks.add(lines);
135 mProfileData.addSample(lines);
  /packages/providers/CalendarProvider/
maketests.py 43 lines = str.split("\n")
46 for line in lines:
87 lines = stripTimezone(s) variable
88 for s in lines:
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
compute_dependencies.py 92 lines = idl_file.readlines()
93 return ''.join(lines)
196 lines = []
197 lines.append('namespace="Event"\n')
198 lines.append('\n')
206 lines.append('%s %s\n' % (refined_filename, ', '.join(extended_attributes_list)))
207 write_file(lines, destination_filename, only_if_changed)
211 lines = (['partial interface %s {\n' % interface_name] +
215 write_file(lines, destination_filename, only_if_changed)
373 lines = ['%s %s\n' % (idl_file, ' '.join(sorted(dependency_files))
    [all...]
  /external/chromium_org/tools/gyp/test/lib/
TestCommon.py 39 test.must_contain_all_lines(output, lines, ['title', find])
41 test.must_contain_any_line(output, lines, ['title', find])
51 test.must_not_contain_any_line(output, lines, ['title', find])
250 def must_contain_all_lines(self, output, lines, title=None, find=None):
252 contains all of the specified lines (second argument).
259 for lines in the output.
264 for line in lines:
271 sys.stdout.write("Missing expected lines from %s:\n" % title)
278 def must_contain_any_line(self, output, lines, title=None, find=None):
280 contains at least one of the specified lines (second argument)
    [all...]
  /external/elfutils/libdw/
dwarf_getsrclines.c 115 dwarf_getsrclines (Dwarf_Die *cudie, Dwarf_Lines **lines, size_t *nlines)
125 if (cu->lines == NULL)
128 cu->lines = (void *) -1l;
505 /* XXX Whether the following two lines are necessary is
672 cu->lines = buf;
673 cu->lines->nlines = nlinelist;
676 cu->lines->info[i] = *sortlines[i];
677 cu->lines->info[i].files = files;
683 else if (cu->lines != (void *) -1l)
689 *lines = cu->lines
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
logviewpainter.js 141 * whose length is a multiple of two. Returns a string spanning multiple lines,
172 // Max sure the ASCII text on last line of output lines up with previous
173 // lines.
262 * Indent |lines| by |start|.
264 * For example, if |start| = ' -> ' and |lines| = ['line1', 'line2', 'line3']
271 function indentLines(start, lines) {
272 return start + lines.join('\n' + makeRepeatedString(' ', start.length));
301 * header lines.
383 var lines = [];
386 lines.push('Proxy server: ' + config.single_proxy)
    [all...]
  /external/chromium/googleurl/
PRESUBMIT.py 80 lines = contents.splitlines()
82 for line in lines:
87 # Accept lines with http:// to exceed the max_cols rule.

Completed in 486 milliseconds

<<11121314151617181920>>