Home
last modified time | relevance | path

Searched refs:GetFlags (Results 1 - 25 of 36) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/
H A Djs_symbol.h63 return (GetFlags() & HAS_ID) != 0U; in HasId()
68 SetFlags(GetFlags() | HAS_ID); in SetHasId()
73 return (GetFlags() & IS_PRIVATE) != 0U; in IsPrivate()
78 SetFlags(GetFlags() | IS_PRIVATE); in SetPrivate()
83 return (GetFlags() & IS_WELL_KNOWN_SYMBOL) != 0U; in IsWellKnownSymbol()
88 SetFlags(GetFlags() | IS_WELL_KNOWN_SYMBOL); in SetWellKnownSymbol()
93 return (GetFlags() & IS_IN_PUBLIC_SYMBOL_TABLE) != 0U; in IsInPublicSymbolTable()
98 SetFlags(GetFlags() | IS_IN_PUBLIC_SYMBOL_TABLE); in SetInPublicSymbolTable()
103 return (GetFlags() & IS_INTERESTING_SYMBOL) != 0U; in IsInterestingSymbol()
108 SetFlags(GetFlags() | IS_INTERESTING_SYMBO in SetInterestingSymbol()
[all...]
/arkcompiler/runtime_core/static_core/runtime/include/
H A Dhclass.h49 return (GetFlags() & IS_FREE_OBJECT) != 0; in IsFreeObject()
54 return (GetFlags() & NATIVE_POINTER) != 0; in IsNativePointer()
59 return (GetFlags() & ARRAY) != 0; in IsArray()
64 return (GetFlags() & STRING) != 0; in IsString()
69 return (GetFlags() & HCLASS) != 0; in IsHClass()
74 return (BaseClass::GetFlags() & IS_DICTIONARY_ARRAY) != 0U; in IsDictionary()
79 return (BaseClass::GetFlags() & IS_BUILTINS_CTOR) != 0U; in IsBuiltinsConstructor()
84 return (BaseClass::GetFlags() & IS_CALLABLE) != 0U; in IsCallable()
H A Dclass.h50 uint32_t GetFlags() const in GetFlags() function in ark::BaseClass
355 return (GetFlags() & STRING_CLASS) != 0; in IsStringClass()
360 SetFlags(GetFlags() | STRING_CLASS); in SetStringClass()
365 SetFlags(GetFlags() | IS_CLONEABLE); in SetCloneable()
/arkcompiler/runtime_core/platforms/unix/libpandabase/
H A Dfile.cpp25 static int GetFlags(Mode mode) in GetFlags() function
52 return File(open(filename.data(), GetFlags(mode), PERM)); in Open()
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/
H A Dfile.cpp26 static int GetFlags(Mode mode) in GetFlags() function
53 return File(open(filename.data(), GetFlags(mode), perm)); in Open()
/arkcompiler/runtime_core/platforms/windows/libpandabase/
H A Dfile.cpp30 static int GetFlags(Mode mode) in GetFlags() function
57 _sopen_s(&fh, filename.data(), GetFlags(mode), _SH_DENYNO, PERM); in Open()
/arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/
H A Dfile.cpp30 static int GetFlags(Mode mode) in GetFlags() function
57 _sopen_s(&fh, filename.data(), GetFlags(mode), _SH_DENYNO, PERM); in Open()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
H A Dets_class.h406 uint32_t GetFlags() const in GetFlags() function in ark::ets::EtsClass
437 return (GetFlags() & IS_VALUE_TYPED) != 0; in IsValueTyped()
442 return (GetFlags() & IS_UNDEFINED) != 0; in IsUndefined()
447 return (GetFlags() & IS_BOXED) != 0; in IsBoxed()
452 return (GetFlags() & IS_FUNCTION) != 0; in IsFunction()
457 return (GetFlags() & IS_BIGINT) != 0; in IsBigInt()
H A Dets_class.cpp446 flags |= superClass->GetFlags() & COPIED_MASK; in Initialize()
/arkcompiler/ets_runtime/ecmascript/jobs/
H A Dhitrace_scope.cpp32 pendingJob->SetFlags(childId.GetFlags()); in EnqueueJobScope()
63 hitraceId_.SetFlags(pendingJob->GetFlags()); in ExecuteJobScope()
/arkcompiler/runtime_core/static_core/runtime/tests/
H A Dclass_linker_test.cpp201 EXPECT_EQ(klass->GetFlags(), 0U) << msg; in TestPrimitiveClassRoot()
262 EXPECT_EQ(klass->GetFlags(), 0U) << msg; in TestArrayClassRoot()
302 EXPECT_EQ(classClass->GetFlags(), 0U); in TEST_F()
317 EXPECT_EQ(objectClass->GetFlags(), 0U); in TEST_F()
331 EXPECT_EQ(stringClass->GetFlags(), Class::STRING_CLASS); in TEST_F()
/arkcompiler/ets_frontend/ets2panda/checker/types/
H A Dsignature.h252 [[nodiscard]] SignatureFlags GetFlags() const noexcept
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H A Dbuiltins_regexp_stub_builder.cpp21 void BuiltinsRegExpStubBuilder::GetFlags(GateRef glue, GateRef thisValue, in GetFlags() function in panda::ecmascript::kungfu::BuiltinsRegExpStubBuilder
H A Dbuiltins_call_signature.h167 V(GetFlags, RegExp, Undefined())
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/assembler/
H A Delf_file.h101 Xword GetFlags() const in GetFlags() function in assembler::Section
/arkcompiler/runtime_core/static_core/runtime/hotreload/
H A Dhotreload.cpp316 if (tmpClass->GetFlags() != runtimeClass->GetFlags()) { in FlagsChangesCheck()
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dbytecodes.h255 return (GetFlags() & flag) == flag; in HasFlag()
258 inline BytecodeFlags GetFlags() const in GetFlags() function in panda::ecmascript::kungfu::BytecodeMetaData
H A Dshare_gate_meta_data.h229 return (GetFlags() & flag) == flag; in HasFlag()
232 GateFlags GetFlags() const in GetFlags() function in panda::ecmascript::kungfu::GateMetaData
H A Dgate_meta_data_builder.h162 auto meta = new (chunk_) GateMetaData(other->opcode_, other->GetFlags(), in NewGateMetaData()
/arkcompiler/ets_runtime/ecmascript/dfx/dump_code/
H A Djit_dump_elf.h105 maplebe::Xword GetFlags() const in GetFlags() function in panda::ecmascript::Section
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_regexp.h48 static JSTaggedValue GetFlags(EcmaRuntimeCallInfo *argv);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
H A Difile.h163 Word GetFlags() const in GetFlags() function in maplebe::Section
H A Dobj_emit.h458 if ((section->GetFlags() & SHF_ALLOC) != 0) { in UpdateGlobalOffsetAddr()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/
H A Dets_class_file_test.cpp806 ASSERT_EQ(klass->GetFlags(), flags); in TEST_F()
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
H A Dbuiltins_regexp_test.cpp195 HWTEST_F_L0(BuiltinsRegExpTest, GetFlags) in HWTEST_F_L0()
203 // invoke GetFlags method in HWTEST_F_L0()
607 // invoke GetFlags method in HWTEST_F_L0()

Completed in 21 milliseconds

12