Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:slash_pos
(Results
1 - 6
of
6
) sorted by relevance
/third_party/ninja/src/
H
A
D
disk_interface.cc
49
string::size_type
slash_pos
= path.find_last_of(kPathSeparators);
in DirName()
local
50
if (
slash_pos
== string::npos)
in DirName()
52
while (
slash_pos
> 0 &&
in DirName()
53
std::find(kPathSeparators, kEnd, path[
slash_pos
- 1]) != kEnd)
in DirName()
54
--
slash_pos
;
in DirName()
55
return path.substr(0,
slash_pos
);
in DirName()
/third_party/curl/lib/vssh/
H
A
D
ssh.h
156
char *
slash_pos
; /* used by the SFTP_CREATE_DIRS state */
member
H
A
D
libssh.c
1377
sshc->
slash_pos
= protop->path + 1; /* ignore the leading '/' */
in myssh_statemach_act()
1386
sshc->
slash_pos
= strchr(sshc->
slash_pos
, '/');
in myssh_statemach_act()
1387
if(sshc->
slash_pos
) {
in myssh_statemach_act()
1388
*sshc->
slash_pos
= 0;
in myssh_statemach_act()
1401
*sshc->
slash_pos
= '/';
in myssh_statemach_act()
1402
++sshc->
slash_pos
;
in myssh_statemach_act()
H
A
D
libssh2.c
2229
sshc->
slash_pos
= sshp->path + 1; /* ignore the leading '/' */
in ssh_statemach_act()
2238
sshc->
slash_pos
= strchr(sshc->
slash_pos
, '/');
in ssh_statemach_act()
2239
if(sshc->
slash_pos
) {
in ssh_statemach_act()
2240
*sshc->
slash_pos
= 0;
in ssh_statemach_act()
2257
*sshc->
slash_pos
= '/';
in ssh_statemach_act()
2258
++sshc->
slash_pos
;
in ssh_statemach_act()
/third_party/protobuf/src/google/protobuf/compiler/
H
A
D
command_line_interface_unittest.cc
384
std::string::size_type
slash_pos
= name.find_last_of('/');
in CreateTempFile()
local
385
if (
slash_pos
!= std::string::npos) {
in CreateTempFile()
386
std::string dir = name.substr(0,
slash_pos
);
in CreateTempFile()
H
A
D
command_line_interface.cc
1779
std::string::size_type
slash_pos
= value.find_last_of('/');
in InterpretArgument()
local
1780
if (
slash_pos
== std::string::npos) {
in InterpretArgument()
1783
plugin_name = value.substr(
slash_pos
+ 1);
in InterpretArgument()
Completed in 15 milliseconds