Searched defs:EOL (Results 1 - 25 of 36) sorted by relevance

12

/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/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
/external/valgrind/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/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 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 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 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/oauth/core/src/main/java/net/oauth/http/
H A DHttpResponseMessage.java57 public static final String EOL = "\r\n"; field in class:HttpResponseMessage
/external/pdfium/third_party/libtiff/
H A Dt4.h41 #define EOL 0x001 /* EOL code value - 0000 0000 0000 1 */ macro
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/utils/
H A DUtils.java37 public static final String EOL = System.getProperty("line.separator"); field in class:Utils
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
H A DParseException.java40 protected static String EOL = "\n"; field in class:ParseException
137 expected.append(INDENT).append(option).append(EOL);
159 sb.append(EOL).append(INDENT).append("at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn);
160 sb.append(".").append(EOL);
166 sb.append(EOL).append("Was expecting"+ (numExpectedTokens == 1 ? ":" : " one of:") + EOL + EOL);
171 // sb.append(EOL).append("** Lexical State : ").append(lexicalStateName).append(EOL).append(EOL);
[all...]
/external/testng/src/main/java/org/testng/reporters/
H A DXMLUtils.java19 private static final String EOL = System.getProperty("line.separator"); field in class:XMLUtils
110 result.append(EOL);
117 .append(EOL);
H A DXMLStringBuffer.java18 private static final String EOL = System.getProperty("line.separator", "\n"); field in class:XMLStringBuffer
82 m_buffer.append("<?xml version=\"" + v + "\" encoding=\"" + enc + "\"?>").append(EOL);
91 m_buffer.append("<!DOCTYPE " + docType + ">" + EOL);
280 m_buffer.append("/>").append(EOL);
316 m_buffer.append(EOL);
318 m_buffer.append(m_currentIndent).append("<![CDATA[").append(content).append("]]>" + EOL);
355 assert ("<family>" + EOL + "<cedric>true</cedric>" + EOL + "<alois>true</alois>" + EOL + "</family>" + EOL)
[all...]
/external/emma/core/java12/com/vladium/util/exception/
H A DExceptionCommon.java336 final StringBuffer msg = new StringBuffer (code + EOL);
354 msg.append (EOL);
481 private static final String EOL = System.getProperty ("line.separator", "\n"); field in class:ExceptionCommon
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
H A DUtils.java38 public static final String EOL = System.getProperty("line.separator"); field in class:Utils
225 * @return content with all kinds of EOL characters replaced by endOfLineCharacter
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_dump.c85 #define EOL() ctx->dump_printf( ctx, "\n" ) macro
457 EOL();
510 EOL();
541 EOL();
711 EOL();
740 EOL();
/external/swiftshader/third_party/LLVM/utils/FileCheck/
H A DFileCheck.cpp553 size_t EOL = Buffer.find_first_of("\n\r"); local
560 if (P.ParsePattern(Buffer.substr(0, EOL), SM))
563 Buffer = Buffer.substr(EOL);
/external/emma/lib/internal/
H A Dstamptool.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/util/ com/vladium/util/version/ ...
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
H A DDarwinAsmParser.cpp425 StringRef EOL = getLexer().LexUntilEndOfStatement(); local
426 SectionSpec.append(EOL.begin(), EOL.end());
/external/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp601 StringRef EOL = getLexer().LexUntilEndOfStatement(); local
602 SectionSpec.append(EOL.begin(), EOL.end());
/external/llvm/utils/FileCheck/
H A DFileCheck.cpp944 size_t EOL = Buffer.find_first_of("\n\r"); local
951 if (P.ParsePattern(Buffer.substr(0, EOL), UsedPrefix, SM, LineNumber))
963 Buffer = Buffer.substr(EOL);
/external/e2fsprogs/lib/support/
H A Dprofile.c900 #ifndef EOL
901 #define EOL "\n" macro
929 cb(EOL, data);
945 cb(EOL, data);
947 cb(EOL, data);
956 cb(EOL, data);
962 cb(EOL, data);
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
H A DJavaToken.java26 import static com.github.javaparser.utils.Utils.EOL;
116 content = EOL;
199 EOL, enum constant in enum:JavaToken.Category
212 return this == WHITESPACE_NO_EOL || this == EOL;
216 return this == EOL;

Completed in 990 milliseconds

12