|
|
|
@ -44,7 +44,7 @@ public:
|
|
|
|
|
typename Entry::childen_t::iterator current;
|
|
|
|
|
typename Entry::childen_t::iterator next;
|
|
|
|
|
|
|
|
|
|
current = mRoot.mChildren.find (tolower (*keyword.begin()));
|
|
|
|
|
current = mRoot.mChildren.find (Misc::StringUtils::toLower (*keyword.begin()));
|
|
|
|
|
if (current == mRoot.mChildren.end())
|
|
|
|
|
return false;
|
|
|
|
|
else if (current->second.mKeyword.size() && Misc::StringUtils::ciEqual(current->second.mKeyword, keyword))
|
|
|
|
@ -55,7 +55,7 @@ public:
|
|
|
|
|
|
|
|
|
|
for (Point i = ++keyword.begin(); i != keyword.end(); ++i)
|
|
|
|
|
{
|
|
|
|
|
next = current->second.mChildren.find(tolower (*i));
|
|
|
|
|
next = current->second.mChildren.find(Misc::StringUtils::toLower (*i));
|
|
|
|
|
if (next == current->second.mChildren.end())
|
|
|
|
|
return false;
|
|
|
|
|
if (Misc::StringUtils::ciEqual(next->second.mKeyword, keyword))
|
|
|
|
@ -89,7 +89,7 @@ public:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// check first character
|
|
|
|
|
typename Entry::childen_t::iterator candidate = mRoot.mChildren.find (tolower (*i));
|
|
|
|
|
typename Entry::childen_t::iterator candidate = mRoot.mChildren.find (Misc::StringUtils::toLower (*i));
|
|
|
|
|
|
|
|
|
|
// no match, on to next character
|
|
|
|
|
if (candidate == mRoot.mChildren.end ())
|
|
|
|
@ -104,7 +104,7 @@ public:
|
|
|
|
|
|
|
|
|
|
while ((j + 1) != end)
|
|
|
|
|
{
|
|
|
|
|
typename Entry::childen_t::iterator next = candidate->second.mChildren.find (tolower (*++j));
|
|
|
|
|
typename Entry::childen_t::iterator next = candidate->second.mChildren.find (Misc::StringUtils::toLower (*++j));
|
|
|
|
|
|
|
|
|
|
if (next == candidate->second.mChildren.end ())
|
|
|
|
|
{
|
|
|
|
@ -136,7 +136,7 @@ public:
|
|
|
|
|
|
|
|
|
|
while (k != end && t != candidate->second.mKeyword.end ())
|
|
|
|
|
{
|
|
|
|
|
if (tolower (*k) != tolower (*t))
|
|
|
|
|
if (Misc::StringUtils::toLower (*k) != Misc::StringUtils::toLower (*t))
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
++k, ++t;
|
|
|
|
@ -212,7 +212,7 @@ private:
|
|
|
|
|
|
|
|
|
|
void seed_impl (string_t keyword, value_t value, size_t depth, Entry & entry)
|
|
|
|
|
{
|
|
|
|
|
int ch = tolower (keyword.at (depth));
|
|
|
|
|
int ch = Misc::StringUtils::toLower (keyword.at (depth));
|
|
|
|
|
|
|
|
|
|
typename Entry::childen_t::iterator j = entry.mChildren.find (ch);
|
|
|
|
|
|
|
|
|
|