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

1 2 3 4 5 6 7 8 91011

  /packages/services/Car/service/src/com/android/car/storagemonitoring/
WearInformationProvider.java 29 default int adjustEol(int eol) {
30 if ((eol <= 0) || (eol > 3)) return WearInformation.UNKNOWN_PRE_EOL_INFO;
31 return eol;
  /external/syslinux/gpxe/src/image/
script.c 44 off_t eol; local
56 eol = memchr_user ( image->data, offset, '\n',
58 if ( eol < 0 )
59 eol = image->len;
60 len = ( eol - offset );
  /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/syslinux/gpxe/src/core/
linebuf.c 76 const char *eol; local
86 if ( ( eol = memchr ( data, '\n', len ) ) ) {
87 consume = ( eol - data + 1 );
103 if ( eol ) {
  /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);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
ParseException.java 128 expected.append(eol).append(" ");
142 retval += "." + eol;
144 retval += "Was expecting:" + eol + " ";
146 retval += "Was expecting one of:" + eol + " ";
155 protected String eol = System.getProperty("line.separator", "\n"); field in class:ParseException
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
ParseException.java 128 expected.append(eol).append(" ");
142 retval += "." + eol;
144 retval += "Was expecting:" + eol + " ";
146 retval += "Was expecting one of:" + eol + " ";
155 protected String eol = System.getProperty("line.separator", "\n"); field in class:ParseException
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
ParseException.java 128 expected.append(eol).append(" ");
142 retval += "." + eol;
144 retval += "Was expecting:" + eol + " ";
146 retval += "Was expecting one of:" + eol + " ";
155 protected String eol = System.getProperty("line.separator", "\n"); field in class:ParseException
  /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);
  /external/webrtc/webrtc/sound/
pulseaudiosoundsystem.h 80 int eol,
86 int eol,
91 int eol,
96 int eol,
102 int eol);
107 int eol);
  /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]
  /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
  /prebuilts/gdb/darwin-x86/lib/python2.7/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
  /prebuilts/gdb/linux-x86/lib/python2.7/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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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...]

Completed in 483 milliseconds

1 2 3 4 5 6 7 8 91011