Changeset 65021 in webkit for trunk/JavaScriptCore/wtf/text/StringImpl.cpp
- Timestamp:
- Aug 9, 2010, 5:38:14 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/text/StringImpl.cpp
r60332 r65021 32 32 #include <wtf/WTFThreadData.h> 33 33 34 using namespace WTF; 34 namespace WTF { 35 35 36 using namespace Unicode; 36 37 namespace WebCore {38 37 39 38 static const unsigned minLengthToShare = 20; … … 536 535 int StringImpl::find(UChar c, int start) 537 536 { 538 return W ebCore::find(m_data, m_length, c, start);537 return WTF::find(m_data, m_length, c, start); 539 538 } 540 539 541 540 int StringImpl::find(CharacterMatchFunctionPtr matchFunction, int start) 542 541 { 543 return W ebCore::find(m_data, m_length, matchFunction, start);542 return WTF::find(m_data, m_length, matchFunction, start); 544 543 } 545 544 … … 602 601 int StringImpl::reverseFind(UChar c, int index) 603 602 { 604 return W ebCore::reverseFind(m_data, m_length, c, index);603 return WTF::reverseFind(m_data, m_length, c, index); 605 604 } 606 605 … … 962 961 } 963 962 964 } // namespace W ebCore963 } // namespace WTF
Note:
See TracChangeset
for help on using the changeset viewer.