Searched defs:newline (Results 1 - 25 of 72) sorted by relevance

123

/external/smali/util/src/main/java/org/jf/util/
H A DTextUtils.java39 private static String newline = System.getProperty("line.separator"); field in class:TextUtils
43 return normalizeNewlines(source, newline);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarReport2.java38 public static final String newline = System.getProperty("line.separator"); field in class:GrammarReport2
91 buf.append(newline);
H A DGrammarReport.java80 public static final String newline = System.getProperty("line.separator"); field in class:GrammarReport
282 buf.append(newline);
285 buf.append(newline);
311 buf.append(newline);
/external/boringssl/src/tool/
H A Dpkcs12.cc114 char *newline = reinterpret_cast<char *>(OPENSSL_memchr(password, '\n', off)); local
115 if (newline == NULL) {
118 *newline = 0;
/external/skia/src/core/
H A DSkStringUtils.cpp47 static const char newline[] = "\n"; local
49 int nextNL = SkStrFind(input, newline);
56 nextNL = SkStrFind(input, newline);
/external/mesa3d/src/compiler/glsl/glcpp/
H A Dpp.c72 /* Given str, (that's expected to start with a newline terminator of some
73 * sort), return a pointer to the first character in str after the newline.
75 * A newline terminator can be any of the following sequences:
115 const char *backslash, *newline, *search_start; local
132 * newline terminators and will properly handle line continuation
137 * examining the first encountered newline terminator, and using the
164 * occurrence of a newline character to avoid changing any
171 newline = cr < lf ? cr : lf;
173 newline = cr;
175 newline
[all...]
/external/fonttools/Lib/fontTools/misc/
H A DxmlWriter.py30 self.newline()
67 def newline(self): member in class:XMLWriter
80 self.newline()
115 self.newline()
/external/fonttools/Tools/fontTools/misc/
H A DxmlWriter.py30 self.newline()
67 def newline(self): member in class:XMLWriter
80 self.newline()
115 self.newline()
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
H A DXMLRecordWriter.java34 newline();
45 newline();
178 newline();
234 newline();
242 newline();
246 private void newline() { method in class:XMLRecordWriter
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
H A DXMLRecordWriter.java30 newline();
41 newline();
174 newline();
230 newline();
238 newline();
242 private void newline() { method in class:XMLRecordWriter
/external/iputils/
H A Dtftpsubs.c75 int newline = 0; /* fillbuf: in middle of newline expansion */ variable
87 newline = 0; /* init crlf flag */
143 if (newline) {
147 newline = 0;
155 newline = 1;
/external/mesa3d/src/gallium/tools/trace/
H A Dformat.py42 def newline(self): member in class:Formatter
/external/mesa3d/src/mesa/main/
H A Derrors.c45 GLboolean newline)
80 if (newline)
89 _mesa_snprintf(buf, sizeof(buf), "%s: %s%s", prefixString, outputString, newline ? "\n" : "");
44 output_if_debug(const char *prefixString, const char *outputString, GLboolean newline) argument
/external/pcre/dist2/src/
H A Dpcre2demo.c64 * such as custom memory managers and non-standard newline definitions. *
86 uint32_t newline; local
297 * newline convention is such that CRLF is a valid newline, we must *
298 * advance by two characters rather than one. The newline convention can *
309 /* Before running the loop, check for UTF-8 and whether CRLF is a valid newline
316 /* Now find the newline convention and see whether CRLF is a valid newline
319 (void)pcre2_pattern_info(re, PCRE2_INFO_NEWLINE, &newline);
320 crlf_is_newline = newline
[all...]
H A Dpcre2_context.c307 pcre2_set_newline(pcre2_compile_context *ccontext, uint32_t newline) argument
309 switch(newline)
316 ccontext->newline_convention = newline;
/external/skia/src/gpu/
H A DGrSKSLPrettyPrint.cpp38 * be self explanatory. For '#' and '//' tokens we parse until we reach a newline.
46 * '{' and '}' are handled in basically the same way. We add a newline if we aren't
47 * on a fresh line, dirty the line, then add a second newline, ie braces are always
72 this->newline();
75 this->newline();
78 this->newline();
80 this->newline();
86 this->newline();
125 this->newline();
134 // this code assumes it is not actually searching for a newline
169 void newline() { function in class:GrSKSLPrettyPrint::GLSLPrettyPrint
[all...]
/external/vulkan-validation-layers/
H A Dgenerator.py188 # newline() - print a newline to the output file (utility function)
493 def newline(self): member in class:OutputGenerator
/external/google-benchmark/src/
H A Dsysinfo.cc166 // Terminate the new line, reading more if we can't find the newline
167 char* newline = strchr(line, '\n'); local
168 if (newline == nullptr) {
174 newline = strchr(line, '\n');
176 if (newline != nullptr) *newline = '\0';
/external/libchrome/base/metrics/
H A Dsparse_histogram.cc227 const std::string& newline,
235 output->append(newline);
274 output->append(newline);
226 WriteAsciiImpl(bool graph_it, const std::string& newline, std::string* output) const argument
/external/libcxx/utils/google-benchmark/src/
H A Dsysinfo.cc164 // Terminate the new line, reading more if we can't find the newline
165 char* newline = strchr(line, '\n'); local
166 if (newline == nullptr) {
172 newline = strchr(line, '\n');
174 if (newline != nullptr) *newline = '\0';
/external/skia/include/core/
H A DSkStream.h215 bool newline() { return this->write("\n", strlen("\n")); } function in class:SkWStream
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
H A DSerializeOptions.java66 * standard XML newline.
68 private String newline = "\n"; field in class:SerializeOptions
309 * @return Returns the newline.
313 return newline;
318 * @param newline
319 * The newline to set.
322 public SerializeOptions setNewline(String newline) argument
324 this.newline = newline;
393 clone.setNewline(newline);
[all...]
/external/clang/include/clang/AST/
H A DCommentLexer.h36 newline, enumerator in enum:clang::comments::tok::TokenKind
242 /// to newline or BufferEnd, for C comments points to star in '*/'.
/external/harfbuzz_ng/test/shaping/
H A Dhb_test_tools.py59 def newline (): return '\n' member in class:ColorFormatter.Null
75 def newline (): return '\n' member in class:ColorFormatter.ANSI
87 def newline (): return '<br/>\n' member in class:ColorFormatter.HTML
143 return [s1+s2+self.formatter.newline () for (s1,s2) in zip (self.symbols, oo) if s2]
149 yield self.formatter.escape (l).replace ('\n', self.formatter.newline ())
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DCheckTags.java72 private boolean newline; field in class:CheckTags.DocStack
113 public void output(String msg, boolean error, boolean newline) { argument
114 output(msg, error, newline, index-1);
117 void output(String msg, boolean error, boolean newline, int ix) { argument
135 if (this.newline && i == 0) {
137 this.newline = false;
145 this.newline = true;
151 if (index == 0 && this.newline) {
161 this.newline = newline;
247 boolean newline = false; field in class:CheckTags
249 output(String msg, boolean error, boolean newline) argument
[all...]

Completed in 1380 milliseconds

123