Lines Matching refs:reps

36     public void timeReadIntArray(int reps) throws Exception {
38 readSingleObject(reps, intArray);
41 public void timeWriteIntArray(int reps) throws Exception {
43 writeSingleObject(reps, intArray);
45 public void timeReadArrayListInteger(int reps) throws Exception {
50 readSingleObject(reps, object);
53 public void timeWriteArrayListInteger(int reps) throws Exception {
58 writeSingleObject(reps, object);
61 public void timeReadString(int reps) throws Exception {
62 readSingleObject(reps, "hello");
65 public void timeReadObjectStreamClass(int reps) throws Exception {
69 readSingleObject(reps, osc);
72 public void timeWriteString(int reps) throws Exception {
74 writeSingleObject(reps, "hello");
77 public void timeWriteObjectStreamClass(int reps) throws Exception {
81 writeSingleObject(reps, osc);
85 public void timeWriteNoObjects(int reps) throws Exception {
88 for (int rep = 0; rep < reps; ++rep) {
95 private void readSingleObject(int reps, Object object) throws Exception {
98 for (int rep = 0; rep < reps; ++rep) {
106 private void writeSingleObject(int reps, Object o) throws Exception {
109 for (int rep = 0; rep < reps; ++rep) {
117 public void timeWriteEveryKindOfField(int reps) throws Exception {
118 writeSingleObject(reps, new LittleBitOfEverything());
120 public void timeWriteSerializableBoolean(int reps) throws Exception {
121 writeSingleObject(reps, new SerializableBoolean());
123 public void timeWriteSerializableByte(int reps) throws Exception {
124 writeSingleObject(reps, new SerializableByte());
126 public void timeWriteSerializableChar(int reps) throws Exception {
127 writeSingleObject(reps, new SerializableChar());
129 public void timeWriteSerializableDouble(int reps) throws Exception {
130 writeSingleObject(reps, new SerializableDouble());
132 public void timeWriteSerializableFloat(int reps) throws Exception {
133 writeSingleObject(reps, new SerializableFloat());
135 public void timeWriteSerializableInt(int reps) throws Exception {
136 writeSingleObject(reps, new SerializableInt());
138 public void timeWriteSerializableLong(int reps) throws Exception {
139 writeSingleObject(reps, new SerializableLong());
141 public void timeWriteSerializableShort(int reps) throws Exception {
142 writeSingleObject(reps, new SerializableShort());
144 public void timeWriteSerializableReference(int reps) throws Exception {
145 writeSingleObject(reps, new SerializableReference());
148 public void timeReadEveryKindOfField(int reps) throws Exception {
149 readSingleObject(reps, new LittleBitOfEverything());
151 public void timeReadSerializableBoolean(int reps) throws Exception {
152 readSingleObject(reps, new SerializableBoolean());
154 public void timeReadSerializableByte(int reps) throws Exception {
155 readSingleObject(reps, new SerializableByte());
157 public void timeReadSerializableChar(int reps) throws Exception {
158 readSingleObject(reps, new SerializableChar());
160 public void timeReadSerializableDouble(int reps) throws Exception {
161 readSingleObject(reps, new SerializableDouble());
163 public void timeReadSerializableFloat(int reps) throws Exception {
164 readSingleObject(reps, new SerializableFloat());
166 public void timeReadSerializableInt(int reps) throws Exception {
167 readSingleObject(reps, new SerializableInt());
169 public void timeReadSerializableLong(int reps) throws Exception {
170 readSingleObject(reps, new SerializableLong());
172 public void timeReadSerializableShort(int reps) throws Exception {
173 readSingleObject(reps, new SerializableShort());
175 public void timeReadSerializableReference(int reps) throws Exception {
176 readSingleObject(reps, new SerializableReference());