/external/chromium-trace/catapult/systrace/profile_chrome/ |
ui.py | 10 def PrintMessage(heading, eol='\n'): 11 sys.stdout.write('%s%s' % (heading, eol))
|
profiler.py | 24 ui.PrintMessage('Downloading...', eol='') 77 (interval, trace_type), eol='') 81 trace_type, 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
|
/packages/services/Telephony/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/services/Telephony/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/services/Telephony/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]
|
/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...] |
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/valgrind/coregrind/m_ume/ |
script.c | 76 Int eol; local 103 eol = (*cp == '\n'); 107 if (!eol && cp < end) { 112 /* arg is from here to eol */
|
/external/toybox/toys/posix/ |
uniq.c | 64 char *thisline = NULL, *prevline = NULL, *tmpline, eol = '\n'; local 70 if (toys.optflags & FLAG_z) eol = 0; 73 if (getdelim(&prevline, &prevsize, eol, infile) < 0) 76 while (getdelim(&thisline, &thissize, eol, infile) > 0) {
|
/external/opencv3/modules/java/generator/src/java/ |
android+StaticHelper.java | 42 String eol = System.getProperty("line.separator"); local 43 for (String str : Core.getBuildInformation().split(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);
|
/system/core/libutils/ |
Tokenizer.cpp | 118 const char* eol = mCurrent; local 119 while (eol != end) { 120 char ch = *eol; 124 eol += 1; 126 return String8(mCurrent, eol - mCurrent);
|