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:fpnp
(Results
1 - 10
of
10
) sorted by relevance
/foundation/ability/idl_tool/idl_tool_2/codegen/SA/rust/
H
A
D
sa_rust_interface_code_emitter.cpp
123
std::string SaRustInterfaceCodeEmitter::GeneratePath(const std::string &
fpnp
) const
in GeneratePath()
125
size_t pos =
fpnp
.rfind("..");
in GeneratePath()
127
std::string path = TrimDot(
fpnp
);
in GeneratePath()
134
std::string path = TrimDot(
fpnp
.substr(0, pos + 1));
in GeneratePath()
135
std::string file = TrimDot(
fpnp
.substr(pos));
in GeneratePath()
152
std::string SaRustInterfaceCodeEmitter::TrimDot(const std::string &
fpnp
) const
in TrimDot()
154
if (
fpnp
.empty()) {
in TrimDot()
159
int right = static_cast<int>(
fpnp
.length()) - 1;
in TrimDot()
160
while ((
fpnp
[left] == ' ') || (
fpnp
[lef
in TrimDot()
[all...]
H
A
D
sa_rust_interface_code_emitter.h
44
std::string GeneratePath(const std::string &
fpnp
) const;
46
std::string TrimDot(const std::string &
fpnp
) const;
/foundation/ability/idl_tool/idl_tool_2/codegen/SA/cpp/
H
A
D
sa_cpp_interface_code_emitter.cpp
27
std::string SaCppInterfaceCodeEmitter::GetFilePath(const std::string &
fpnp
) const
in GetFilePath()
29
size_t pos =
fpnp
.find("..");
in GetFilePath()
34
return
fpnp
.substr(0, pos + 1);
in GetFilePath()
37
std::string SaCppInterfaceCodeEmitter::GetFilePathNoPoint(const std::string &
fpnp
) const
in GetFilePathNoPoint()
39
size_t pos =
fpnp
.find("..");
in GetFilePathNoPoint()
44
return
fpnp
.substr(0, pos);
in GetFilePathNoPoint()
H
A
D
sa_cpp_interface_code_emitter.h
40
std::string GetFilePath(const std::string &
fpnp
) const;
42
std::string GetFilePathNoPoint(const std::string &
fpnp
) const;
/foundation/ability/idl_tool/codegen/
H
A
D
rust_code_emitter.cpp
129
String RustCodeEmitter::TrimDot(const String&
fpnp
)
in TrimDot()
argument
131
if (
fpnp
.IsEmpty()) {
in TrimDot()
136
int right =
fpnp
.GetLength() - 1;
in TrimDot()
137
while (
fpnp
[left] == ' ' ||
fpnp
[left] == '.') {
in TrimDot()
141
while (
fpnp
[right] == ' ' ||
fpnp
[right] == '.') {
in TrimDot()
149
return
fpnp
.Substring(left, right + 1);
in TrimDot()
152
String RustCodeEmitter::GeneratePath(const String&
fpnp
)
in GeneratePath()
argument
154
int pos =
fpnp
in GeneratePath()
[all...]
H
A
D
rust_code_emitter.h
53
String TrimDot(const String&
fpnp
);
55
String GeneratePath(const String&
fpnp
);
57
bool AppendRealPath(StringBuilder& sb, const String&
fpnp
);
H
A
D
cpp_code_emitter.h
182
String GetFilePath(const String&
fpnp
);
184
String GetFilePathNoPoint(const String&
fpnp
);
186
String GetNamespace(const String&
fpnp
);
H
A
D
cpp_code_emitter.cpp
115
String CppCodeEmitter::GetFilePath(const String&
fpnp
)
in GetFilePath()
argument
117
int pos =
fpnp
.IndexOf("..");
in GetFilePath()
121
String res =
fpnp
.Substring(0, pos + 1);
in GetFilePath()
125
String CppCodeEmitter::GetFilePathNoPoint(const String&
fpnp
)
in GetFilePathNoPoint()
argument
127
int pos =
fpnp
.IndexOf("..");
in GetFilePathNoPoint()
131
String res =
fpnp
.Substring(0, pos);
in GetFilePathNoPoint()
135
String CppCodeEmitter::GetNamespace(const String&
fpnp
)
in GetNamespace()
argument
137
int pos =
fpnp
.IndexOf("..");
in GetNamespace()
139
return
fpnp
;
in GetNamespace()
141
String res =
fpnp
in GetNamespace()
[all...]
/foundation/ability/idl_tool/idl_tool_2/codegen/
H
A
D
code_emitter.cpp
206
std::string CodeEmitter::GetNamespace(const std::string &
fpnp
) const
in GetNamespace()
208
size_t pos =
fpnp
.find("..");
in GetNamespace()
210
return
fpnp
;
in GetNamespace()
213
return
fpnp
.substr(pos + strlen(".."));
in GetNamespace()
H
A
D
code_emitter.h
124
std::string GetNamespace(const std::string &
fpnp
) const;
Completed in 5 milliseconds