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:NumberOfProps
(Results
1 - 17
of
17
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/
H
A
D
js_hclass_test.cpp
128
EXPECT_TRUE(objectClass->
NumberOfProps
() == cloneClass->
NumberOfProps
());
in HWTEST_F_L0()
139
EXPECT_TRUE(objectClass->
NumberOfProps
() == cloneClass->
NumberOfProps
());
in HWTEST_F_L0()
379
EXPECT_EQ(obj0Class->
NumberOfProps
(), 0U);
in HWTEST_F_L0()
397
EXPECT_EQ(newClass->
NumberOfProps
(), 0U);
in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
H
A
D
vtable.cpp
39
uint32_t propsNumber = phcPoint->
NumberOfProps
();
in CreateTuple()
H
A
D
js_hclass.h
1859
ASSERT(
NumberOfProps
() < PropertyAttributes::MAX_FAST_PROPS_CAPACITY);
in IncNumberOfProps()
1860
SetNumberOfProps(
NumberOfProps
() + 1);
in IncNumberOfProps()
1863
inline uint32_t
NumberOfProps
() const
in NumberOfProps()
function in panda::ecmascript::JSHClass
1871
return
NumberOfProps
() > 0;
in HasProps()
1876
return
NumberOfProps
() == 0;
in PropsIsEmpty()
1881
ASSERT(
NumberOfProps
() > 0);
in LastPropIndex()
1882
return
NumberOfProps
() - 1;
in LastPropIndex()
1888
uint32_t numberOfProps =
NumberOfProps
();
in GetNextInlinedPropsIndex()
1898
uint32_t numberOfProps =
NumberOfProps
();
in GetNextNonInlinedPropsIndex()
H
A
D
js_hclass-inl.h
299
SetNumberOfProps(jshclass->
NumberOfProps
());
in Copy()
348
uint32_t propsNumber = hclass->
NumberOfProps
();
in FindPropertyEntry()
H
A
D
js_hclass.cpp
767
if (parentHClass->
NumberOfProps
() <= offset) {
in FindFieldOwnHClass()
1337
uint32_t numOfProps = parent->
NumberOfProps
();
in CreateChildHClassFromPGO()
1377
int element = static_cast<int>(hclass->
NumberOfProps
());
in DumpRootHClassByPGO()
1439
int element = static_cast<int>(hclass->
NumberOfProps
());
in DumpToString()
1519
length += parentHClass->
NumberOfProps
();
in CreateSHClass()
1561
parentLength = parentHClass->
NumberOfProps
();
in CreateSInlinedLayout()
1617
parentLength = parentHClass->
NumberOfProps
();
in CreateSDictLayout()
H
A
D
js_object.cpp
171
uint32_t propNumber = jshclass->
NumberOfProps
();
in TransitionToDictionary()
487
int end = static_cast<int>(obj->GetJSHClass()->
NumberOfProps
());
in GetAllKeys()
511
uint32_t numberOfProps = obj->GetJSHClass()->
NumberOfProps
();
in GetAllKeysByFilter()
535
int end = static_cast<int>(obj->GetJSHClass()->
NumberOfProps
());
in GetAllKeysForSerialization()
569
int end = static_cast<int>(jsHclass->
NumberOfProps
());
in GetAllEnumKeys()
596
int end = static_cast<int>(jsHclass->
NumberOfProps
());
in GetAllEnumKeys()
779
int end = static_cast<int>(GetJSHClass()->
NumberOfProps
());
in GetNumberOfEnumKeys()
801
return GetJSHClass()->
NumberOfProps
();
in GetNumberOfKeys()
1665
int end = static_cast<int>(jsHclass->
NumberOfProps
());
in CollectEnumKeysAlongProtoChain()
1888
uint32_t propNumber = hclass->
NumberOfProps
();
in FreezeSharedObject()
[all...]
H
A
D
dump.cpp
617
int element = static_cast<int>(jshclass->
NumberOfProps
());
in DumpHClass()
663
os << "|
NumberOfProps
:" << std::dec << jshclass->
NumberOfProps
();
in DumpHClass()
1590
int propNumber = static_cast<int>(jshclass->
NumberOfProps
());
in Dump()
3822
int propNumber = static_cast<int>(jshclass->
NumberOfProps
());
in Dump()
4760
int propNumber = static_cast<int>(jshclass->
NumberOfProps
());
in DumpForSnapshot()
H
A
D
object_fast_operator-inl.h
919
uint32_t numberOfProps = objHandle->GetJSHClass()->
NumberOfProps
();
in AddPropertyByName()
H
A
D
object_factory.cpp
524
uint32_t length = std::min(klass->GetInlinedProperties(), klass->
NumberOfProps
());
in CloneObjectLiteral()
643
uint32_t length = std::min(klass->GetInlinedProperties(), klass->
NumberOfProps
());
in CloneObjectLiteral()
755
uint32_t length = std::min(hclass->GetInlinedProperties(), hclass->
NumberOfProps
());
in CloneClassCtor()
/arkcompiler/ets_runtime/ecmascript/compiler/pgo_type/
H
A
D
pgo_type_manager.cpp
75
uint32_t len = hclass->
NumberOfProps
();
in GetSymbolCountFromHClassData()
105
uint32_t len = hclass->
NumberOfProps
();
in GenSymbolInfo()
/arkcompiler/ets_runtime/ecmascript/base/tests/
H
A
D
json_parser_test.cpp
80
for (int idx = 0; idx < static_cast<int>(jsHClass->
NumberOfProps
()); idx++) {
in CheckSendableProps()
H
A
D
ason_test.cpp
72
for (int idx = 0; idx < static_cast<int>(jsHClass->
NumberOfProps
()); idx++) {
in CheckSendableProps()
/arkcompiler/ets_runtime/ecmascript/builtins/
H
A
D
builtins_lazy_callback.cpp
228
uint32_t propsNumber = hclass->
NumberOfProps
();
in ResetLazyInternalAttr()
/arkcompiler/ets_runtime/ecmascript/base/
H
A
D
fast_json_stringifier.cpp
505
int end = static_cast<int>(jsHclass->
NumberOfProps
());
in TryCacheSerializeKeysFromPropertiesArray()
836
int end = static_cast<int>(jsHclass->
NumberOfProps
());
in SerializeKeysFromLayout()
H
A
D
json_stringifier.cpp
734
int end = static_cast<int>(jsHclass->
NumberOfProps
());
in SerializeKeys()
/arkcompiler/ets_runtime/ecmascript/napi/test/
H
A
D
jsnapi_third_tests.cpp
974
uint32_t propCount = obj->GetJSHClass()->
NumberOfProps
();
in HWTEST_F_L0()
1056
uint32_t propCount = obj->GetJSHClass()->
NumberOfProps
();
in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
H
A
D
class_info_extractor.cpp
1044
auto baseLength = baseIHClass->
NumberOfProps
();
in DefineSendableInstanceHClass()
Completed in 44 milliseconds