HomeSort by relevance Sort by last modified time
    Searched defs:newLine (Results 1 - 25 of 497) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/generic/goldfish/wifi/ipv6proxy/
log.cpp 29 static bool newLine = true;
30 if (newLine && clock_gettime(CLOCK_REALTIME, &ts) == 0) {
40 newLine = (fmt[strlen(fmt) - 1] == '\n');
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidBufferedWriterTest.java 42 a.newLine();
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ProfilesLoader.java 51 out.newLine();
VersionLoader.java 54 out.newLine();
ViewManager.java 54 out.newLine();
WindowsLoader.java 50 out.newLine();
  /system/netd/libbpf/
BpfNetworkStats.cpp 115 stats_line newLine;
116 strlcpy(newLine.iface, ifname, sizeof(newLine.iface));
117 newLine.uid = (int32_t)statsKey.uid;
118 newLine.set = (int32_t)statsKey.counterSet;
119 newLine.tag = (int32_t)statsKey.tag;
120 newLine.rxPackets = statsEntry.rxPackets;
121 newLine.txPackets = statsEntry.txPackets;
122 newLine.rxBytes = statsEntry.rxBytes;
123 newLine.txBytes = statsEntry.txBytes
    [all...]
  /libcore/ojluni/src/main/java/java/io/
PrintStream.java 45 * <code>println</code> methods is invoked, or a newline character or byte
152 * <code>println</code> methods is invoked, or a newline
168 * <code>println</code> methods is invoked, or a newline
455 * Writes the specified byte to this stream. If the byte is a newline and
567 private void newLine() {
573 textOut.newLine();
721 * <code>line.separator</code>, and is not necessarily a single newline
725 newLine();
738 newLine();
752 newLine();
    [all...]
BufferedWriter.java 36 * <p> A newLine() method is provided, which uses the platform's own notion of
38 * Not all platforms use the newline character ('\n') to terminate lines.
40 * writing a newline character directly.
238 * newline ('\n') character.
242 public void newLine() throws IOException {
  /cts/tools/cfassembler/src/dxconvext/
ClassFileParser.java 253 bw.newLine();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemWriter.java 90 this.newLine();
93 this.newLine();
119 this.newLine();
128 this.newLine();
136 this.newLine();
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/expr/
LiteralStringValueExprTest.java 118 CharLiteralExpr newLine = parseExpression("'\\n'");
129 assertThat(newLine.asChar()).isEqualTo('\n');
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/manual/
BulkParseTest.java 107 writer.newLine();
110 writer.newLine();
113 writer.newLine();
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
SyntaxTreeDumper.java 39 private final String newLine = System.getProperty("line.separator");
125 line.append(newLine);
  /external/smali/util/src/main/java/org/jf/util/
IndentingWriter.java 39 private static final String newLine = System.getProperty("line.separator");
54 writer.write(newLine);
101 writer.write(newLine);
128 writer.write(newLine);
  /external/v8/src/inspector/
search-util.cc 55 size_t newLine = match.find("\n");
56 if (newLine != String16::kNotFound) match = match.substring(0, newLine);
  /frameworks/native/libs/binder/
Debug.cpp 200 bool newLine = false;
204 newLine = true;
207 newLine = true;
283 if (newLine && indent) func(cookie, stringForIndent(indent));
286 newLine = true;
  /packages/apps/Test/connectivity/PMC/src/com/android/pmc/
PMCStatusLogger.java 70 bw.newLine();
106 bw.newLine();
  /system/libhwbinder/
Debug.cpp 201 bool newLine = false;
205 newLine = true;
208 newLine = true;
288 if (newLine && indent) func(cookie, stringForIndent(indent));
291 newLine = true;
  /tools/loganalysis/tests/src/com/android/loganalysis/parser/
EventsLogParserTest.java 248 out.newLine();
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
InstrumentationFileTest.java 150 bw.newLine();
  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 127 m_out.newLine ();
260 public void newLine () throws IOException
482 m_out.newLine ();
  /frameworks/base/core/java/android/os/
ZygoteProcess.java 258 writer.newLine();
261 writer.newLine();
297 * b) a number of newline-separated argument strings equal to count
307 writer.newLine();
312 writer.newLine();
515 state.writer.newLine();
517 state.writer.newLine();
520 state.writer.newLine();
544 state.writer.newLine();
547 state.writer.newLine();
    [all...]
  /external/skia/tools/bookmaker/
parserCommon.cpp 102 bool newLine = false;
111 if (newLine) {
125 newLine = true;
  /external/skqp/tools/bookmaker/
parserCommon.cpp 102 bool newLine = false;
111 if (newLine) {
125 newLine = true;

Completed in 511 milliseconds

1 2 3 4 5 6 7 8 91011>>