HomeSort by relevance Sort by last modified time
    Searched refs:eol (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/cldr/tools/scripts/
fixSVNProps.sh 19 svn propset -q svn:eol-style native ${filename}
25 svn propset -q svn:eol-style native ${filename}
30 svn propset -q svn:eol-style native ${filename}
35 svn propset -q svn:eol-style native ${filename}
40 svn propset -q svn:eol-style native ${filename}
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
ParseException.java 103 String eol = System.getProperty("line.separator", "\n"); local
116 expected.append(eol).append(" ");
133 retval += "." + eol;
135 retval += "Was expecting:" + eol + " ";
137 retval += "Was expecting one of:" + eol + " ";
146 protected String eol = System.getProperty("line.separator", "\n"); field in class:ParseException
  /external/chromium-trace/catapult/systrace/profile_chrome/
ui.py 10 def PrintMessage(heading, eol='\n'):
11 sys.stdout.write('%s%s' % (heading, eol))
  /external/apache-commons-bcel/src/examples/Mini/
ParseException.java 131 expected += eol + " ";
146 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn + "." + eol;
148 retval += "Was expecting:" + eol + " ";
150 retval += "Was expecting one of:" + eol + " ";
159 protected String eol = System.getProperty("line.separator", "\n"); field in class:ParseException
  /external/oauth/core/src/main/java/net/oauth/
OAuthProblemException.java 62 int eol = msg.indexOf("\n"); local
63 if (eol < 0) {
64 eol = msg.indexOf("\r");
66 if (eol >= 0) {
67 msg = msg.substring(0, eol);
  /external/webrtc/webrtc/modules/audio_device/linux/
audio_mixer_manager_pulse_linux.h 74 int eol, void *pThis);
76 const pa_sink_input_info *i, int eol,
79 int eol, void *pThis);
82 void PaSinkInfoCallbackHandler(const pa_sink_info *i, int eol);
83 void PaSinkInputInfoCallbackHandler(const pa_sink_input_info *i, int eol);
84 void PaSourceInfoCallbackHandler(const pa_source_info *i, int eol);
audio_mixer_manager_pulse_linux.cc 981 int eol,
985 PaSinkInfoCallbackHandler(i, eol);
992 int eol,
996 PaSinkInputInfoCallbackHandler(i, eol);
1003 int eol,
1007 PaSourceInfoCallbackHandler(i, eol);
1024 int eol)
1026 if (eol)
1053 int eol)
1055 if (eol)
    [all...]
  /external/webrtc/webrtc/sound/
pulseaudiosoundsystem.h 80 int eol,
86 int eol,
91 int eol,
96 int eol,
102 int eol);
107 int eol);
pulseaudiosoundsystem.cc 502 int eol,
506 data->instance->OnGetVolumeCallback(info, eol, &data->channel_volumes);
510 int eol,
512 if (eol) {
533 int eol,
537 data->instance->OnGetSourceChannelCountCallback(info, eol, &data->channels);
541 int eol,
543 if (eol) {
916 int eol,
920 data->instance->OnGetVolumeCallback(info, eol, &data->channel_volumes)
    [all...]
  /external/jsoncpp/devtools/
fixeol.py 4 def fix_source_eol( path, is_dry_run = True, verbose = True, eol = '\n' ):
5 """Makes sure that all sources have the specified eol sequence (default: unix)."""
17 fixed_lines = [line.rstrip('\r\n') + eol for line in raw_lines]
  /external/toybox/toys/posix/
uniq.c 62 char *thisline = 0, *prevline = 0, *tmpline, eol = '\n'; local
68 if (FLAG(z)) eol = 0;
71 if (getdelim(&prevline, &prevsize, eol, infile) < 0) return;
73 while (getdelim(&thisline, &thissize, eol, infile) > 0) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
quoprimime.py 117 maxlinelen=76, eol=NL):
141 Each line of the header will be terminated in the value of eol, which
175 joiner = eol + ' '
181 def encode(body, binary=False, maxlinelen=76, eol=NL):
188 Each line of encoded text will end with eol, which defaults to "\\n". Set
208 # Preserve line endings here so we can check later to see an eol needs to
237 encoded_body += encoded_line + '=' + eol
246 encoded_body += encoded_line + '=' + eol + prev
251 encoded_body += encoded_line + prev + '=' + eol
254 # need to add eol to the end of the line.
    [all...]
base64mime.py 67 maxlinelen=76, eol=NL):
81 Each line of the header will be terminated in the value of eol, which
119 joiner = eol + ' '
125 def encode(s, binary=True, maxlinelen=76, eol=NL):
135 Each line of encoded text will end with eol, which defaults to "\\n". Set
151 if enc.endswith(NL) and eol != NL:
152 enc = enc[:-1] + eol
  /external/jline/src/src/main/java/jline/
ConsoleReaderInputStream.java 79 private boolean eol = false; field in class:ConsoleReaderInputStream.ConsoleLineInputStream
87 if (eol) {
101 eol = true;
  /external/python/cpython2/Lib/email/
quoprimime.py 117 maxlinelen=76, eol=NL):
141 Each line of the header will be terminated in the value of eol, which
175 joiner = eol + ' '
181 def encode(body, binary=False, maxlinelen=76, eol=NL):
188 Each line of encoded text will end with eol, which defaults to "\\n". Set
208 # Preserve line endings here so we can check later to see an eol needs to
237 encoded_body += encoded_line + '=' + eol
246 encoded_body += encoded_line + '=' + eol + prev
251 encoded_body += encoded_line + prev + '=' + eol
254 # need to add eol to the end of the line
    [all...]
base64mime.py 67 maxlinelen=76, eol=NL):
81 Each line of the header will be terminated in the value of eol, which
119 joiner = eol + ' '
125 def encode(s, binary=True, maxlinelen=76, eol=NL):
135 Each line of encoded text will end with eol, which defaults to "\\n". Set
151 if enc.endswith(NL) and eol != NL:
152 enc = enc[:-1] + eol
  /external/python/cpython3/Lib/email/
base64mime.py 79 def body_encode(s, maxlinelen=76, eol=NL):
85 Each line of encoded text will end with eol, which defaults to "\n". Set
98 if enc.endswith(NL) and eol != NL:
99 enc = enc[:-1] + eol
quoprimime.py 152 def body_encode(body, maxlinelen=76, eol=NL):
155 Each line of encoded text will end with eol, which defaults to "\\n". Set
160 eol string (maxlinelen defaults to 76 characters, the maximum value
179 soft_break = '=' + eol
225 return eol.join(encoded_body)
231 def decode(encoded, eol=NL):
234 Lines are separated with eol, which defaults to \\n.
246 decoded += eol
271 decoded += eol
272 # Special case if original string did not end with eol
    [all...]
  /external/bcc/src/cc/frontends/p4/compiler/
programSerializer.py 11 self.eol = "\n"
33 self.program += self.eol
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
CodeAttribute_info.java 143 String eol = System.getProperty ("line.separator"); local
147 s.append ("CodeAttribute_info: [attribute_name_index = " + m_name_index + ", attribute_length = " + m_attribute_length + "]" + eol);
148 s.append (" max_stack/max_locals = " + m_max_stack + '/' + m_max_locals + eol);
149 s.append (" code [length " + m_codeSize + "]" + eol);
153 s.append (" " + m_attributes.get (a) + eol);
  /external/iw/
coalesce.c 47 char *eol; local
52 eol = strchr(buf + 5, '\r');
53 if (eol)
54 *eol = 0;
55 eol = strchr(buf + 5, '\n');
56 if (eol)
57 *eol = 0;
  /external/libunwind/src/
os-linux.h 219 char *eol = NULL; local
225 eol = mi->buf + i;
231 if (!eol)
252 eol = mi->buf + bytes_left + nread - 1;
257 eol = mi->buf + i;
262 mi->buf = eol + 1;
263 *eol = '\0';
  /external/curl/tests/
directories.pm 167 'eol' => "\r\n",
176 'eol' => "\r\n",
184 'eol' => "\r\n",
193 $eol = $$list{'eol'};
215 push(@contentlist, "$ftype$fperm $fhlink $fuser $fgroup $fsize $ftime $file{'name'}$eol");
232 push(@contentlist, "$time $size_or_dir $file{'name'}$eol");
  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 136 eol (); method
142 eol (); method
160 eol (); method
164 eol (); method
173 eol (); method
177 eol (); method
263 super.write (IConstants.EOL, 0, IConstants.EOL.length ());
365 eol (); method
379 eol (); method
392 eol (); method
407 eol (); method
448 eol (); method
479 private void eol () method in class:ReportGenerator
    [all...]
  /art/libartbase/base/
indenter.h 42 const char* eol = static_cast<const char*>(memchr(s, '\n', n)); variable
43 while (eol != nullptr) {
44 size_t to_write = eol + 1 - s;
49 eol = static_cast<const char*>(memchr(s, '\n', n));

Completed in 3297 milliseconds

1 2 3 4 5