Home
last modified time | relevance | path

Searched refs:hyphenPos (Results 1 – 2 of 2) sorted by relevance

/external/angle/third_party/vulkan_memory_allocator/src/VmaReplay/
DCommon.h307 const char* hyphenPos = currRange.beg; in Parse() local
308 while(hyphenPos < currRange.end && *hyphenPos != '-') in Parse()
310 ++hyphenPos; in Parse()
314 if(hyphenPos == currRange.end) in Parse()
325 else if(hyphenPos + 1 == currRange.end) in Parse()
327 const StrRange numberRange = { currRange.beg, hyphenPos }; in Parse()
337 else if(hyphenPos == currRange.beg) in Parse()
351 const StrRange numberRange1 = { currRange.beg, hyphenPos }; in Parse()
352 const StrRange numberRange2 = { hyphenPos + 1, currRange.end }; in Parse()
/external/cldr/tools/java/org/unicode/cldr/util/
DPathHeader.java1863 int hyphenPos = source.indexOf('-');
1864 if (hyphenPos < 0) {
1868 main = source.substring(0, hyphenPos);
1869 extras = source.substring(hyphenPos);