Searched refs:dot_index (Results 1 – 4 of 4) sorted by relevance
308 size_t dot_index = package_name.find("."); in GeneratePackageModules() local310 if (dot_index == string::npos) { in GeneratePackageModules()314 component = package_name.substr(0, dot_index); in GeneratePackageModules()315 package_name = package_name.substr(dot_index + 1); in GeneratePackageModules()
1169 int32_t dot_index = 0; in ParseNum() local1173 if (!GetNumericDotIndex(wsSrcNum, wsDotSymbol, &dot_index) && in ParseNum()1186 int cc = dot_index - 1; in ParseNum()1361 if (dot_index < len && (dwFormatStyle & FX_NUMSTYLE_DotVorv)) in ParseNum()1365 cc = (dot_index == len) ? len : dot_index + 1; in ParseNum()1947 auto dot_index = wsSrcNum.Find('.'); in FormatStrNum() local1948 if (!dot_index.has_value()) in FormatStrNum()1949 dot_index = len; in FormatStrNum()1952 cc = dot_index.value() - 1; in FormatStrNum()2084 int nPos = dot_index.value() % 3; in FormatStrNum()[all …]
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()
2683 auto dot_index = wsSrcNum.Find('.'); in FormatNumStr() local2684 dot_index = !dot_index.has_value() ? wsSrcNum.GetLength() : dot_index; in FormatNumStr()2686 if (dot_index.value() < 1) in FormatNumStr()2689 size_t nPos = dot_index.value() % 3; in FormatNumStr()2691 for (size_t i = 0; i < dot_index.value(); i++) { in FormatNumStr()2697 if (dot_index.value() < wsSrcNum.GetLength()) { in FormatNumStr()2699 wsOutput += wsSrcNum.Right(wsSrcNum.GetLength() - dot_index.value() - 1); in FormatNumStr()