HomeSort by relevance Sort by last modified time
    Searched refs:last_dot_pos (Results 1 - 3 of 3) sorted by null

  /external/grpc-grpc/src/compiler/
python_generator.cc 612 const size_t last_dot_pos = module_name.rfind('.'); local
613 if (last_dot_pos == grpc::string::npos) {
616 var["ImportStatement"] = "from " + module_name.substr(0, last_dot_pos) +
618 module_name.substr(last_dot_pos + 1);
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.cc 115 int last_dot_pos = module_name.rfind('.'); local
116 if (last_dot_pos == string::npos) {
121 return "from " + module_name.substr(0, last_dot_pos) + " import " +
122 module_name.substr(last_dot_pos + 1);
    [all...]
  /external/grpc-grpc-java/compiler/src/java_plugin/cpp/
java_generator.cpp 1330 size_t last_dot_pos = result.find_last_of('.'); local
    [all...]

Completed in 162 milliseconds