Searched refs:dot_index (Results 1 – 6 of 6) sorted by relevance
23 let mut dot_index = len; in s2d() localVariable38 if dot_index != len { in s2d()41 dot_index = i; in s2d()91 e10 -= if dot_index < e_index { in s2d()92 (e_index - dot_index - 1) as i32 in s2d()
23 let mut dot_index = len; in s2f() localVariable38 if dot_index != len { in s2f()41 dot_index = i; in s2f()91 e10 -= if dot_index < e_index { in s2f()92 (e_index - dot_index - 1) as i32 in s2f()
1149 size_t dot_index = 0; in ParseNum() local1153 if (!GetNumericDotIndex(wsSrcNum, wsDotSymbol, &dot_index) && in ParseNum()1165 size_t cc = dot_index - 1; in ParseNum()1354 if ((dwFormatStyle & FX_NUMSTYLE_DotVorv) && dot_index < spSrcNum.size()) in ParseNum()1358 cc = (dot_index == spSrcNum.size()) ? spSrcNum.size() : dot_index + 1; in ParseNum()1923 auto dot_index = wsSrcNum.Find('.'); in FormatNum() local1924 if (!dot_index.has_value()) in FormatNum()1925 dot_index = spSrcNum.size(); in FormatNum()1927 size_t cc = dot_index.value() - 1; in FormatNum()2041 size_t nPos = dot_index.value() % 3; in FormatNum()[all …]
430 size_t dot_index = package_name.find(delimiter); in GeneratePackageModules() local432 if (dot_index == string::npos) { in GeneratePackageModules()436 component = package_name.substr(0, dot_index); in GeneratePackageModules()437 package_name = package_name.substr(dot_index + delimiter_size); in GeneratePackageModules()
213 const int dot_index = fd.name().find_last_of('.'); in GetProtoTextHeaderName() local214 return fd.name().substr(0, dot_index) + in GetProtoTextHeaderName()220 const int dot_index = fd.name().find_last_of('.'); in GetProtoHeaderName() local221 return fd.name().substr(0, dot_index) + ".pb.h"; in GetProtoHeaderName()
661 auto dot_index = wsSrcNum.Find('.'); in FormatNumStr() local662 dot_index = !dot_index.has_value() ? wsSrcNum.GetLength() : dot_index; in FormatNumStr()664 if (dot_index.value() < 1) in FormatNumStr()667 size_t nPos = dot_index.value() % 3; in FormatNumStr()669 for (size_t i = 0; i < dot_index.value(); i++) { in FormatNumStr()675 if (dot_index.value() < wsSrcNum.GetLength()) { in FormatNumStr()677 wsOutput += wsSrcNum.Last(wsSrcNum.GetLength() - dot_index.value() - 1); in FormatNumStr()