OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fouts
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Support/
FormattedStream.cpp
82
///
fouts
() - This returns a reference to a formatted_raw_ostream for
83
/// standard output. Use it like:
fouts
() << "foo" << "bar";
84
formatted_raw_ostream &llvm::
fouts
() {
function in class:llvm
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
ChannelsTest.java
57
private FileOutputStream
fouts
;
field in class:ChannelsTest
80
if (null != this.
fouts
) {
81
this.
fouts
.close();
82
this.
fouts
= null;
91
this.
fouts
= new FileOutputStream(tmpFile);
94
this.
fouts
.write(bit);
95
this.
fouts
.flush();
100
this.
fouts
.write(writebuf.getBytes());
189
this.
fouts
= null;
191
WritableByteChannel rbChannel = Channels.newChannel(this.
fouts
);
[
all
...]
Completed in 147 milliseconds