Home | History | Annotate | Download | only in text

Lines Matching refs:caseSensitive

102     bool contains(const LChar* s, bool caseSensitive = true) const
103 { return m_string.contains(s, caseSensitive); }
104 bool contains(const String& s, bool caseSensitive = true) const
105 { return m_string.contains(s, caseSensitive); }
113 bool startsWith(const String& s, bool caseSensitive = true) const
114 { return m_string.startsWith(s, caseSensitive); }
118 bool startsWith(const char (&prefix)[matchLength], bool caseSensitive = true) const
119 { return m_string.startsWith<matchLength>(prefix, caseSensitive); }
121 bool endsWith(const String& s, bool caseSensitive = true) const
122 { return m_string.endsWith(s, caseSensitive); }
126 bool endsWith(const char (&prefix)[matchLength], bool caseSensitive = true) const
127 { return m_string.endsWith<matchLength>(prefix, caseSensitive); }