HomeSort by relevance Sort by last modified time
    Searched refs:autoFlush (Results 1 - 25 of 30) sorted by null

1 2

  /libcore/luni/src/main/java/java/io/
PrintStream.java 45 private boolean autoFlush;
68 * stream. The parameter {@code autoFlush} determines if the print stream
74 * @param autoFlush
80 public PrintStream(OutputStream out, boolean autoFlush) {
85 this.autoFlush = autoFlush;
91 * parameter {@code autoFlush} determines if the print stream automatically
96 * @param autoFlush
106 public PrintStream(OutputStream out, boolean autoFlush, String charsetName)
114 this.autoFlush = autoFlush
    [all...]
PrintWriter.java 46 private boolean autoFlush;
64 * stream. The parameter {@code autoFlush} determines if the print writer
70 * @param autoFlush
76 public PrintWriter(OutputStream out, boolean autoFlush) {
77 this(new OutputStreamWriter(out), autoFlush);
96 * writer. The parameter {@code autoFlush} determines if the print writer
102 * @param autoFlush
108 public PrintWriter(Writer wr, boolean autoFlush) {
110 this.autoFlush = autoFlush;
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
FastPrintWriter.java 69 * stream. The parameter {@code autoFlush} determines if the print writer
75 * @param autoFlush
81 public FastPrintWriter(OutputStream out, boolean autoFlush) {
82 this(out, autoFlush, 8192);
87 * stream and a custom buffer size. The parameter {@code autoFlush} determines
93 * @param autoFlush
102 public FastPrintWriter(OutputStream out, boolean autoFlush, int bufferLen) {
103 super(new DummyWriter(), autoFlush);
113 mAutoFlush = autoFlush;
138 * writer. The parameter {@code autoFlush} determines if the print write
    [all...]
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglAbstractDisplay.java 61 protected boolean autoFlush = true;
159 if (autoFlush){
176 if (autoFlush){
257 this.autoFlush = enabled;
  /external/jetty/src/java/org/eclipse/jetty/io/
UncheckedPrintWriter.java 64 * @param autoFlush
68 public UncheckedPrintWriter(Writer out, boolean autoFlush)
70 super(out,autoFlush);
71 this._autoFlush = autoFlush;
100 * @param autoFlush
106 public UncheckedPrintWriter(OutputStream out, boolean autoFlush)
108 this(new BufferedWriter(new OutputStreamWriter(out)),autoFlush);
  /external/lz4/lib/
lz4frame.h 80 unsigned autoFlush; /* 1 == always flush : reduce need for tmp buffer */
lz4frame.c 241 prefs.autoFlush = 1;
271 cctxI.maxBufferSize = 5 MB; /* mess with real buffer size to prevent allocation; works because autoflush==1 & stableSrc==1 */
288 prefs.autoFlush = 1;
395 if (preferencesPtr->autoFlush)
444 size_t lastBlockSize = prefsPtr->autoFlush ? srcSize % blockSize : blockSize;
573 if ((cctxPtr->prefs.autoFlush) && (srcPtr < srcEnd))
598 && !(cctxPtr->prefs.autoFlush))
    [all...]
  /prebuilts/tools/common/m2/repository/org/sonatype/gshell/gshell-io/2.4/
gshell-io-2.4.jar 
  /external/jmonkeyengine/engine/src/android/com/jme3/system/android/
OGLESContext.java 87 protected boolean autoFlush = true;
365 this.autoFlush = enabled;
404 if (autoFlush) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
javax.servlet.jsp_2.0.0.v200806031607.jar 
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
org.apache.jasper_5.5.17.v201004212143.jar 
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
TestFmwk.java     [all...]
  /external/lz4/programs/
frametest.c 417 unsigned autoflush = (FUZ_rand(&randState) & 7) == 2; local
432 prefs.autoFlush = autoflush;
lz4io.c 392 prefs.autoFlush = 1;
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-io/8.1.14.v20131031/
jetty-io-8.1.14.v20131031.jar 
  /prebuilts/tools/common/m2/repository/org/freemarker/freemarker/2.3.20/
freemarker-2.3.20.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
dom4j-1.6.1.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 
  /prebuilts/tools/common/m2/repository/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 

Completed in 5908 milliseconds

1 2