Searched refs:EOL (Results 1 - 25 of 116) sorted by relevance

12345

/external/emma/core/java12/
H A Demma.java50 private static final String EOL = System.getProperty ("line.separator", "\n"); field in class:emma
53 "emma usage: emma <command> [command options]," + EOL +
54 " where <command> is one of:" + EOL +
55 EOL +
56 " run application runner {same as 'emmarun' tool};" + EOL +
57 " instr offline instrumentation processor;" + EOL +
58 " report offline report generator;" + EOL +
59 " merge offline data file merge processor." + EOL +
60 EOL +
61 " {use '<command> -h' to see usage help for a given command}" + EOL
[all...]
/external/nist-sip/java/gov/nist/core/
H A DLexerCore.java537 this.buffer + " :unexpected EOL",
561 this.buffer + " :unexpected EOL",
568 this.buffer + " : unexpected EOL",
601 * Scan until you see a slash or an EOL.
720 this.buffer + "unexpected EOL",
730 this.buffer + "unexpected EOL",
/external/emma/core/java12/com/vladium/util/
H A DIConstants.java26 String EOL = System.getProperty ("line.separator", "\n"); field in interface:IConstants
H A DIntObjectMap.java210 out.append (super.toString ()); out.append (EOL);
211 out.append ("size = " + m_size + ", bucket table size = " + m_buckets.length + ", load factor = " + m_loadFactor + EOL);
212 out.append ("size threshold = " + m_sizeThreshold + EOL);
284 private static final String EOL = System.getProperty ("line.separator", "\n"); field in class:IntObjectMap
H A DIntSet.java184 out.append (super.toString ()); out.append (EOL);
185 out.append ("size = " + m_size + ", bucket table size = " + m_buckets.length + ", load factor = " + m_loadFactor + EOL);
186 out.append ("size threshold = " + m_sizeThreshold + EOL);
256 private static final String EOL = System.getProperty ("line.separator", "\n"); field in class:IntSet
H A DIntIntMap.java252 out.append (super.toString ()); out.append (EOL);
253 out.append ("size = " + m_size + ", bucket table size = " + m_buckets.length + ", load factor = " + m_loadFactor + EOL);
254 out.append ("size threshold = " + m_sizeThreshold + EOL);
326 private static final String EOL = System.getProperty ("line.separator", "\n"); field in class:IntIntMap
H A DObjectIntMap.java248 out.append (super.toString ()); out.append (EOL);
249 out.append ("size = " + m_size + ", bucket table size = " + m_buckets.length + ", load factor = " + m_loadFactor + EOL);
250 out.append ("size threshold = " + m_sizeThreshold + EOL);
322 private static final String EOL = System.getProperty ("line.separator", "\n"); field in class:ObjectIntMap
H A DSoftValueMap.java414 out.append (getClass ().getName ().concat ("@").concat (Integer.toHexString (System.identityHashCode (this)))); out.append (EOL);
415 out.append ("size = " + m_size + ", bucket table size = " + m_buckets.length + ", load factor = " + m_loadFactor + EOL);
416 out.append ("size threshold = " + m_sizeThreshold + ", get clear frequency = " + m_readClearCheckFrequency + ", put clear frequency = " + m_writeClearCheckFrequency + EOL);
417 out.append ("get count: " + m_readAccessCount + ", put count: " + m_writeAccessCount + EOL);
585 final StringBuffer msg = new StringBuffer ("removeClearedValues(): soft reference [" + _ref + "] did not match within bucket #" + bucketIndex + EOL);
609 private static final String EOL = System.getProperty ("line.separator", "\n"); field in class:SoftValueMap
/external/valgrind/main/memcheck/tests/linux/
H A Dbrk.c16 #define EOL ((void*)( ~(long)0 )) macro
26 // vals[9] = EOL;
27 vals[8] = EOL;
29 for (i = 0; EOL != vals[i]; i++) {
35 for (i = 0; EOL != vals[i]; i++) {
/external/clang/lib/Rewrite/Frontend/
H A DInclusionRewriter.cpp70 StringRef EOL, StringRef Extra = StringRef());
71 void WriteImplicitModuleImport(const Module *Mod, StringRef EOL);
74 StringRef EOL, int &lines,
77 const MemoryBuffer &FromFile, StringRef EOL,
100 /// \p Line we are located at, using the specified \p EOL line separator, and
104 StringRef EOL, StringRef Extra) {
128 OS << EOL; local
132 StringRef EOL) {
134 << " /* clang -frewrite-includes: implicit import */" << EOL;
216 StringRef EOL, in
102 WriteLineInfo(const char *Filename, int Line, SrcMgr::CharacteristicKind FileType, StringRef EOL, StringRef Extra) argument
131 WriteImplicitModuleImport(const Module *Mod, StringRef EOL) argument
214 OutputContentUpTo(const MemoryBuffer &FromFile, unsigned &WriteFrom, unsigned WriteTo, StringRef EOL, int &Line, bool EnsureNewline) argument
232 OS << EOL; local
242 CommentOutDirective(Lexer &DirectiveLex, const Token &StartToken, const MemoryBuffer &FromFile, StringRef EOL, unsigned &NextToWrite, int &Line) argument
257 OS << "#if 0 /* expanded by -frewrite-includes */" << EOL; local
261 OS << "#endif /* expanded by -frewrite-includes */" << EOL; local
358 StringRef EOL = DetectEOL(FromFile); local
[all...]
/external/oauth/core/src/main/java/net/oauth/client/
H A DURLConnectionClient.java64 headers.append(EOL);
69 headers.append(key).append(": ").append(value).append(EOL);
82 headers.append(key).append(": ").append(header.getValue()).append(EOL);
111 private static final String EOL = HttpResponseMessage.EOL; field in class:URLConnectionClient
H A DURLConnectionResponse.java100 request.append(EOL);
119 response.append(firstLine).append(EOL);
125 response.append(value).append(EOL);
127 response.append(EOL);
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
H A DHttpMethodResponse.java103 request.append(EOL);
105 request.append(header.getName()).append(": ").append(header.getValue()).append(EOL);
111 request.append("Content-Length: ").append(contentLength).append(EOL);
114 request.append(EOL);
123 response.append(value).append(EOL);
127 response.append(name).append(": ").append(value).append(EOL);
129 response.append(EOL);
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpResponseMessage.java57 public static final String EOL = "\r\n"; field in class:HttpResponseMessage
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DScanners.py11 cython.declare(BOL=object, EOL=object, EOF=object, NOT_FOUND=object)
14 from Regexps import BOL, EOL, EOF namespace
148 if self.cur_char is EOL:
215 cur_char = EOL
218 cur_char = EOL
268 self.cur_char = EOL
271 self.cur_char = EOL
/external/smack/src/org/xbill/DNS/
H A DTokenizer.java41 public static final int EOL = 1; field in class:Tokenizer
98 case EOL:
119 /** Indicates whether this token contains an EOL or EOF. */
122 return (type == EOL || type == EOF);
247 if (current.type == EOL)
294 return current.set(EOL, null);
315 return current.set(EOL, null);
359 if (current.type == EOL)
545 * Gets the next token from a tokenizer, which must be an EOL or EOF.
546 * @throws TextParseException The input was invalid or not an EOL o
[all...]
/external/lldb/source/Breakpoint/
H A DWatchpointOptions.cpp171 s->EOL();
186 s->EOL ();
231 s->EOL();
H A DBreakpointLocation.cpp556 s->EOL();
563 s->EOL();
569 s->EOL();
576 s->EOL();
587 s->EOL();
597 s->EOL();
619 s->EOL();
630 s->EOL();
H A DBreakpointOptions.cpp221 s->EOL ();
253 s->EOL();
261 s->EOL();
288 s->EOL();
/external/lldb/source/Symbol/
H A DSymbolContext.cpp189 s->EOL();
243 s->EOL();
250 s->EOL();
257 s->EOL();
264 s->EOL();
289 s->EOL();
297 s->EOL();
304 s->EOL();
329 s->EOL();
335 s->EOL();
[all...]
H A DClangExternalASTSourceCommon.cpp87 s->EOL();
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
H A Dgen_msvs_def.sh15 EOL=$'\n'
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLWriter.java76 m_out.write (IConstants.EOL);
H A DHTMLDocument.java124 def.append (IConstants.EOL);
128 def.append (IConstants.EOL);
/external/libvpx/libvpx/build/make/
H A Dgen_msvs_def.sh15 EOL=$'\n'

Completed in 2895 milliseconds

12345