Lines Matching refs:find

98     if (localeTag.find("-u-") == std::string::npos) {

102 finalLocaleTag = localeTag.substr(0, localeTag.find("-u-"));
139 if (localeTag.find(hourCycleTag) != std::string::npos) {
140 hourCycle = localeTag.substr(localeTag.find(hourCycleTag) + CONFIG_TAG_LEN);
141 hourCycle = hourCycle.substr(0, hourCycle.find(flag));
143 if (localeTag.find(numberingSystemTag) != std::string::npos) {
144 numberingSystem = localeTag.substr(localeTag.find(numberingSystemTag) + CONFIG_TAG_LEN);
145 numberingSystem = numberingSystem.substr(0, numberingSystem.find(flag));
147 if (localeTag.find(calendarTag) != std::string::npos) {
148 calendar = localeTag.substr(localeTag.find(calendarTag) + CONFIG_TAG_LEN);
149 calendar = calendar.substr(0, calendar.find(flag));
151 if (localeTag.find(collationTag) != std::string::npos) {
152 collation = localeTag.substr(localeTag.find(collationTag) + CONFIG_TAG_LEN);
153 collation = collation.substr(0, collation.find(flag));
155 if (localeTag.find(caseFirstTag) != std::string::npos) {
156 caseFirst = localeTag.substr(localeTag.find(caseFirstTag) + CONFIG_TAG_LEN);
157 caseFirst = caseFirst.substr(0, caseFirst.find(flag));
159 if (localeTag.find(numericTag) != std::string::npos) {
160 numeric = localeTag.substr(localeTag.find(numericTag) + CONFIG_TAG_LEN);
161 numeric = numeric.substr(0, numeric.find(flag));
265 if (finalLocaleTag.find("-u-") != std::string::npos) {
266 restConfigs = finalLocaleTag.substr(finalLocaleTag.find("-u-"));
286 if (finalLocaleTag.find("-u-") != std::string::npos) {
287 restConfigs = finalLocaleTag.substr(finalLocaleTag.find("-u-"));