OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:findIgnoringCase
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.h
180
size_t
findIgnoringCase
(const char* str, unsigned start = 0) const
181
{ return m_impl ? m_impl->
findIgnoringCase
(str, start) : notFound; }
182
size_t
findIgnoringCase
(const String& str, unsigned start = 0) const
183
{ return m_impl ? m_impl->
findIgnoringCase
(str.impl(), start) : notFound; }
189
{ return caseSensitive ? find(str, start) :
findIgnoringCase
(str, start); }
191
{ return caseSensitive ? find(str, start) :
findIgnoringCase
(str, start); }
StringImpl.cpp
580
size_t StringImpl::
findIgnoringCase
(const char* matchString, unsigned index)
659
size_t StringImpl::
findIgnoringCase
(StringImpl* matchString, unsigned index)
769
return (caseSensitive ? find(m_data, start) :
findIgnoringCase
(m_data, start)) == start;
Completed in 41 milliseconds