Home
last modified time | relevance | path

Searched refs:lastslash (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/zlib/contrib/minizip/
Dminizip.c436 const char *lastslash = 0; local
441 lastslash = tmpptr;
444 if( lastslash != NULL )
446 savefilenameinzip = lastslash+1; // base filename follows last slash.
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/contrib/minizip/
Dminizip.c436 const char *lastslash = 0; local
441 lastslash = tmpptr;
444 if( lastslash != NULL )
446 savefilenameinzip = lastslash+1; // base filename follows last slash.
/third_party/zlib/contrib/minizip/
Dminizip.c437 const char *lastslash = 0; local
442 lastslash = tmpptr;
445 if( lastslash != NULL )
447 savefilenameinzip = lastslash+1; // base filename follows last slash.
/third_party/flutter/skia/third_party/externals/zlib/contrib/minizip/
Dminizip.c436 const char *lastslash = 0; local
441 lastslash = tmpptr;
444 if( lastslash != NULL )
446 savefilenameinzip = lastslash+1; // base filename follows last slash.
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/minizip/
Dminizip.c436 const char *lastslash = 0; local
441 lastslash = tmpptr;
444 if( lastslash != NULL )
446 savefilenameinzip = lastslash+1; // base filename follows last slash.
/third_party/protobuf/src/google/protobuf/compiler/csharp/
Dcsharp_helpers.cc125 int lastslash = proto_file.find_last_of("/"); in GetFileNameBase() local
126 std::string base = proto_file.substr(lastslash + 1); in GetFileNameBase()