OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:__libcpp_strrchr
(Results
1 - 2
of
2
) sorted by null
/external/libcxx/include/
string.h
88
char*
__libcpp_strrchr
(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
function
90
const char* strrchr(const char* __s, int __c) {return
__libcpp_strrchr
(__s, __c);}
92
char* strrchr( char* __s, int __c) {return
__libcpp_strrchr
(__s, __c);}
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/
string.h
88
char*
__libcpp_strrchr
(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
function
90
const char* strrchr(const char* __s, int __c) {return
__libcpp_strrchr
(__s, __c);}
92
char* strrchr( char* __s, int __c) {return
__libcpp_strrchr
(__s, __c);}
Completed in 145 milliseconds