Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcstring46 const char* strrchr(const char* s, int c);
47 char* strrchr( char* s, int c);
90 using ::strrchr;
100 inline _LIBCPP_INLINE_VISIBILITY char* strrchr( char* __s, int __c) {return ::strrchr(__…
/ndk/sources/host-tools/make-3.81/
Ddir.c685 char *p = strrchr (d->d_name, ';'); in dir_contents_file_exists_p()
755 dirend = strrchr (name, ']'); in file_exists_p()
757 dirend = strrchr (name, ':'); in file_exists_p()
761 dirend = strrchr (name, '/'); in file_exists_p()
765 char *bslash = strrchr(name, '\\'); in file_exists_p()
812 dirend = strrchr (p, ']'); in file_impossible()
814 dirend = strrchr (p, ':'); in file_impossible()
819 dirend = strrchr (p, '/'); in file_impossible()
823 char *bslash = strrchr(p, '\\'); in file_impossible()
896 dirend = strrchr (filename, ']'); in file_impossible_p()
[all …]
Dimplicit.c283 lastslash = strrchr (filename, ']'); in pattern_search()
285 lastslash = strrchr (filename, ':'); in pattern_search()
287 lastslash = strrchr (filename, '/'); in pattern_search()
292 char *bslash = strrchr (filename, '\\'); in pattern_search()
Drule.c102 char *p = strrchr (dep->name, ']'); in count_implicit_rule_limits()
105 p = strrchr (dep->name, ':'); in count_implicit_rule_limits()
108 char *p = strrchr (dep->name, '/'); in count_implicit_rule_limits()
Dvpath.c398 n = strrchr (*file, '/'); in selective_vpath_search()
402 char *bslash = strrchr(*file, '\\'); in selective_vpath_search()
Darscan.c174 p = strrchr (VMS_saved_memname, '.'); in ar_scan()
713 p = strrchr (name, '/'); in ar_name_equal()
Dmain.c1039 program = strrchr (argv[0], ']'); in main()
1041 program = strrchr (argv[0], '/'); in main()
1045 program = strrchr (argv[0], '\\'); in main()
1050 char *p = strrchr (argv[0], '\\'); in main()
1062 program = strrchr (argv[0], '\\'); in main()
Dmake.h264 # define strrchr(s, c) rindex((s), (c)) macro
Dvmsify.c70 s = strrchr (*from, '.'); in copyto()
Dvariable.c1129 shellbase = strrchr (p, '/'); in do_variable_definition()
1130 bslash = strrchr (p, '\\'); in do_variable_definition()
Djob.c348 const char *name = strrchr (path, '/'); in _is_unixy_shell()
349 const char *p = strrchr (path, '\\'); in _is_unixy_shell()
Dremake.c1429 if (lbuf[0] == '/' || (p = strrchr (lpath, '/')) == NULL) in name_mtime()
/ndk/tests/device/test-stlport/unit/
Dcstring_test.cpp66 CPPUNIT_CHECK( std::strrchr(foofoo, 'f') == foofoo + 3 ); in import_checks()
/ndk/tests/device/test-gnustl-full/unit/
Dcstring_test.cpp66 CPPUNIT_CHECK( std::strrchr(foofoo, 'f') == foofoo + 3 ); in import_checks()
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-filepath.cc132 const char* const last_sep = strrchr(c_str(), kPathSeparator); in FindLastPathSeparator()
134 const char* const last_alt_sep = strrchr(c_str(), kAlternatePathSeparator); in FindLastPathSeparator()
/ndk/sources/cxx-stl/stlport/stlport/using/
Dcstring29 using _STLP_VENDOR_CSTD::strrchr;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dstring_h.pass.cpp41 static_assert((std::is_same<decltype(strrchr(cp, 0)), char*>::value), ""); in main()
/ndk/sources/host-tools/gdb-stub/
Dgdb-stub.c106 (sep = strrchr(cmdbuf, '\\')) in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
Dcstring.pass.cpp45 static_assert((std::is_same<decltype(std::strrchr(cp, 0)), char*>::value), ""); in main()
/ndk/sources/cxx-stl/system/include/
Dcstring61 using ::strrchr;
/ndk/sources/cxx-stl/gabi++/include/
Dcstring61 using ::strrchr;
/ndk/sources/host-tools/ndk-stack/
Dndk-stack-parser.c347 module_name = strrchr(module_path,'/'); in ParseFrame()
/ndk/sources/host-tools/ndk-stack/binutils/
Daddr2line.c293 h = strrchr (filename, '/'); in translate_addresses()
/ndk/sources/host-tools/make-3.81/glob/
Dglob.c168 # define strrchr rindex macro
507 filename = strrchr (pattern, '/');
/ndk/sources/host-tools/make-3.81/w32/subproc/
Dsub_proc.c483 shell_name = strrchr( buf, '/'); in process_begin()