HomeSort by relevance Sort by last modified time
    Searched full:fstream (Results 126 - 150 of 730) sorted by null

1 2 3 4 56 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/
move.pass.cpp 10 // <fstream>
17 #include <fstream>
pointer.pass.cpp 10 // <fstream>
17 #include <fstream>
string.pass.cpp 10 // <fstream>
17 #include <fstream>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.members/
close.pass.cpp 10 // <fstream>
17 #include <fstream>
rdbuf.pass.cpp 10 // <fstream>
17 #include <fstream>
  /external/chromium_org/third_party/skia/src/utils/
SkFrontBufferedStream.cpp 34 SkAutoTUnref<SkStream> fStream;
74 : fStream(SkRef(stream))
89 return fStream->isAtEnd();
126 const size_t buffered = fStream->read(buffer, bytesToBuffer);
145 const size_t bytesReadDirectly = fStream->read(dst, size);
190 if (size > 0 && !fStream->isAtEnd()) {
  /external/chromium_org/third_party/skia/src/utils/ios/
SkFontHost_iOS.mm 62 fStream->ref();
63 return fStream;
67 SkStream* fStream;
74 fStream = stream;
75 fStream->ref();
79 fStream->unref();
  /external/chromium_org/third_party/skia/src/utils/win/
SkDWriteFontFileStream.cpp 145 : fRefCount(1), fStream(SkRef(stream)) {
190 const void* data = fStream->getMemoryBase();
202 if (!fStream->rewind()) {
205 if (fStream->skip(static_cast<size_t>(fileOffset)) != fileOffset) {
209 if (fStream->read(streamData.get(), static_cast<size_t>(fragmentSize)) != fragmentSize) {
224 *fileSize = fStream->getLength();
  /external/skia/src/utils/ios/
SkFontHost_iOS.mm 62 fStream->ref();
63 return fStream;
67 SkStream* fStream;
74 fStream = stream;
75 fStream->ref();
79 fStream->unref();
  /external/skia/src/utils/win/
SkDWriteFontFileStream.cpp 145 : fRefCount(1), fStream(SkRef(stream)) {
190 const void* data = fStream->getMemoryBase();
202 if (!fStream->rewind()) {
205 if (fStream->skip(static_cast<size_t>(fileOffset)) != fileOffset) {
209 if (fStream->read(streamData.get(), static_cast<size_t>(fragmentSize)) != fragmentSize) {
224 *fileSize = fStream->getLength();
  /external/stlport/test/unit/
fstream_test.cpp 3 # include <fstream>
346 fstream ss( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary | ios_base::trunc );
376 fstream s( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary | ios_base::trunc );
384 fstream s( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary );
390 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
391 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) );
402 fstream s( "test_file.txt", ios_base::in | ios_base::out | ios_base::trunc );
410 fstream s( "test_file.txt", ios_base::in | ios_base::out );
417 fstream::pos_type pos = s.rdbuf()->pubseekoff(0, ios_base::cur);
430 CPPUNIT_ASSERT( pos == fstream::pos_type(5) )
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
fstream_test.cpp 3 # include <fstream>
364 fstream ss( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary | ios_base::trunc );
394 fstream s( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary | ios_base::trunc );
402 fstream s( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary );
408 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
409 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) );
420 fstream s( "test_file.txt", ios_base::in | ios_base::out | ios_base::trunc );
428 fstream s( "test_file.txt", ios_base::in | ios_base::out );
435 fstream::pos_type pos = s.rdbuf()->pubseekoff(0, ios_base::cur);
448 CPPUNIT_ASSERT( pos == fstream::pos_type(5) )
    [all...]
  /ndk/tests/device/test-stlport/unit/
fstream_test.cpp 3 # include <fstream>
364 fstream ss( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary | ios_base::trunc );
394 fstream s( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary | ios_base::trunc );
402 fstream s( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary );
408 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
409 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) );
420 fstream s( "test_file.txt", ios_base::in | ios_base::out | ios_base::trunc );
428 fstream s( "test_file.txt", ios_base::in | ios_base::out );
435 fstream::pos_type pos = s.rdbuf()->pubseekoff(0, ios_base::cur);
448 CPPUNIT_ASSERT( pos == fstream::pos_type(5) )
    [all...]
  /external/chromium_org/third_party/skia/include/xml/
SkXMLParser.h 94 SkStream* getStream() const { return fStream; }
146 SkStream* fStream;
  /external/libcxx/test/input.output/file.streams/fstreams/filebuf/
types.pass.cpp 10 // <fstream>
23 #include <fstream>
  /external/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/
member_swap.pass.cpp 10 // <fstream>
17 #include <fstream>
move_assign.pass.cpp 10 // <fstream>
17 #include <fstream>
nonmember_swap.pass.cpp 10 // <fstream>
19 #include <fstream>
  /external/libcxx/test/input.output/file.streams/fstreams/filebuf.cons/
move.pass.cpp 10 // <fstream>
17 #include <fstream>
  /external/libcxx/test/input.output/file.streams/fstreams/filebuf.members/
open_pointer.pass.cpp 10 // <fstream>
14 #include <fstream>
  /external/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/
pbackfail.pass.cpp 10 // <fstream>
16 #include <fstream>
  /external/libcxx/test/input.output/file.streams/fstreams/fstream/
types.pass.cpp 10 // <fstream>
23 #include <fstream>
  /external/libcxx/test/input.output/file.streams/fstreams/ifstream/
types.pass.cpp 10 // <fstream>
23 #include <fstream>
  /external/libcxx/test/input.output/file.streams/fstreams/ofstream/
types.pass.cpp 10 // <fstream>
23 #include <fstream>
  /external/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/
member_swap.pass.cpp 10 // <fstream>
17 #include <fstream>

Completed in 541 milliseconds

1 2 3 4 56 7 8 91011>>