Searched full:protected (Results 1 – 25 of 320) sorted by relevance
12345678910>>...13
| /arkcompiler/ets_frontend/ts2panda/src/function/ |
| D | functionBuilder.ts | 34 protected pg: PandaGen | undefined = undefined; 35 protected funcObj: VReg | undefined = undefined; 36 protected resumeVal: VReg | undefined = undefined; 37 protected resumeType: VReg | undefined = undefined; 38 protected beginLabel: Label | undefined = undefined; 39 protected endLabel: Label | undefined = undefined;
|
| /arkcompiler/ets_frontend/ts2panda/src/ |
| D | scope.ts | 92 protected debugTag = "scope"; 93 protected name2variable: Map<string, Variable> = new Map<string, Variable>(); 94 protected decls: Decl[] = []; 95 protected parent: Scope | undefined = undefined; 97 protected startInsIdx: number | undefined; 98 protected endInsIdx: number | undefined; 302 protected startLexIdx: number = 0; 303 protected needCreateLexEnv: boolean = false; 304 protected parameters: LocalVariable[] = []; 305 protected useArgs = false; [all …]
|
| /arkcompiler/runtime_core/verification/ |
| D | verification.yaml | 20 protected_field: Access to the protected object field is prohibited. 21 package_field: Access to the package protected object field is prohibited. 23 … protected_method: Call to protected methods from non-descendants of object class is prohibited. 25 package_method: Call to protected methods from non-descendants of object class is prohibited. 49 - protected 84 protected_field: protected 99 protected_method: protected
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | parallel_marker.h | 52 protected: 88 protected: 106 protected: 131 protected: 155 protected:
|
| /arkcompiler/ets_frontend/ts2panda/src/base/ |
| D | typeSystem.ts | 147 PROTECTED 161 protected typeChecker = TypeChecker.getInstance(); 162 protected typeRecorder = TypeRecorder.getInstance(); 164 protected transferType2Literal(type: number, literals: Array<Literal>) { 173 protected addCurrentType(node: ts.Node, index: number) { 177 protected setVariable2Type(variableNode: ts.Node, index: number) { 181 protected tryGetTypeIndex(typeNode: ts.Node) { 185 protected getOrCreateRecordForDeclNode(typeNode: ts.Node, variableNode?: ts.Node) { 189 …protected getOrCreateRecordForTypeNode(typeNode: ts.TypeNode | undefined, variableNode?: ts.Node) { 193 protected getIndexFromTypeArrayBuffer(type: BaseType): number { [all …]
|
| /arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
| D | test-ts-parameter-property.ts | 23 protected c, 27 protected readonly g,
|
| D | test-class-definition.ts | 25 protected *[1]() { } 31 protected set m(b: number) { };
|
| D | test-class-definiton16.ts | 19 protected set 5(k) { }
|
| /arkcompiler/ets_runtime/test/typeinfer/parainfer_class/ |
| D | parainfer_class.ts | 19 protected name: string 20 protected age: number
|
| /arkcompiler/runtime_core/plugins/ecmascript/assembler/extension/ |
| D | ecmascript_meta.h | 50 protected: 95 protected: 140 protected: 185 protected:
|
| /arkcompiler/runtime_core/verification/util/ |
| D | flags.h | 42 protected: 95 protected: 130 protected:
|
| D | enum_tag.h | 29 protected: 48 protected:
|
| D | optional_ref.h | 85 protected: 140 // makes the inherited protected constructor public
|
| D | saturated_enum.h | 68 protected: 131 protected:
|
| /arkcompiler/ets_frontend/es2panda/ir/ts/ |
| D | tsParameterProperty.cpp | 35 … : accessibility_ == AccessibilityOption::PROTECTED ? "protected" : "undefined"}, in Dump()
|
| /arkcompiler/runtime_core/tests/verifier-tests/ |
| D | access_field_nomodifier_core.pa | 22 # // Expected VerificationError: Access to the package protected object field is prohibited. 35 # protected Y Y Y N
|
| /arkcompiler/ets_frontend/es2panda/util/ |
| D | workerQueue.h | 39 protected: 57 protected:
|
| /arkcompiler/ets_frontend/es2panda/compiler/base/ |
| D | iterators.h | 67 protected: 102 protected:
|
| /arkcompiler/runtime_core/assembler/ |
| D | meta.h | 148 protected: 219 protected: 502 protected: 538 protected: 569 protected: 584 protected:
|
| /arkcompiler/runtime_core/runtime/ |
| D | string_table.h | 69 protected: 97 protected: 133 protected:
|
| /arkcompiler/runtime_core/libpandafile/tests/ |
| D | panda_cache_test.cpp | 130 protected: 140 protected: 161 protected: 188 protected:
|
| /arkcompiler/runtime_core/irtoc/backend/ |
| D | compilation_unit.h | 84 protected: 105 protected:
|
| /arkcompiler/ets_frontend/es2panda/ir/ |
| D | astNode.h | 68 PROTECTED = 1 << 3, enumerator 75 ACCESS = PUBLIC | PROTECTED | PRIVATE, 292 protected: in AST_NODE_REINTERPRET_MAPPING()
|
| /arkcompiler/runtime_core/runtime/tooling/inspector/ |
| D | endpoint.h | 54 protected: 76 protected:
|
| /arkcompiler/runtime_core/verification/gen/templates/ |
| D | lang_specifics.h.erb | 68 } else if (x->flags[T::Flag::PROTECTED]) { 69 return AccessModifier::PROTECTED;
|
12345678910>>...13