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:IsAccessorData
(Results
1 - 12
of
12
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/
H
A
D
accessor_data_test.cpp
44
EXPECT_TRUE(JSTaggedValue(accObject).
IsAccessorData
());
in HWTEST_F_L0()
46
EXPECT_TRUE(JSTaggedValue(acc).
IsAccessorData
());
in HWTEST_F_L0()
H
A
D
object_operator_third_test.cpp
136
EXPECT_TRUE(resultDict->GetValue(resultEntry).
IsAccessorData
());
in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
H
A
D
accessor_data.h
52
ASSERT(JSTaggedValue(object).
IsAccessorData
() || JSTaggedValue(object).IsInternalAccessor());
in Cast()
H
A
D
js_object-inl.h
147
inline bool JSObject::
IsAccessorData
() const
in IsAccessorData()
function in panda::ecmascript::JSObject
149
return GetJSHClass()->
IsAccessorData
();
in IsAccessorData()
H
A
D
js_tagged_value-inl.h
946
inline bool JSTaggedValue::
IsAccessorData
() const
in IsAccessorData()
function in panda::ecmascript::JSTaggedValue
948
return IsHeapObject() && GetTaggedObject()->GetClass()->
IsAccessorData
();
in IsAccessorData()
960
return jshclass->
IsAccessorData
() || jshclass->IsInternalAccessor();
in IsAccessor()
H
A
D
js_tagged_value.h
559
bool
IsAccessorData
() const;
H
A
D
js_object.h
631
bool
IsAccessorData
() const;
H
A
D
js_hclass.h
1289
inline bool
IsAccessorData
() const
in IsAccessorData()
function in panda::ecmascript::JSHClass
H
A
D
object_factory.cpp
648
if (!layout->GetAttr(i).IsTaggedRep() || (!value.IsJSFunction() && !value.
IsAccessorData
())) {
in CloneObjectLiteral()
657
if (value.
IsAccessorData
()) {
in CloneObjectLiteral()
H
A
D
js_object.cpp
2670
if (value->
IsAccessorData
()) {
in DefinePropertyByLiteral()
/arkcompiler/ets_runtime/ecmascript/ic/
H
A
D
ic_runtime_stub-inl.h
410
if (cell->IsInvalid() || cell->GetValue().
IsAccessorData
()) {
in LoadGlobal()
414
ASSERT(!ret.
IsAccessorData
());
in LoadGlobal()
423
if (cell->IsInvalid() || cell->GetValue().
IsAccessorData
()) {
in StoreGlobal()
426
ASSERT(!cell->GetValue().
IsAccessorData
());
in StoreGlobal()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
H
A
D
class_info_extractor.cpp
780
} else if (propValue->
IsAccessorData
()) {
in DefineSendableClassFromExtractor()
806
} else if (propValue->
IsAccessorData
()) {
in DefineSendableClassFromExtractor()
907
} else if (propValue->
IsAccessorData
()) {
in BuildSendableDictionaryProperties()
1112
ASSERT(value->
IsAccessorData
());
in UpdateAccessorFunction()
1134
if (existValue->
IsAccessorData
()) {
in TryUpdateExistValue()
Completed in 32 milliseconds