Home | History | Annotate | Download | only in fxcrt

Lines Matching refs:FX_STRSIZE

32   CFX_StringCTemplate(const CharType* ptr, FX_STRSIZE len)
39 FX_STRSIZE size,
83 uint32_t GetID(FX_STRSIZE start_pos = 0) const {
88 FX_STRSIZE size = std::min(4, m_Length - start_pos);
89 for (FX_STRSIZE i = 0; i < size; i++)
100 FX_STRSIZE GetLength() const { return m_Length; }
103 UnsignedType GetAt(FX_STRSIZE index) const { return m_Ptr[index]; }
104 CharType CharAt(FX_STRSIZE index) const {
108 FX_STRSIZE Find(CharType ch) const {
114 CFX_StringCTemplate Mid(FX_STRSIZE index, FX_STRSIZE count = -1) const {
125 CFX_StringCTemplate Left(FX_STRSIZE count) const {
132 CFX_StringCTemplate Right(FX_STRSIZE count) const {
151 FX_STRSIZE m_Length;