Searched refs:flush (Results 1 - 25 of 702) sorted by relevance

1234567891011>>

/external/iproute2/ip/
H A Droutef4 exec ip -4 ro flush scope global type unicast
8 echo "This script will flush the IPv4 routing table"
/external/stlport/stlport/using/h/
H A Dostream.h4 using _STLP_OLD_IO_NAMESPACE::flush;
/external/eigen/bench/btl/generic_bench/utils/
H A Dutilities.h21 # define HEREWEARE cout<<flush ; cerr << __FILE__ << " [" << __LINE__ << "] : " << flush ;
23 # define PYSCRIPT(chain) {cout<<flush ; cerr << "---PYSCRIPT--- " << chain << endl ;}
43 cerr << flush;\
50 cout << flush ;\
57 # define HERE cout<<flush ; cerr << "- Trace " << __FILE__ << " [" << __LINE__ << "] : " << flush ;
66 #define REPERE cout<<flush ; cerr << " --------------" << endl << flush ;
/external/arduino/hardware/arduino/cores/arduino/
H A DStream.h32 virtual void flush() = 0;
/external/llvm/lib/Support/
H A Draw_os_ostream.cpp23 flush();
/external/chromium/chrome/browser/ui/views/
H A Dbrowser_actions_container_browsertest.cc89 << " ms" << std::flush; member in class:std
102 << " ms" << std::flush; member in class:std
117 << " ms" << std::flush; member in class:std
125 << " ms" << std::flush; member in class:std
135 << " ms" << std::flush; member in class:std
147 << " ms" << std::flush; member in class:std
157 << " ms" << std::flush; member in class:std
167 << " ms" << std::flush; member in class:std
175 << " ms" << std::flush; member in class:std
185 << " ms" << std::flush; member in class:std
195 << " ms" << std::flush; member in class:std
205 << " ms" << std::flush; member in class:std
215 << " ms" << std::flush; member in class:std
243 LOG(INFO) << "Test starting\\n" << std::flush; member in class:std
248 LOG(INFO) << "Loading extension\\n" << std::flush; member in class:std
257 LOG(INFO) << "Creating bitmap\\n" << std::flush; member in class:std
266 LOG(INFO) << "Set as cached image\\n" << std::flush; member in class:std
275 LOG(INFO) << "Disabling extension\\n" << std::flush; member in class:std
277 LOG(INFO) << "Enabling extension\\n" << std::flush; member in class:std
279 LOG(INFO) << "Test ending\\n" << std::flush; member in class:std
[all...]
/external/apache-http/src/org/apache/http/impl/io/
H A DIdentityOutputStream.java74 this.out.flush();
78 public void flush() throws IOException { method in class:IdentityOutputStream
79 this.out.flush();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A DTeeOutputStream.java39 public void flush() method in class:TeeOutputStream
42 this.output1.flush();
43 this.output2.flush();
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSCPOutputStream.java37 this.flush();
48 this.flush();
53 this.flush();
/external/guava/guava/src/com/google/common/io/
H A DFlushables.java48 * thrown by the {@code flush} method
50 * {@link Flushable#flush} throws an {@code IOException}.
53 public static void flush(Flushable flushable, boolean swallowIOException) method in class:Flushables
56 flushable.flush();
68 * Equivalent to calling {@code flush(flushable, true)}, but with no
75 flush(flushable, true);
/external/webkit/Source/WebCore/platform/text/
H A DTextCodec.h66 String decode(const char* str, size_t length, bool flush = false)
69 return decode(str, length, flush, false, ignored);
72 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) = 0;
H A DTextCodecUTF8.h42 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
45 void handlePartialSequence(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError);
H A DTextCodecLatin1.h38 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
H A DTextCodecUserDefined.h38 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dfast_rect_renderer.js25 * Make sure to flush the trackRenderer before finishing drawing in order
67 this.flush();
75 * The drawing operation may not take effect until flush is called.
84 this.flush();
96 this.flush();
106 flush: function() {
/external/chromium-trace/trace-viewer/src/
H A Dfast_rect_renderer.js25 * Make sure to flush the trackRenderer before finishing drawing in order
62 this.flush();
70 * The drawing operation may not take effect until flush is called.
78 this.flush();
90 this.flush();
100 flush: function() {
/external/libpng/contrib/pngminim/encoder/
H A Ddummy_inflate.c3 int ZEXPORT inflate(strm, flush)
5 int flush;
/external/proguard/src/proguard/gui/
H A DTextAreaOutputStream.java48 public void flush() throws IOException method in class:TextAreaOutputStream
50 super.flush();
/external/apache-http/src/org/apache/http/
H A DHttpClientConnection.java110 void flush() throws IOException; method in interface:HttpClientConnection
H A DHttpServerConnection.java93 void flush() method in interface:HttpServerConnection
/external/webkit/Source/WebCore/dom/
H A DDecodedDataDocumentParser.h47 virtual void appendBytes(DocumentWriter*, const char* bytes, int length, bool flush);
/external/sonivox/arm-fm-22k/host_src/
H A Deas_report.c45 int flush = 0; variable
165 if (flush)
200 if (flush)
230 if (flush)
262 flush = flushAfterWrite;
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_report.c45 int flush = 0; variable
165 if (flush)
200 if (flush)
230 if (flush)
262 flush = flushAfterWrite;
/external/sonivox/arm-wt-22k/host_src/
H A Deas_report.c45 int flush = 0; variable
165 if (flush)
200 if (flush)
230 if (flush)
262 flush = flushAfterWrite;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DPrintWriterTest.java74 pw.flush();
102 pw.flush();
123 pw.flush();
136 // Auto-flush should have happened
231 * @tests java.io.PrintWriter#flush()
234 // Test for method void java.io.PrintWriter.flush()
237 pw.flush();
238 assertTrue("Failed to flush", new String(bao.toByteArray())
251 pw.flush();
276 pw.flush();
[all...]

Completed in 496 milliseconds

1234567891011>>