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:inString
(Results
1 - 8
of
8
) sorted by relevance
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H
A
D
schema_utils.cpp
33
void TrimFiled(std::string &
inString
)
in TrimFiled()
argument
35
inString
.erase(0,
inString
.find_first_not_of("\r\t "));
in TrimFiled()
36
size_t temp =
inString
.find_last_not_of("\r\t ");
in TrimFiled()
37
if (temp <
inString
.size()) {
in TrimFiled()
38
inString
.erase(temp + 1);
in TrimFiled()
451
std::string SchemaUtils::Strip(const std::string &
inString
)
in Strip()
argument
453
std::string stripRes =
inString
;
in Strip()
H
A
D
json_object.cpp
47
uint32_t JsonObject::CalculateNestDepth(const std::string &
inString
, int &errCode)
in CalculateNestDepth()
argument
49
auto begin = reinterpret_cast<const uint8_t *>(
inString
.c_str());
in CalculateNestDepth()
50
auto end = begin +
inString
.size();
in CalculateNestDepth()
111
int JsonObject::Parse(const std::string &
inString
)
in Parse()
argument
119
uint32_t nestDepth = CalculateNestDepth(
inString
, errCode);
in Parse()
133
auto begin = reinterpret_cast<const std::string::value_type *>(
inString
.c_str());
in Parse()
134
auto end = reinterpret_cast<const std::string::value_type *>(
inString
.c_str() +
inString
.length());
in Parse()
142
if (!reader.parse(
inString
, value_, false)) {
in Parse()
791
uint32_t JsonObject::CalculateNestDepth(const std::string &
inString
, in
[all...]
H
A
D
value_object.cpp
38
int ValueObject::Parse(const std::string &
inString
)
in Parse()
argument
43
int errCode = value_.Parse(
inString
);
in Parse()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H
A
D
json_object.h
37
static uint32_t CalculateNestDepth(const std::string &
inString
, int &errCode);
50
int Parse(const std::string &
inString
);
H
A
D
value_object.h
37
int Parse(const std::string &
inString
);
H
A
D
schema_utils.h
43
static std::string Strip(const std::string &
inString
);
/foundation/deviceprofile/device_info_manager/common/include/utils/
H
A
D
profile_utils.h
106
static bool IsNumStr(const std::string&
inString
);
/foundation/deviceprofile/device_info_manager/common/src/utils/
H
A
D
profile_utils.cpp
753
bool ProfileUtils::IsNumStr(const std::string&
inString
)
in IsNumStr()
argument
755
if (
inString
.empty()) {
in IsNumStr()
756
HILOGE("
inString
is empty");
in IsNumStr()
760
return std::regex_match(
inString
, isNumStrRule);
in IsNumStr()
Completed in 6 milliseconds