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:VERIFIED_OK
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/runtime_core/static_core/verification/
H
A
D
public.cpp
145
if (stage == VStage::
VERIFIED_OK
) {
in CheckBeforeVerification()
222
method->SetVerificationStage(VStage::
VERIFIED_OK
);
in Verify()
/arkcompiler/runtime_core/static_core/runtime/
H
A
D
method.cpp
473
return stage == VerificationStage::
VERIFIED_OK
|| stage == VerificationStage::VERIFIED_FAIL;
in IsVerified()
481
SetVerificationStage(result ? VerificationStage::
VERIFIED_OK
: VerificationStage::VERIFIED_FAIL);
in SetVerified()
494
// set
VERIFIED_OK
status in order not to go into Method::Verify() anymore,
in Verify()
497
SetVerificationStage(VerificationStage::
VERIFIED_OK
);
in Verify()
H
A
D
compiler.h
289
methodPtr->GetVerificationStage() != Method::VerificationStage::
VERIFIED_OK
) {
/arkcompiler/runtime_core/static_core/runtime/include/
H
A
D
method.h
78
enum class VerificationStage { NOT_VERIFIED = 0, VERIFIED_FAIL = 1,
VERIFIED_OK
= 2, LAST =
VERIFIED_OK
};
member in ark::Method::VerificationStage
H
A
D
method-inl.h
523
if (!IsIntrinsic() && (GetVerificationStage() != Method::VerificationStage::
VERIFIED_OK
)) {
in TryVerify()
Completed in 10 milliseconds