Home | History | Annotate | Download | only in Serialization

Lines Matching refs:Out

631   EmitKeyDataLength(raw_ostream& Out, key_type_ref Key, data_type_ref Data) {
634 clang::io::Emit16(Out, KeyLen);
635 clang::io::Emit16(Out, DataLen);
639 void EmitKey(raw_ostream& Out, key_type_ref Key, unsigned KeyLen) {
640 Out.write(Key.data(), KeyLen);
643 void EmitData(raw_ostream& Out, key_type_ref Key, data_type_ref Data,
646 clang::io::Emit32(Out, Data[I]);
708 llvm::raw_svector_ostream Out(IdentifierTable);
710 clang::io::Emit32(Out, 0);
711 BucketOffset = Generator.Emit(Out, Trait);
798 llvm::raw_fd_ostream Out(TmpFD, true);
799 if (Out.has_error())
803 Out.write(OutputBuffer.data(), OutputBuffer.size());
804 Out.close();
805 if (Out.has_error())