Home
last modified time | relevance | path

Searched refs:READONLY (Results 1 – 24 of 24) sorted by relevance

/arkcompiler/ets_frontend/es2panda/ir/expressions/
DmemberExpression.cpp125 if (prop->HasFlag(binder::VariableFlags::READONLY)) { in Check()
126 propType->AddTypeFlag(checker::TypeFlag::READONLY); in Check()
138 indexType->AddTypeFlag(checker::TypeFlag::READONLY); in Check()
DunaryExpression.cpp145 if (propType->Variable()->HasFlag(binder::VariableFlags::READONLY)) { in Check()
DassignmentExpression.cpp192 if (leftType->HasTypeFlag(checker::TypeFlag::READONLY)) { in Check()
DobjectExpression.cpp604 propFlags |= binder::VariableFlags::READONLY; in GetFlagsForProperty()
668 memberVar->AddFlag(binder::VariableFlags::READONLY); in Check()
DarrayExpression.cpp250 tupleMember->AddFlag(binder::VariableFlags::READONLY); in Check()
/arkcompiler/ets_frontend/es2panda/ir/
DastNode.h71 READONLY = 1 << 6, enumerator
76 ALL = STATIC | ASYNC | ACCESS | DECLARE | READONLY | ABSTRACT,
77 ALLOWED_IN_CTOR_PARAMETER = ACCESS | READONLY,
97 enum class TSOperatorType { READONLY, KEYOF, UNIQUE }; enumerator
DastDump.cpp75 if (operatorType == TSOperatorType::READONLY) { in TypeOperatorToString()
/arkcompiler/ets_frontend/es2panda/typescript/types/
DtupleType.h47 it->AddFlag(binder::VariableFlags::READONLY); in TupleType()
64 it->AddFlag(binder::VariableFlags::READONLY); in TupleType()
DobjectLiteralType.cpp52 if (it->HasFlag(binder::VariableFlags::READONLY)) { in ToString()
DtypeFlag.h59 READONLY = 1ULL << 33, enumerator
/arkcompiler/runtime_core/platforms/unix/libpandabase/
Dfile.cpp28 case Mode::READONLY: in GetFlags()
Dnative_stack.cpp27 …::os::unix::file::File cmdfile = panda::os::file::Open(file_name, panda::os::file::Mode::READONLY); in ReadOsFile()
/arkcompiler/runtime_core/libpandabase/os/
Dfile.h55 enum class Mode : uint32_t { READONLY, WRITEONLY, READWRITE, READWRITECREATE }; enumerator
/arkcompiler/runtime_core/libpandabase/tests/
Dunix_file_test.cpp28 os::file::File file1 = os::file::Open("./test_openfile.txt", os::file::Mode::READONLY);
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsTypeOperator.h46 return operatorType_ == TSOperatorType::READONLY; in IsReadonly()
/arkcompiler/runtime_core/platforms/windows/libpandabase/
Dfile.cpp33 case Mode::READONLY: in GetFlags()
/arkcompiler/ets_frontend/es2panda/ir/base/
DclassProperty.cpp55 {"readonly", (modifiers_ & ModifierFlags::READONLY) != 0}, in Dump()
/arkcompiler/ets_frontend/es2panda/binder/
Dvariable.cpp27 flags_ |= VariableFlags::READONLY; in LocalVariable()
DvariableFlags.h117 READONLY = 1 << 6, enumerator
/arkcompiler/ets_frontend/es2panda/typescript/core/
Dobject.cpp420 if (prop->HasFlag(binder::VariableFlags::READONLY)) { in GetPropertyTypeForIndexType()
421 propType->AddTypeFlag(TypeFlag::READONLY); in GetPropertyTypeForIndexType()
435 indexInfoType->AddTypeFlag(TypeFlag::READONLY); in GetPropertyTypeForIndexType()
/arkcompiler/ets_frontend/ts2panda/src/base/
DtypeSystem.ts141 READONLY
365 fieldInfo[2] = ModifierReadonly.READONLY;
868 fieldInfo[2] = ModifierReadonly.READONLY;
/arkcompiler/ets_frontend/es2panda/parser/
DparserImpl.cpp808 auto *typeOperator = AllocNode<ir::TSTypeOperator>(type, ir::TSOperatorType::READONLY); in ParseTsTypeOperatorOrTypeReference()
1440 flags |= binder::VariableFlags::READONLY; in ParseTsTypeLiteralOrInterfaceMember()
1994 … nextStatus = ir::ModifierFlags::ASYNC | ir::ModifierFlags::STATIC | ir::ModifierFlags::READONLY | in ParseModifiers()
2000 … nextStatus = ir::ModifierFlags::ASYNC | ir::ModifierFlags::STATIC | ir::ModifierFlags::READONLY | in ParseModifiers()
2006 … nextStatus = ir::ModifierFlags::ASYNC | ir::ModifierFlags::STATIC | ir::ModifierFlags::READONLY | in ParseModifiers()
2012 … nextStatus = ir::ModifierFlags::ASYNC | ir::ModifierFlags::READONLY | ir::ModifierFlags::DECLARE | in ParseModifiers()
2018 …nextStatus = ir::ModifierFlags::READONLY | ir::ModifierFlags::DECLARE | ir::ModifierFlags::ABSTRAC… in ParseModifiers()
2024 ir::ModifierFlags::READONLY | ir::ModifierFlags::DECLARE; in ParseModifiers()
2030 ir::ModifierFlags::READONLY; in ParseModifiers()
2034 actualStatus = ir::ModifierFlags::READONLY; in ParseModifiers()
[all …]
/arkcompiler/runtime_core/libpandafile/
Dfile.cpp57 return os::file::Mode::READONLY; in GetMode()
63 return os::file::Mode::READONLY; in GetMode()
/arkcompiler/ets_frontend/es2panda/typescript/extractor/
DtypeSystem.h710 auto isReadonly = (modifiers & ir::ModifierFlags::READONLY); in FillField()