Lines Matching defs:const
55 Function getFunction (void) const { return m_func; }
58 size_t getDataSize (void) const { return m_data.size(); }
61 const deUint8* getData (void) const { return m_data.empty() ? DE_NULL : &m_data[0]; }
76 const deUint8* getDataBlock (size_t numBytes); //!< \note Valid only during call.
77 bool isDataConsumed (void) const; //!< all data has been consumed
80 CallReader (const CallReader& other); //!< disallowed
81 CallReader& operator= (const CallReader& other); //!< disallowed
93 void write (const deUint8* bytes, size_t numBytes);
97 CallWriter (const CallWriter& other);
98 CallWriter& operator= (const CallWriter& other);
119 CallQueue (const CallQueue& other);
120 CallQueue& operator= (const CallQueue& other);
134 CallWriter& operator<< (CallWriter& writer, const char* str);
146 writer.write((const deUint8*)&value, sizeof(T));