• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/typetest/

Lines Matching defs:pos

743     size_t pos = (size_t)file_input.TellI();
744 str.Printf( wxT("Read char: %d. Now at position %d\n\n"), (int) ch, (int) pos );
750 pos = (size_t)file_input.TellI();
751 str.Printf( wxT("Read char: %d. Now at position %d\n\n"), (int) ch, (int) pos );
757 pos = (size_t)file_input.TellI();
758 str.Printf( wxT("Read char: %d. Now at position %d\n\n"), (int) ch, (int) pos );
764 pos = (size_t)file_input.TellI();
765 str.Printf( wxT("Now at position %d\n\n"), (int) pos );
771 pos = (size_t)file_input.TellI();
772 str.Printf( wxT("Read char: %d. Now at position %d\n\n"), (int) ch, (int) pos );
778 pos = (size_t)file_input.TellI();
779 str.Printf( wxT("Read char: %d. Now at position %d\n\n"), (int) ch, (int) pos );
785 pos = (size_t)file_input.TellI();
786 str.Printf( wxT("Now at position %d\n\n"), (int) pos );
789 textCtrl.WriteText( _T("Seeking to pos 3 in wxFileInputStream. This invalidates the writeback buffer.\n\n") );
794 pos = (size_t)file_input.TellI();
795 str.Printf( wxT("Read char: %d. Now at position %d\n\n"), (int) ch, (int) pos );
823 size_t pos = (size_t)buf_input.TellI();
824 str.Printf( wxT("Read char: %d. Now at position %d\n\n"), (int) ch, (int) pos );
830 pos = (size_t)buf_input.TellI();
831 str.Printf( wxT("Read char: %d. Now at position %d\n\n"), (int) ch, (int) pos );
837 pos = (size_t)buf_input.TellI();
838 str.Printf( wxT("Read char: %d. Now at position %d\n\n"), (int) ch, (int) pos );
844 pos = (size_t)buf_input.TellI();
845 str.Printf( wxT("Now at position %d\n\n"), (int) pos );
851 pos = (size_t)buf_input.TellI();
852 str.Printf( wxT("Read char: %d. Now at position %d\n\n"), (int) ch, (int) pos );
858 pos = (size_t)buf_input.TellI();
859 str.Printf( wxT("Read char: %d. Now at position %d\n\n"), (int) ch, (int) pos );
865 pos = (size_t)buf_input.TellI();
866 str.Printf( wxT("Now at position %d\n\n"), (int) pos );
869 textCtrl.WriteText( _T("Seeking to pos 3 in wxBufferedInputStream. This invalidates the writeback buffer.\n\n") );
874 pos = (size_t)buf_input.TellI();
875 str.Printf( wxT("Read char: %d. Now at position %d\n\n"), (int) ch, (int) pos );
1066 const wxPoint& pos, const wxSize& size)
1067 : wxFrame(parent, wxID_ANY, title, pos, size)