Lines Matching defs:OF
108 raw_fd_ostream OF(FD, /*shouldClose*/ true);
109 OF << "12345678";
110 OF.close();
139 raw_fd_ostream OF(TestFD, true, /*unbuffered=*/true);
141 OF << "0123456789abcdef";
143 OF.close();
259 // OF is responsible for closing the file; If the file is not
262 raw_fd_ostream OF(TestFD, true, !Reopen);
264 OF << "0123456789";
268 OF.close();
301 raw_fd_ostream OF(FD, true, /*unbuffered=*/true);
303 OF << "12345678";
306 OF << "abcdefgh";
309 OF << "ABCDEFGH";
311 OF.close();
349 raw_fd_ostream OF(FD, true);
351 OF << "0123456789abcdef";
352 OF.close();
382 raw_fd_ostream OF(FD, true);
383 OF << "0123456789abcdef";
384 OF.close();
417 raw_fd_ostream OF(FD, true);
422 OF << "01234567";
423 OF.close();