Home
last modified time | relevance | path

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

/external/protobuf/src/google/protobuf/compiler/python/
Dpython_generator.cc115 int last_dot_pos = module_name.rfind('.'); in ModuleImportStatement() local
116 if (last_dot_pos == string::npos) { in ModuleImportStatement()
121 return "from " + module_name.substr(0, last_dot_pos) + " import " + in ModuleImportStatement()
122 module_name.substr(last_dot_pos + 1); in ModuleImportStatement()