OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:last_slash
(Results
1 - 13
of
13
) sorted by null
/external/bluetooth/glib/gio/win32/
gwinhttpfile.c
169
char *
last_slash
;
local
173
last_slash
= strrchr (basename, '/');
175
if (
last_slash
== NULL ||
last_slash
[1] == '\0')
178
retval = g_strdup (
last_slash
+ 1);
241
char *
last_slash
;
local
250
last_slash
= strrchr (uri, '/');
251
if (
last_slash
== NULL || *(
last_slash
+1) == 0)
257
while (
last_slash
> uri && *last_slash == '/'
[
all
...]
/external/chromium/net/tools/dump_cache/
url_to_filename_encoder.cc
261
int
last_slash
= 0;
local
265
last_slash
= index;
281
if (index -
last_slash
> kMaximumSubdirectoryLength) {
288
last_slash
= index;
/external/chromium/googleurl/base/
logging.cc
252
const char*
last_slash
= strrchr(file, '\\');
local
253
if (
last_slash
)
254
file =
last_slash
+ 1;
/external/chromium/net/http/
http_auth_cache.cc
18
std::string::size_type
last_slash
= path.rfind("/");
local
19
if (
last_slash
== std::string::npos) {
25
return path.substr(0,
last_slash
+ 1);
/external/protobuf/src/google/protobuf/compiler/java/
java_helpers.cc
126
string::size_type
last_slash
= file->name().find_last_of('/');
local
127
if (
last_slash
== string::npos) {
130
basename = file->name().substr(
last_slash
+ 1);
/external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_helpers.cc
136
string::size_type
last_slash
= file->name().find_last_of('/');
local
137
if (
last_slash
== string::npos) {
140
basename = file->name().substr(
last_slash
+ 1);
/external/webkit/Source/WebCore/plugins/android/
PluginPackageAndroid.cpp
308
int
last_slash
= m_path.reverseFind('/');
local
309
if(
last_slash
< 0)
312
m_fileName = m_path.substring(
last_slash
+ 1);
/external/chromium/googleurl/src/
url_canon_relative.cc
188
int
last_slash
= -1;
local
191
last_slash
= i;
195
if (
last_slash
< 0)
199
for (int i = begin; i <=
last_slash
; i++)
/external/dbus/dbus/
dbus-internals.c
340
char *last_period, *
last_slash
;
local
345
last_slash
= _mbsrchr(module_name,'\\');
346
if (
last_slash
)
347
strcpy(module_name,
last_slash
+1);
dbus-marshal-validate.c
791
const unsigned char *
last_slash
;
local
808
last_slash
= s;
815
if ((s -
last_slash
) < 2)
818
last_slash
= s;
829
if ((end -
last_slash
) < 2 &&
[
all
...]
dbus-sysdeps-win.c
1999
char *
last_slash
;
local
[
all
...]
/external/v8/src/
d8-posix.cc
586
char*
last_slash
= strrchr(directory, '/');
local
587
if (
last_slash
== NULL) {
591
*
last_slash
= 0;
593
*
last_slash
= '/';
/external/chromium/chrome/browser/
enumerate_modules_model_win.cc
281
size_t
last_slash
= module->location.find_last_of(L"\\");
local
282
if (
last_slash
!= string16::npos) {
283
module->name = module->location.substr(
last_slash
+ 1);
284
module->location = module->location.substr(0,
last_slash
+ 1);
[
all
...]
Completed in 209 milliseconds