/arkcompiler/runtime_core/libpandabase/tests/ |
D | small_vector_test.cpp | 58 ASSERT_TRUE(vector.IsStatic()); in TestVectorGrow() 65 ASSERT_TRUE(vector.IsStatic()); in TestVectorGrow() 70 ASSERT_FALSE(vector.IsStatic()); in TestVectorGrow() 76 ASSERT_FALSE(vector.IsStatic()); in TestVectorGrow() 101 ASSERT_TRUE(vector.IsStatic()); in TestVectorIteration() 132 ASSERT_FALSE(vector.IsStatic()); in TestVectorIteration() 211 ASSERT_TRUE(vector.IsStatic()); in TEST_F() 213 ASSERT_FALSE(vector.IsStatic()); in TEST_F() 229 ASSERT_TRUE(vector.IsStatic()); in TEST_F() 253 ASSERT_FALSE(vector.IsStatic()); in TEST_F() [all …]
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | small_vector.h | 237 if (other.IsStatic()) { in SmallVector() 253 if (other.IsStatic()) { in SmallVector() 282 if (other.IsStatic()) { 302 if (other.IsStatic()) { 401 return IsStatic() ? buffer_.data.data() : vector_.data(); in data() 407 return IsStatic() ? buffer_.size : vector_.size(); in size() 413 return IsStatic() ? buffer_.data.size() : vector_.capacity(); in capacity() 452 if (IsStatic()) { in reserve() 465 if (IsStatic()) { in resize() 491 if (IsStatic()) { in resize() [all …]
|
/arkcompiler/ets_frontend/es2panda/ir/base/ |
D | classDefinition.cpp | 170 compiler::LiteralBuffer *literalBuf = prop->IsStatic() ? &staticBuf : buf; in CreateClassStaticProperties() 171 auto &nameMap = prop->IsStatic() ? staticPropNameMap : propNameMap; in CreateClassStaticProperties() 180 if (!prop->IsStatic()) { in CreateClassStaticProperties() 253 compiler::VReg dest = prop->IsStatic() ? classReg : protoReg; in CompileMissingProperties()
|
D | classProperty.h | 84 bool IsStatic() const in IsStatic() function
|
D | classProperty.cpp | 90 if (!IsStatic()) { in UpdateSelf()
|
D | methodDefinition.h | 99 bool IsStatic() const in IsStatic() function
|
/arkcompiler/ets_frontend/es2panda/ir/ts/ |
D | tsParameterProperty.h | 57 bool IsStatic() const in IsStatic() function
|
/arkcompiler/runtime_core/libpandafile/ |
D | field_data_accessor.h | 69 bool IsStatic() const in IsStatic() function
|
D | method_data_accessor.h | 49 bool IsStatic() const in IsStatic() function
|
D | debug_info_extractor.cpp | 217 if (first_param && !mda.IsStatic()) { in Extract()
|
D | method_data_accessor-inl.h | 318 if (!IsStatic() && !skip_this) { in EnumerateTypesInProto()
|
D | file_items.h | 737 bool IsStatic() const in IsStatic() function
|
/arkcompiler/runtime_core/disassembler/templates/ |
D | bc_ins_to_pandasm_ins.cpp.erb | 75 if (mda.IsStatic()) {
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
D | function.cpp | 136 if (prop->IsStatic()) { in CompileInstanceFields()
|
D | pandagen.cpp | 248 if (!method->AsMethodDefinition()->IsStatic()) { in CopyFunctionArguments()
|
/arkcompiler/runtime_core/assembler/ |
D | assembly-function.h | 149 bool IsStatic() const in IsStatic() function
|
D | assembly-emitter.cpp | 1131 size_t param_idx = method->IsStatic() ? proto_idx : proto_idx + 1; in AddMethodAndParamsAnnotations()
|
/arkcompiler/ets_frontend/es2panda/parser/transformer/ |
D | transformer.cpp | 591 …if (it->IsClassProperty() && !it->AsClassProperty()->IsStatic() && it->AsClassProperty()->Value() … in VisitInstanceProperty() 708 if (!classProperty->IsStatic()) { in VisitStaticProperty() 770 bool isStatic = definition->IsStatic(); in VisitClassDeclaration() 799 bool isStatic = classProperty->IsStatic(); in VisitClassDeclaration() 2131 … (childNode->AsClassProperty()->IsStatic() || childNode->AsClassProperty()->Value() != nullptr)) { in CheckTransformedAstNode()
|
/arkcompiler/runtime_core/disassembler/ |
D | disassembler.cpp | 660 if (!method_accessor.IsStatic()) { in GetMetaData() 723 if (field_accessor.IsStatic()) { in GetMetaData()
|
/arkcompiler/ets_frontend/es2panda/typescript/extractor/ |
D | typeSystem.h | 537 if (methodDef->IsStatic()) { in FillMethodModifier()
|
/arkcompiler/ets_frontend/es2panda/parser/ |
D | parserImpl.cpp | 2782 if (property->Kind() != overload->Kind() || property->IsStatic() != overload->IsStatic()) { in IsMethodDefinitionsAreSame()
|