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:ErrorValue
(Results
1 - 7
of
7
) sorted by relevance
/base/update/updater/services/script/script_interpreter/
H
A
D
script_function.cpp
39
return std::make_shared<
ErrorValue
>(USCRIPT_ERROR_CREATE_OBJ);
in Execute()
46
return std::make_shared<
ErrorValue
>(USCRIPT_ERROR_INTERPRET);
in Execute()
52
return std::make_shared<
ErrorValue
>(USCRIPT_ERROR_INTERPRET);
in Execute()
62
return std::make_shared<
ErrorValue
>(USCRIPT_NOTEXIST_INSTRUCTION);
in Execute()
67
return std::make_shared<
ErrorValue
>(USCRIPT_NOTEXIST_INSTRUCTION);
in Execute()
H
A
D
script_interpreter.cpp
123
return std::make_shared<
ErrorValue
>(USCRIPT_NOTEXIST_INSTRUCTION);
in ExecuteFunction()
174
std::shared_ptr<
ErrorValue
> error = std::make_shared<
ErrorValue
>(USCRIPT_ERROR_INTERPRET);
in ExecuteNativeFunc()
H
A
D
script_context.h
165
class
ErrorValue
: public UScriptValue {
class
167
explicit
ErrorValue
(int32_t retCode) : UScriptValue(UScriptValue::VALUE_TYPE_ERROR), retCode_(retCode) {}
in ErrorValue()
function in Uscript::ErrorValue
168
~
ErrorValue
() override {}
H
A
D
script_context.cpp
167
return std::make_shared<
ErrorValue
>(USCRIPT_ERROR_INTERPRET);
in Computer()
242
UScriptValuePtr retValue = std::make_shared<
ErrorValue
>(USCRIPT_ERROR_INTERPRET);
in Computer()
354
UScriptValuePtr retValue = std::make_shared<
ErrorValue
>(USCRIPT_ERROR_INTERPRET);
456
return std::make_shared<
ErrorValue
>(USCRIPT_ERROR_INTERPRET);
in ComputerReturn()
462
UScriptValuePtr defReturn = std::make_shared<
ErrorValue
>(USCRIPT_ERROR_INTERPRET);
in Computer()
522
UScriptValuePtr defReturn = std::make_shared<
ErrorValue
>(USCRIPT_ERROR_INTERPRET);
in Computer()
564
std::string
ErrorValue
::ToString()
in ToString()
H
A
D
script_expression.cpp
149
return std::make_shared<
ErrorValue
>(USCRIPT_ERROR_INTERPRET);
in Execute()
H
A
D
script_statement.cpp
45
SetError(((
ErrorValue
*)value.get())->GetValue());
in UpdateStatementResult()
/base/update/updater/test/unittest/script/
H
A
D
script_interpreter_unittest.cpp
89
std::unique_ptr<
ErrorValue
> ev = std::make_unique<
ErrorValue
>(retCode);
in TestScriptInterpreterScriptValue()
229
ErrorValue
a3(0);
in HWTEST_F()
240
ErrorValue
*a8 = new
ErrorValue
(0);
in HWTEST_F()
Completed in 5 milliseconds