Home
last modified time | relevance | path

Searched refs:last_dot (Results 1 - 7 of 7) sorted by relevance

/third_party/gn/src/base/files/
H A Dfile_path.cc121 const StringType::size_type last_dot = FinalExtensionSeparatorPosition(path); in ExtensionSeparatorPosition() local
124 if (last_dot == StringType::npos || last_dot == 0U) in ExtensionSeparatorPosition()
125 return last_dot; in ExtensionSeparatorPosition()
128 path.rfind(FilePath::kExtensionSeparator, last_dot - 1); in ExtensionSeparatorPosition()
130 FilePath::kSeparators, last_dot - 1, FilePath::kSeparatorsLength - 1); in ExtensionSeparatorPosition()
135 return last_dot; in ExtensionSeparatorPosition()
144 StringType extension(path, last_dot + 1); in ExtensionSeparatorPosition()
147 if ((last_dot - penultimate_dot) <= 5U && in ExtensionSeparatorPosition()
148 (last_dot in ExtensionSeparatorPosition()
[all...]
/kernel/linux/linux-5.10/tools/perf/
H A Dbuiltin-config.c123 const char *last_dot = strchr(arg, '.'); in parse_config_arg() local
129 if (last_dot == NULL || last_dot == arg) { in parse_config_arg()
133 if (!last_dot[1]) { in parse_config_arg()
/kernel/linux/linux-6.6/tools/perf/
H A Dbuiltin-config.c124 const char *last_dot = strchr(arg, '.'); in parse_config_arg() local
130 if (last_dot == NULL || last_dot == arg) { in parse_config_arg()
134 if (!last_dot[1]) { in parse_config_arg()
/third_party/python/Python/
H A Dimport.c1543 Py_ssize_t last_dot; in resolve_name() local
1655 last_dot = PyUnicode_GET_LENGTH(package); in resolve_name()
1656 if (last_dot == 0) { in resolve_name()
1661 last_dot = PyUnicode_FindChar(package, '.', 0, last_dot, -1); in resolve_name()
1662 if (last_dot == -2) { in resolve_name()
1665 else if (last_dot == -1) { in resolve_name()
1673 base = PyUnicode_Substring(package, 0, last_dot); in resolve_name()
H A Dsysmodule.c532 const char *last_dot = strrchr(envar, '.'); in sys_breakpointhook() local
536 if (last_dot == NULL) { in sys_breakpointhook()
541 else if (last_dot != envar) { in sys_breakpointhook()
543 modulepath = PyUnicode_FromStringAndSize(envar, last_dot - envar); in sys_breakpointhook()
544 attrname = last_dot + 1; in sys_breakpointhook()
/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.cc7325 std::string::size_type last_dot = name.find_last_of('.'); in InternalTypeOnceInit() local
7326 if (last_dot != std::string::npos) { in InternalTypeOnceInit()
7327 name = name.substr(0, last_dot) + "." + *default_value_enum_name_; in InternalTypeOnceInit()
/third_party/node/deps/ada/
H A Dada.cpp32 size_t last_dot = view.rfind('.'); variable
33 if (last_dot != std::string_view::npos) {
35 view = view.substr(last_dot + 1);

Completed in 41 milliseconds