OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:yasm__splitpath_unix
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
splitpath_test.c
48
{
yasm__splitpath_unix
, "", 0, ""},
49
{
yasm__splitpath_unix
, "./file.ext", 0, "file.ext"},
50
{
yasm__splitpath_unix
, "../../file.ext", 5, "file.ext"},
51
{
yasm__splitpath_unix
, "file.ext", 0, "file.ext"},
52
{
yasm__splitpath_unix
, "/file.ext", 1, "file.ext"},
53
{
yasm__splitpath_unix
, "/foo/file.ext", 4, "file.ext"},
54
{
yasm__splitpath_unix
, "/foo/bar/file.ext", 8, "file.ext"},
55
{
yasm__splitpath_unix
, "foo/file.ext", 3, "file.ext"},
56
{
yasm__splitpath_unix
, "foo/bar/file.ext", 7, "file.ext"},
57
{
yasm__splitpath_unix
, "foo/bar//file.ext", 7, "file.ext"}
[
all
...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
file.h
95
size_t
yasm__splitpath_unix
(const char *path, /*@out@*/ const char **tail);
108
* Unless otherwise defined, defaults to
yasm__splitpath_unix
().
119
# define yasm__splitpath(path, tail)
yasm__splitpath_unix
(path, tail)
file.c
184
yasm__splitpath_unix
(const char *path, /*@out@*/ const char **tail)
function
305
pathlen =
yasm__splitpath_unix
(from, &tail);
Completed in 599 milliseconds