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:string_data
(Results
1 - 7
of
7
) sorted by relevance
/arkcompiler/runtime_core/tests/fuzztest/utf_fuzzer/
H
A
D
utf_fuzzer.cpp
26
const uint8_t*
string_data
= CStringAsMutf8(const_cast<char*>(str.c_str()));
in UtfFuzzTest()
local
31
if (IsValidModifiedUTF8(
string_data
)) {
in UtfFuzzTest()
33
mutf8Less(
string_data
,
string_data
);
in UtfFuzzTest()
/arkcompiler/runtime_core/tests/fuzztest/hashbase_fuzzer/
H
A
D
hashbase_fuzzer.cpp
26
uint8_t*
string_data
= reinterpret_cast<uint8_t*>(const_cast<char*>(str.c_str()));
in HashBaseFuzzTest()
local
28
panda::HashBase<panda::MurmurHash32<seed>>::GetHash32String(
string_data
);
in HashBaseFuzzTest()
/arkcompiler/runtime_core/tests/fuzztest/hash_fuzzer/
H
A
D
hash_fuzzer.cpp
26
uint8_t*
string_data
= reinterpret_cast<uint8_t*>(const_cast<char*>(str.c_str()));
in HashFuzzTest()
local
27
panda::GetHash32String(
string_data
);
in HashFuzzTest()
/arkcompiler/runtime_core/tests/fuzztest/murmur3_fuzzer/
H
A
D
murmur3_fuzzer.cpp
29
uint8_t*
string_data
= reinterpret_cast<uint8_t*>(const_cast<char*>(str.c_str()));
in Murmur3FuzzTest()
local
30
panda::MurmurHash32<seed>::GetHash32StringImpl(
string_data
);
in Murmur3FuzzTest()
/arkcompiler/runtime_core/bytecode_optimizer/
H
A
D
runtime_adapter.h
129
auto
string_data
= panda_file_.GetStringData(mda.GetClassId());
variable
131
return std::string(reinterpret_cast<const char *>(
string_data
.data));
138
auto
string_data
= panda_file_.GetStringData(mda.GetNameId());
variable
140
return std::string(reinterpret_cast<const char *>(
string_data
.data));
/arkcompiler/runtime_core/libpandafile/
H
A
D
file_reader.h
141
std::string
string_data
(reinterpret_cast<const char *>(data.data));
in SetStringFieldValue()
142
auto *string_item = container_.GetOrCreateStringItem(
string_data
);
in SetStringFieldValue()
/arkcompiler/runtime_core/verifier/
H
A
D
verifier.cpp
446
auto
string_data
= file_->GetStringData(panda_file::File::EntityId(id));
in VerifyStringIdInLiteralArray()
local
447
if (
string_data
.data == nullptr) {
in VerifyStringIdInLiteralArray()
451
auto desc = std::string(utf::Mutf8AsCString(
string_data
.data));
in VerifyStringIdInLiteralArray()
454
if (
string_data
.utf16_length != utf16_desc.length()) {
in VerifyStringIdInLiteralArray()
Completed in 3 milliseconds