Home | History | Annotate | Download | only in xmllite

Lines Matching defs:first

72   return match.second && (match.first == ns);
96 std::string prefix(PrefixForNs(name.Namespace(), isAttr).first);
137 size_t first = last;
139 while (first > 0) {
140 if (!IsAsciiLetter(ns[first - 1]))
142 first -= 1;
144 if (last - first > 4)
145 last = first + 3;
146 std::string candidate(AsciiLower(ns.substr(first, last - first)));