Home
last modified time | relevance | path

Searched refs:RandomAccessFile (Results 1 – 25 of 2623) sorted by relevance

12345678910>>...105

/dports/games/openttd/openttd-12.1/src/
H A Drandom_access_file.cpp24 RandomAccessFile::RandomAccessFile(const std::string &filename, Subdirectory subdir) : filename(fil… in RandomAccessFile() function in RandomAccessFile
45 RandomAccessFile::~RandomAccessFile() in ~RandomAccessFile()
54 const std::string &RandomAccessFile::GetFilename() const in GetFilename()
64 const std::string &RandomAccessFile::GetSimplifiedFilename() const in GetSimplifiedFilename()
73 size_t RandomAccessFile::GetPos() const in GetPos()
83 void RandomAccessFile::SeekTo(size_t pos, int mode) in SeekTo()
100 byte RandomAccessFile::ReadByte() in ReadByte()
117 uint16 RandomAccessFile::ReadWord() in ReadWord()
127 uint32 RandomAccessFile::ReadDword() in ReadDword()
138 void RandomAccessFile::ReadBlock(void *ptr, size_t size) in ReadBlock()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/io/RandomAccessFile/
H A DOpsAfterClose.java35 READ { boolean check(RandomAccessFile r) { in check()
45 READ_BUF { boolean check(RandomAccessFile r) { in check()
56 GET_CHANNEL { boolean check(RandomAccessFile r) { in check()
60 GET_FD { boolean check(RandomAccessFile r) { in check()
78 GET_LENGTH { boolean check(RandomAccessFile r) { in check()
87 SEEK { boolean check(RandomAccessFile r) { in check()
114 WRITE { boolean check(RandomAccessFile r) { in check()
123 WRITE_BUF { boolean check(RandomAccessFile r) { in check()
134 CLOSE { boolean check(RandomAccessFile r) { in check()
144 abstract boolean check(RandomAccessFile r); in check()
[all …]
H A DReadWritePrimitives.java60 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testShort()
66 f = new RandomAccessFile(fh,"r"); in testShort()
86 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testChar()
91 f = new RandomAccessFile(fh,"r"); in testChar()
107 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testInt()
113 f = new RandomAccessFile(fh, "r"); in testInt()
133 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testLong()
138 f = new RandomAccessFile(fh,"r"); in testLong()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/io/RandomAccessFile/
H A DOpsAfterClose.java35 READ { boolean check(RandomAccessFile r) { in check()
45 READ_BUF { boolean check(RandomAccessFile r) { in check()
56 GET_CHANNEL { boolean check(RandomAccessFile r) { in check()
60 GET_FD { boolean check(RandomAccessFile r) { in check()
78 GET_LENGTH { boolean check(RandomAccessFile r) { in check()
87 SEEK { boolean check(RandomAccessFile r) { in check()
114 WRITE { boolean check(RandomAccessFile r) { in check()
123 WRITE_BUF { boolean check(RandomAccessFile r) { in check()
134 CLOSE { boolean check(RandomAccessFile r) { in check()
144 abstract boolean check(RandomAccessFile r); in check()
[all …]
H A DReadWritePrimitives.java60 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testShort()
66 f = new RandomAccessFile(fh,"r"); in testShort()
86 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testChar()
91 f = new RandomAccessFile(fh,"r"); in testChar()
107 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testInt()
113 f = new RandomAccessFile(fh, "r"); in testInt()
133 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testLong()
138 f = new RandomAccessFile(fh,"r"); in testLong()
H A DSetLength.java35 import java.io.RandomAccessFile;
41 static void checkState(RandomAccessFile f, long expectedFilePointer, in checkState()
57 static void test(RandomAccessFile f, long quarterLength) in test()
149 try (RandomAccessFile raf28b = new RandomAccessFile(f28b, "rw"); in main()
150 RandomAccessFile raf28K = new RandomAccessFile(f28K, "rw"); in main()
151 RandomAccessFile rafrnd = new RandomAccessFile(frnd, "rw")) { in main()
158 try (RandomAccessFile raf28b = new RandomAccessFile(f28b, "r")) { in main()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/io/RandomAccessFile/
H A DOpsAfterClose.java35 READ { boolean check(RandomAccessFile r) { in check()
45 READ_BUF { boolean check(RandomAccessFile r) { in check()
56 GET_CHANNEL { boolean check(RandomAccessFile r) { in check()
60 GET_FD { boolean check(RandomAccessFile r) { in check()
78 GET_LENGTH { boolean check(RandomAccessFile r) { in check()
87 SEEK { boolean check(RandomAccessFile r) { in check()
114 WRITE { boolean check(RandomAccessFile r) { in check()
123 WRITE_BUF { boolean check(RandomAccessFile r) { in check()
134 CLOSE { boolean check(RandomAccessFile r) { in check()
144 abstract boolean check(RandomAccessFile r); in check()
[all …]
H A DReadWritePrimitives.java60 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testShort()
66 f = new RandomAccessFile(fh,"r"); in testShort()
86 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testChar()
91 f = new RandomAccessFile(fh,"r"); in testChar()
107 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testInt()
113 f = new RandomAccessFile(fh, "r"); in testInt()
133 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testLong()
138 f = new RandomAccessFile(fh,"r"); in testLong()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/io/RandomAccessFile/
H A DOpsAfterClose.java35 READ { boolean check(RandomAccessFile r) { in check()
45 READ_BUF { boolean check(RandomAccessFile r) { in check()
56 GET_CHANNEL { boolean check(RandomAccessFile r) { in check()
60 GET_FD { boolean check(RandomAccessFile r) { in check()
78 GET_LENGTH { boolean check(RandomAccessFile r) { in check()
87 SEEK { boolean check(RandomAccessFile r) { in check()
114 WRITE { boolean check(RandomAccessFile r) { in check()
123 WRITE_BUF { boolean check(RandomAccessFile r) { in check()
134 CLOSE { boolean check(RandomAccessFile r) { in check()
144 abstract boolean check(RandomAccessFile r); in check()
[all …]
H A DReadWritePrimitives.java60 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testShort()
66 f = new RandomAccessFile(fh,"r"); in testShort()
86 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testChar()
91 f = new RandomAccessFile(fh,"r"); in testChar()
107 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testInt()
113 f = new RandomAccessFile(fh, "r"); in testInt()
133 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testLong()
138 f = new RandomAccessFile(fh,"r"); in testLong()
H A DSetLength.java35 import java.io.RandomAccessFile;
41 static void checkState(RandomAccessFile f, long expectedFilePointer, in checkState()
57 static void test(RandomAccessFile f, long quarterLength) in test()
149 try (RandomAccessFile raf28b = new RandomAccessFile(f28b, "rw"); in main()
150 RandomAccessFile raf28K = new RandomAccessFile(f28K, "rw"); in main()
151 RandomAccessFile rafrnd = new RandomAccessFile(frnd, "rw")) { in main()
158 try (RandomAccessFile raf28b = new RandomAccessFile(f28b, "r")) { in main()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/io/RandomAccessFile/
H A DOpsAfterClose.java35 READ { boolean check(RandomAccessFile r) { in check()
45 READ_BUF { boolean check(RandomAccessFile r) { in check()
56 GET_CHANNEL { boolean check(RandomAccessFile r) { in check()
60 GET_FD { boolean check(RandomAccessFile r) { in check()
78 GET_LENGTH { boolean check(RandomAccessFile r) { in check()
87 SEEK { boolean check(RandomAccessFile r) { in check()
114 WRITE { boolean check(RandomAccessFile r) { in check()
123 WRITE_BUF { boolean check(RandomAccessFile r) { in check()
134 CLOSE { boolean check(RandomAccessFile r) { in check()
144 abstract boolean check(RandomAccessFile r); in check()
[all …]
H A DReadWritePrimitives.java60 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testShort()
66 f = new RandomAccessFile(fh,"r"); in testShort()
86 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testChar()
91 f = new RandomAccessFile(fh,"r"); in testChar()
107 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testInt()
113 f = new RandomAccessFile(fh, "r"); in testInt()
133 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testLong()
138 f = new RandomAccessFile(fh,"r"); in testLong()
H A DSetLength.java35 import java.io.RandomAccessFile;
41 static void checkState(RandomAccessFile f, long expectedFilePointer, in checkState()
57 static void test(RandomAccessFile f, long quarterLength) in test()
149 try (RandomAccessFile raf28b = new RandomAccessFile(f28b, "rw"); in main()
150 RandomAccessFile raf28K = new RandomAccessFile(f28K, "rw"); in main()
151 RandomAccessFile rafrnd = new RandomAccessFile(frnd, "rw")) { in main()
158 try (RandomAccessFile raf28b = new RandomAccessFile(f28b, "r")) { in main()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/io/RandomAccessFile/
H A DOpsAfterClose.java35 READ { boolean check(RandomAccessFile r) { in check()
45 READ_BUF { boolean check(RandomAccessFile r) { in check()
56 GET_CHANNEL { boolean check(RandomAccessFile r) { in check()
60 GET_FD { boolean check(RandomAccessFile r) { in check()
78 GET_LENGTH { boolean check(RandomAccessFile r) { in check()
87 SEEK { boolean check(RandomAccessFile r) { in check()
114 WRITE { boolean check(RandomAccessFile r) { in check()
123 WRITE_BUF { boolean check(RandomAccessFile r) { in check()
134 CLOSE { boolean check(RandomAccessFile r) { in check()
144 abstract boolean check(RandomAccessFile r); in check()
[all …]
H A DReadWritePrimitives.java60 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testShort()
66 f = new RandomAccessFile(fh,"r"); in testShort()
86 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testChar()
91 f = new RandomAccessFile(fh,"r"); in testChar()
107 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testInt()
113 f = new RandomAccessFile(fh, "r"); in testInt()
133 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testLong()
138 f = new RandomAccessFile(fh,"r"); in testLong()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/io/RandomAccessFile/
H A DOpsAfterClose.java35 READ { boolean check(RandomAccessFile r) { in check()
45 READ_BUF { boolean check(RandomAccessFile r) { in check()
56 GET_CHANNEL { boolean check(RandomAccessFile r) { in check()
60 GET_FD { boolean check(RandomAccessFile r) { in check()
78 GET_LENGTH { boolean check(RandomAccessFile r) { in check()
87 SEEK { boolean check(RandomAccessFile r) { in check()
114 WRITE { boolean check(RandomAccessFile r) { in check()
123 WRITE_BUF { boolean check(RandomAccessFile r) { in check()
134 CLOSE { boolean check(RandomAccessFile r) { in check()
144 abstract boolean check(RandomAccessFile r); in check()
[all …]
H A DReadWritePrimitives.java60 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testShort()
66 f = new RandomAccessFile(fh,"r"); in testShort()
86 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testChar()
91 f = new RandomAccessFile(fh,"r"); in testChar()
107 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testInt()
113 f = new RandomAccessFile(fh, "r"); in testInt()
133 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testLong()
138 f = new RandomAccessFile(fh,"r"); in testLong()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/io/RandomAccessFile/
H A DOpsAfterClose.java35 READ { boolean check(RandomAccessFile r) { in check()
45 READ_BUF { boolean check(RandomAccessFile r) { in check()
56 GET_CHANNEL { boolean check(RandomAccessFile r) { in check()
60 GET_FD { boolean check(RandomAccessFile r) { in check()
78 GET_LENGTH { boolean check(RandomAccessFile r) { in check()
87 SEEK { boolean check(RandomAccessFile r) { in check()
114 WRITE { boolean check(RandomAccessFile r) { in check()
123 WRITE_BUF { boolean check(RandomAccessFile r) { in check()
134 CLOSE { boolean check(RandomAccessFile r) { in check()
144 abstract boolean check(RandomAccessFile r); in check()
[all …]
H A DReadWritePrimitives.java60 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testShort()
66 f = new RandomAccessFile(fh,"r"); in testShort()
86 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testChar()
91 f = new RandomAccessFile(fh,"r"); in testChar()
107 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testInt()
113 f = new RandomAccessFile(fh, "r"); in testInt()
133 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testLong()
138 f = new RandomAccessFile(fh,"r"); in testLong()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/java/io/RandomAccessFile/
H A DOpsAfterClose.java35 READ { boolean check(RandomAccessFile r) { in check()
45 READ_BUF { boolean check(RandomAccessFile r) { in check()
56 GET_CHANNEL { boolean check(RandomAccessFile r) { in check()
60 GET_FD { boolean check(RandomAccessFile r) { in check()
78 GET_LENGTH { boolean check(RandomAccessFile r) { in check()
87 SEEK { boolean check(RandomAccessFile r) { in check()
114 WRITE { boolean check(RandomAccessFile r) { in check()
123 WRITE_BUF { boolean check(RandomAccessFile r) { in check()
134 CLOSE { boolean check(RandomAccessFile r) { in check()
144 abstract boolean check(RandomAccessFile r); in check()
[all …]
H A DReadWritePrimitives.java60 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testShort()
66 f = new RandomAccessFile(fh,"r"); in testShort()
86 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testChar()
91 f = new RandomAccessFile(fh,"r"); in testChar()
107 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testInt()
113 f = new RandomAccessFile(fh, "r"); in testInt()
133 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testLong()
138 f = new RandomAccessFile(fh,"r"); in testLong()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/test/java/io/RandomAccessFile/
H A DOpsAfterClose.java35 READ { boolean check(RandomAccessFile r) { in check()
45 READ_BUF { boolean check(RandomAccessFile r) { in check()
56 GET_CHANNEL { boolean check(RandomAccessFile r) { in check()
60 GET_FD { boolean check(RandomAccessFile r) { in check()
78 GET_LENGTH { boolean check(RandomAccessFile r) { in check()
87 SEEK { boolean check(RandomAccessFile r) { in check()
114 WRITE { boolean check(RandomAccessFile r) { in check()
123 WRITE_BUF { boolean check(RandomAccessFile r) { in check()
134 CLOSE { boolean check(RandomAccessFile r) { in check()
144 abstract boolean check(RandomAccessFile r); in check()
[all …]
H A DReadWritePrimitives.java60 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testShort()
66 f = new RandomAccessFile(fh,"r"); in testShort()
86 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testChar()
91 f = new RandomAccessFile(fh,"r"); in testChar()
107 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testInt()
113 f = new RandomAccessFile(fh, "r"); in testInt()
133 RandomAccessFile f = new RandomAccessFile(fh,"rw"); in testLong()
138 f = new RandomAccessFile(fh,"r"); in testLong()
/dports/x11-servers/Xfstt/xfstt-1.11/libfstt/
H A Dttf.h69 class RandomAccessFile {
78 RandomAccessFile(const char *fileName);
79 RandomAccessFile(RandomAccessFile &f, int offset, int _length) { in RandomAccessFile() function
210 class TTFont: public RandomAccessFile {
296 class NameTable: public RandomAccessFile {
318 class HeadTable: public RandomAccessFile {
357 class MaxpTable: public RandomAccessFile {
384 class CmapTable: public RandomAccessFile {
509 class OS2Table: public RandomAccessFile {
644 class CvtTable: public RandomAccessFile {
[all …]

12345678910>>...105