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

12345678910

/external/clang/test/Preprocessor/
H A Dpragma_poison.c14 #define strrchr rindex2 macro
20 strrchr(some_string, 'h'); // ok.
/external/toybox/toys/posix/
H A Drmdir.c36 if (!(temp = strrchr(name, '/'))) return;
/external/valgrind/memcheck/tests/
H A Dstrchr.c5 // aliases, as are 'strrchr' and 'rindex'. In each case, the shorter name
16 b = strrchr(s, '1');
/external/e2fsprogs/util/
H A Dlibecho.c49 while((slash = strrchr(f, '/')) != NULL)
54 slash = strrchr(filepath, '\\');
/external/skia/src/utils/
H A DSkOSFile.cpp22 const char* filename = strrchr(fullPath, SkPATH_SEPARATOR);
35 const char* end = strrchr(fullPath, SkPATH_SEPARATOR);
/external/bison/lib/
H A Dmbsrchr.c48 return strrchr (string, c);
H A Dprogname.c59 slash = strrchr (argv0, '/');
/external/libutf/
H A Dutfrrune.c28 return strrchr(s, c);
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_procmaps_test.cc36 const char *last_slash = strrchr(argv0, '/');
/external/clang/test/CodeGen/
H A Dlibcalls-fno-builtin.c14 char *strrchr(const char *s, int c);
63 char *t9(void) { return strrchr("hello, world", 'w'); }
65 // CHECK: strrchr
/external/openssh/openbsd-compat/
H A Drealpath.c121 q = strrchr(resolved, '/') + 1;
160 q = strrchr(resolved, '/') + 1;
/external/freetype/include/config/
H A Dftstdlib.h90 #define ft_strrchr strrchr
/external/google-breakpad/src/common/android/testing/
H A Dmkdtemp.h75 char* sep = strrchr(path, '/');
/external/pdfium/third_party/freetype/include/config/
H A Dftstdlib.h90 #define ft_strrchr strrchr
/external/sfntly/cpp/src/test/
H A Dtest_utils.cc87 return strrchr(file_path, EXTENSION_SEPARATOR);
/external/skia/samplecode/
H A DSamplePdfFileViewer.cpp65 const char* basename = strrchr(fFilename.c_str(), SkPATH_SEPARATOR);
/external/skia/src/utils/ios/
H A DSkOSFile_iOS.mm25 const char* start = strrchr(cpath, '/');
31 const char* stop = strrchr(cpath, '.');
/external/vboot_reference/cgpt/
H A Dcgpt.c61 progname = strrchr(argv[0], '/');
/external/libvorbis/vq/
H A Dhuffbuild.c75 if(strrchr(base,'.'))
76 strrchr(base,'.')[0]='\0';
/external/toybox/toys/pending/
H A Dmdev.c46 temp = strrchr(path, '/');
80 device_name = strrchr(path, '/') + 1;
H A Dftpget.c161 if (!(pch = strrchr(toybuf, ')'))) goto close_stream;
163 if (!(pch = strrchr(toybuf, ','))) goto close_stream;
168 if (!(pch = strrchr(toybuf, ','))) goto close_stream;
/external/vboot_reference/utility/
H A Dbmpblk_font.c128 progname = strrchr(argv[0], '/');
174 s = strrchr(imgfile, '_');
/external/v8/test/cctest/
H A Dcctest.cc59 char *basename = strrchr(const_cast<char *>(file), '/');
61 basename = strrchr(const_cast<char *>(file), '\\');
69 char *extension = strrchr(basename, '.');
/external/linux-tools-perf/src/tools/perf/
H A Dbuiltin-help.c126 const char *file = strrchr(path, '/');
129 char *dest = strrchr(new, '/');
222 const char *subkey = strrchr(name, '.');
/external/ipsec-tools/src/racoon/
H A Dmisc.c126 p = strrchr(file, '/');

Completed in 2093 milliseconds

12345678910