Searched refs:wxMemoryInputStream (Results 1 - 25 of 26) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dmstream.h23 class WXDLLIMPEXP_BASE wxMemoryInputStream : public wxInputStream class in inherits:wxInputStream
26 wxMemoryInputStream(const void *data, size_t length);
27 wxMemoryInputStream(const wxMemoryOutputStream& stream);
28 virtual ~wxMemoryInputStream();
51 DECLARE_NO_COPY_CLASS(wxMemoryInputStream)
84 inline wxStreamBuffer *wxMemoryInputStream::InputStreamBuffer() const { return m_i_streambuf; }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dmstream.cpp42 // wxMemoryInputStream
45 wxMemoryInputStream::wxMemoryInputStream(const void *data, size_t len) function in class:wxMemoryInputStream
55 wxMemoryInputStream::wxMemoryInputStream(const wxMemoryOutputStream& stream) function in class:wxMemoryInputStream
76 wxMemoryInputStream::~wxMemoryInputStream()
81 char wxMemoryInputStream::Peek()
95 size_t wxMemoryInputStream::OnSysRead(void *buffer, size_t nbytes)
111 wxFileOffset wxMemoryInputStream
[all...]
H A Dfs_mem.cpp135 new wxMemoryInputStream(obj -> m_Data, obj -> m_Len),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/streams/
H A Dmemstream.cpp3 // Purpose: Test wxMemoryInputStream/wxMemoryOutputStream
32 // Try to fully test wxMemoryInputStream and wxMemoryOutputStream
34 class memStream : public BaseStreamTestCase<wxMemoryInputStream, wxMemoryOutputStream>
71 virtual wxMemoryInputStream *DoCreateInStream();
95 wxMemoryInputStream *memStream::DoCreateInStream()
97 wxMemoryInputStream *pMemInStream = new wxMemoryInputStream(GetDataBuffer(), DATABUFFER_SIZE);
112 wxMemoryInputStream *pMemInStream = new wxMemoryInputStream(*pMemOutStream);
H A Dzlibstream.cpp142 wxMemoryInputStream *m_pTmpMemInStream;
241 wxMemoryInputStream memstream_in(GetDataBuffer(), DATABUFFER_SIZE);
421 wxMemoryInputStream memstream_in(data, data_size);
483 m_pTmpMemInStream = new wxMemoryInputStream(buf, m_SizeCompressedData);
H A Dfileback.cpp32 class TestStream : public wxMemoryInputStream
36 : wxMemoryInputStream(buf, size) { }
H A Dtextstreamtest.cpp257 wxMemoryInputStream byteIn(encodedText, encodedSize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dstrmmem.tex2 % wxMemoryInputStream
4 \section{\class{wxMemoryInputStream}}\label{wxmeminputstream}
23 \membersection{wxMemoryInputStream::wxMemoryInputStream}\label{wxmemoryinputstreamctor}
25 \func{}{wxMemoryInputStream}{\param{const char *}{ data}, \param{size\_t}{ len}}
31 \func{}{wxMemoryInputStream}{\param{const wxMemoryOutputStream&}{ stream}}
36 \membersection{wxMemoryInputStream::\destruct{wxMemoryInputStream}}\label{wxmemoryinputstreamdtor}
38 \func{}{\destruct{wxMemoryInputStream}}{\void}
42 \membersection{wxMemoryInputStream
[all...]
H A Dfsfile.tex57 similar to wxMemoryInputStream, but because wxMemoryInputStream
H A Dcategory.tex545 \twocolitem{\helpref{wxMemoryInputStream}{wxmeminputstream}}{Memory input stream class}
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/html/virtual/
H A Dvirtual.cpp65 // time this method is called and return new wxMemoryInputStream pointing to it.
69 str = new wxMemoryInputStream(buf, strlen(buf));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DMuleGifCtrl.cpp97 wxMemoryInputStream stream(data, size);
H A DBaseClient.cpp2663 wxMemoryInputStream memstr(data->GetRawBuffer() + pos, nSize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Ddataobj.cpp320 wxMemoryInputStream vMstream((char*)m_pngData, m_pngSize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/filekind/
H A Dfilekind.cpp179 wxMemoryInputStream inStream(buf, sizeof(buf));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Ddataobj.cpp378 wxMemoryInputStream mstream((char*) m_pngData, m_pngSize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Ddataobj.cpp358 wxMemoryInputStream mstream((char*) m_pngData, m_pngSize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/x11/
H A Ddataobj.cpp349 wxMemoryInputStream mstream( (char*) m_pngData, m_pngSize );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/html/
H A Dchm.cpp689 m_contentStream = new wxMemoryInputStream(m_content, m_size);
733 m_contentStream = new wxMemoryInputStream (m_content, m_size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/image/
H A Dimage.cpp706 wxMemoryInputStream mis(data, dataSize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/typetest/
H A Dtypetest.cpp690 textCtrl << _T("\n\n\nTesting wxMemoryInputStream's Peek():\n\n");
693 wxMemoryInputStream input( buf, 10 );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/
H A DPlatWX.cpp1293 wxMemoryInputStream stream(xpm_data, strlen(xpm_data)+1);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/mbconv/
H A Dmbconvtest.cpp1058 // this isn't meant to test wxMemoryInputStream or wxTextInputStream
1061 wxMemoryInputStream memoryInputStream( multiBuffer, multiBytes );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/console/
H A Dconsole.cpp2869 wxPuts(_T("*** Testing wxMemoryInputStream ***"));
2874 wxMemoryInputStream memInpStream(buf, len);
2881 wxPuts(_T("\n*** wxMemoryInputStream test done ***"));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/db/
H A Ddbtest.cpp2914 wxMemoryInputStream inStream(pImageData, iSize);

Completed in 109 milliseconds

12