Searched defs:dot_index (Results 1 - 4 of 4) sorted by relevance

/external/protobuf/src/google/protobuf/compiler/ruby/
H A Druby_generator.cc308 size_t dot_index = package_name.find("."); local
310 if (dot_index == string::npos) {
314 component = package_name.substr(0, dot_index);
315 package_name = package_name.substr(dot_index + 1);
/external/tensorflow/tensorflow/tools/proto_text/
H A Dgen_proto_text_functions_lib.cc213 const int dot_index = fd.name().find_last_of('.'); local
214 return fd.name().substr(0, dot_index) +
220 const int dot_index = fd.name().find_last_of('.'); local
221 return fd.name().substr(0, dot_index) + ".pb.h";
/external/pdfium/xfa/fgas/crt/
H A Dcfgas_formatstring.cpp1169 int32_t dot_index = 0; local
1173 if (!GetNumericDotIndex(wsSrcNum, wsDotSymbol, &dot_index) &&
1179 // |dot_index| is the location of the dot in the number.
1186 int cc = dot_index - 1;
1361 if (dot_index < len && (dwFormatStyle & FX_NUMSTYLE_DotVorv))
1365 cc = (dot_index == len) ? len : dot_index + 1;
1947 auto dot_index = wsSrcNum.Find('.'); local
1948 if (!dot_index.has_value())
1949 dot_index
[all...]
/external/pdfium/xfa/fxfa/
H A Dcxfa_widgetacc.cpp2683 auto dot_index = wsSrcNum.Find('.'); local
2684 dot_index = !dot_index.has_value() ? wsSrcNum.GetLength() : dot_index;
2686 if (dot_index.value() < 1)
2689 size_t nPos = dot_index.value() % 3;
2691 for (size_t i = 0; i < dot_index.value(); i++) {
2697 if (dot_index.value() < wsSrcNum.GetLength()) {
2699 wsOutput += wsSrcNum.Right(wsSrcNum.GetLength() - dot_index.value() - 1);

Completed in 286 milliseconds