Searched full:private (Results 1 – 25 of 1118) sorted by relevance
12345678910>>...45
| /arkcompiler/ets_frontend/es2panda/test/ |
| D | test262skiplist.txt | 148 built-ins/Function/prototype/toString/private-method-class-expression.js 149 built-ins/Function/prototype/toString/private-method-class-statement.js 150 built-ins/Function/prototype/toString/private-static-method-class-expression.js 151 built-ins/Function/prototype/toString/private-static-method-class-statement.js 929 language/arguments-object/cls-decl-async-private-gen-meth-args-trailing-comma-multiple.js 930 language/arguments-object/cls-decl-async-private-gen-meth-args-trailing-comma-null.js 931 language/arguments-object/cls-decl-async-private-gen-meth-args-trailing-comma-single-args.js 932 language/arguments-object/cls-decl-async-private-gen-meth-args-trailing-comma-spread-operator.js 933 language/arguments-object/cls-decl-async-private-gen-meth-args-trailing-comma-undefined.js 934 language/arguments-object/cls-decl-async-private-gen-meth-static-args-trailing-comma-multiple.js [all …]
|
| /arkcompiler/ets_frontend/ts2panda/src/statement/ |
| D | labelTarget.ts | 23 private static name2LabelTarget: Map<string, LabelTarget> = new Map<string, LabelTarget>(); 24 private static labelTargetStack: LabelTarget[] = []; 25 private static curLoopLabelTarget: LabelTarget | undefined = undefined; 26 private node: ts.Node; 27 private breakTargetLabel: Label; 28 private continueTargetLabel: Label | undefined; 29 private preLoopLabelTarget: LabelTarget | undefined = undefined; 30 private hasLoopEnv: boolean; 31 private loopEnvLevel: number; 32 private tryStatement: TryStatement | undefined; [all …]
|
| D | tryStatement.ts | 54 private beginLabel: Label; 55 private endLabel: Label; 72 private labelPairs: LabelPair[] = []; 73 private catchBeginLabel: Label; 74 private depth: number; 108 private static currentTryStatement: TryStatement | undefined; 109 private static currentTryStatementDepth: number = 0; 110 private outer: TryStatement | undefined; 111 private stmt: ts.Statement; 112 private catchTable: CatchTable; [all …]
|
| /arkcompiler/runtime_core/runtime/include/ |
| D | thread.h | 116 private: 196 private: 325 bool is_compiled_frame_ {false}; // NOLINT(misc-non-private-member-variables-in-classes) 326 // NOLINTNEXTLINE(misc-non-private-member-variables-in-classes) 328 ThreadId internal_id_ {0}; // NOLINT(misc-non-private-member-variables-in-classes) 330 …EntrypointsTable entrypoints_ {}; // NOLINT(misc-non-private-member-variables-in-… 331 …void *object_ {nullptr}; // NOLINT(misc-non-private-member-variables-in-… 332 …Frame *frame_ {nullptr}; // NOLINT(misc-non-private-member-variables-in-… 333 …ObjectHeader *exception_ {nullptr}; // NOLINT(misc-non-private-member-variables-in-… 334 …uintptr_t native_pc_ {}; // NOLINT(misc-non-private-member-variables-in-… [all …]
|
| /arkcompiler/toolchain/tooling/base/ |
| D | pt_returns.h | 31 private: 43 private: 60 private: 78 private: 96 private: 113 private: 130 private: 145 private: 161 private: 176 private: [all …]
|
| D | pt_params.h | 31 private: 53 private: 77 private: 126 private: 147 private: 166 private: 190 private: 209 private: 227 private: 300 private: [all …]
|
| /arkcompiler/ets_frontend/ts2panda/src/ |
| D | debuginfo.ts | 35 private bl: number | undefined; // bound left 36 private br: number | undefined; // bound right 37 private l: number = -1; // line number 38 private c: number = -1; // column number 39 private nodeKind: NodeKind | undefined = NodeKind.FirstNodeOfFunction; 94 private n = ""; // name 96 private v: Variable | undefined; // variables 98 private s = ""; // signature 100 private st = ""; // signature type 102 private r: number = -1; [all …]
|
| D | modules.ts | 22 private node: ts.Node 23 private moduleRequest: string; 24 private namespace: string = ""; 25 private bingdingNameMap: Map<string, string> = new Map<string, string>(); 26 private bingdingNodeMap: Map<ts.Node, ts.Node> = new Map<ts.Node, ts.Node>(); 27 private isCopy: boolean = true;
|
| D | typeRecorder.ts | 25 private static instance: TypeRecorder; 26 private type2Index: Map<ts.Node, number> = new Map<ts.Node, number>(); 27 private variable2Type: Map<ts.Node, number> = new Map<ts.Node, number>(); 28 private userDefinedTypeSet: Set<number> = new Set<number>();; 29 private typeSummary: TypeSummary = new TypeSummary(); 30 private class2InstanceMap: Map<number, number> = new Map<number, number>(); 31 private builtinContainer2InstanceMap: Map<object, number> = new Map<object, number>(); 32 private arrayTypeMap: Map<number, number> = new Map<number, number>(); 33 private unionTypeMap: Map<string, number> = new Map<string, number>(); 34 private exportedType: Map<string, number> = new Map<string, number>(); [all …]
|
| D | compiler.ts | 131 private debugTag = "compiler"; 132 private rootNode: ts.SourceFile | ts.FunctionLikeDeclaration; 133 private pandaGen: PandaGen; 134 private scope: Scope; 135 private compilerDriver: CompilerDriver; 136 private funcBuilder: FunctionBuilder; 137 private recorder: Recorder; 138 private envUnion: Array<VReg> = new Array<VReg>(); 185 private storeFuncObj2LexEnvIfNeeded() { 202 private compileLexicalBindingForArrowFunction() { [all …]
|
| D | recorder.ts | 63 private scopeMap: Map<ts.Node, Scope> = new Map<ts.Node, Scope>(); 64 private hoistMap: Map<Scope, Decl[]> = new Map<Scope, Decl[]>(); 65 …private parametersMap: Map<ts.FunctionLikeDeclaration, FunctionParameter[]> = new Map<ts.FunctionL… 66 private funcNameMap: Map<string, number>; 67 …private class2Ctor: Map<ts.ClassLikeDeclaration, ts.ConstructorDeclaration> = new Map<ts.ClassLike… 68 private isTsFile: boolean; 70 private importStmts: Array<ModuleStmt> = []; 71 private exportStmts: Array<ModuleStmt> = []; 72 private syntaxCheckStatus: boolean; 102 private setParent(node: ts.Node) { [all …]
|
| D | variable.ts | 33 private vreg: VReg | undefined; 34 private name: string; 35 private typeIndex: number; 146 private isExport: boolean = false; 147 private status: InitStatus | null; 148 private index: number;
|
| D | compilerDriver.ts | 72 private fileName: string; 73 private recordName: string; 74 private passes: Pass[] = []; 75 private compilationUnits: PandaGen[]; 77 private functionId: number = 1; // 0 reserved for main 78 private funcIdMap: Map<ts.Node, number> = new Map<ts.Node, number>(); 79 private statistics: CompilerStatistics | undefined; 80 private needDumpHeader: boolean = true; 81 private ts2abcProcess: any = undefined; 253 private compileImpl(node: ts.SourceFile | ts.FunctionLikeDeclaration, scope: Scope, [all …]
|
| /arkcompiler/runtime_core/verification/ |
| D | verification.yaml | 19 private_field: Access to the private object field is prohibited. 22 private_method: Call to a private method is prohibited. 24 protected_class: Access to package-private class is prohibited. 51 - private 78 private_field: private 81 private_field: private 83 private_field: private 93 private_method: private 96 private_method: private 98 private_method: private
|
| /arkcompiler/runtime_core/runtime/mem/gc/ |
| D | gc_trigger.h | 92 private: 119 HeapSpace *heap_space_ {nullptr}; // NOLINT(misc-non-private-member-variables-in-classes) 120 private: 153 // NOLINTNEXTLINE(misc-non-private-member-variables-in-classes) 160 …uint8_t percent_threshold_ {DEFAULT_PERCENTAGE_THRESHOLD}; // NOLINT(misc-non-private-member-vari… 161 …size_t min_extra_size_ {DEFAULT_MIN_EXTRA_HEAP_SIZE}; // NOLINT(misc-non-private-member-vari… 162 …size_t max_extra_size_ {DEFAULT_MAX_EXTRA_HEAP_SIZE}; // NOLINT(misc-non-private-member-vari… 164 private: 184 private: 209 private: [all …]
|
| /arkcompiler/runtime_core/compiler/optimizer/code_generator/ |
| D | slow_path.h | 71 private: 114 private: 123 private: 148 private: 178 private: 199 private: 212 private: 228 private: 260 private:
|
| /arkcompiler/runtime_core/compiler/optimizer/ir_builder/ |
| D | ir_builder.h | 46 …Boundaries boundaries {}; // NOLINT(misc-non-private-member-variables-in… 47 …BasicBlock *begin_bb {nullptr}; // NOLINT(misc-non-private-member-variables-in… 48 …BasicBlock *end_bb {nullptr}; // NOLINT(misc-non-private-member-variables-in… 49 …ArenaVector<CatchCodeBlock> *catches {nullptr}; // NOLINT(misc-non-private-member-variables-in… 50 …ArenaVector<BasicBlock *> *basic_blocks {nullptr}; // NOLINT(misc-non-private-member-variables-in… 51 …uint32_t id {INVALID_ID}; // NOLINT(misc-non-private-member-variables-in… 52 …bool contains_throwable_inst {false}; // NOLINT(misc-non-private-member-variables-in… 101 private: 144 private:
|
| /arkcompiler/ets_frontend/es2panda/aot/ |
| D | CMakeLists.txt | 21 target_include_directories(es2panda PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}) 25 PRIVATE -fPIC 30 PRIVATE -Werror=shadow 44 "-misc-non-private-member-variables-in-classes"
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | early_elimination.h | 40 private: 59 private: 73 private: 90 private: 108 private: 122 private: 135 private: 153 private: 174 private: 196 private: [all …]
|
| /arkcompiler/ets_frontend/ts2panda/src/base/ |
| D | literal.ts | 34 private t: LiteralTag; 35 private v: any; 52 private k: string; 53 private lb: Literal[] = [];
|
| D | lreference.ts | 31 private node: ts.Node; 32 private compiler: Compiler; 33 private refKind: ReferenceKind; 34 private isDeclaration: boolean; 35 private obj: VReg | undefined = undefined; 36 private prop: VReg | undefined = undefined; 37 private propLiteral: string | number | undefined = undefined; 39 private destructuringTarget: ts.BindingOrAssignmentPattern | undefined;
|
| D | iterator.ts | 29 private iterRecord: { iterator: VReg, nextMethod: VReg }; 30 private iterDone: VReg; 31 private iterValue: VReg; 32 private pandaGen: PandaGen; 33 private node: ts.Node; 34 private kind: IteratorType = IteratorType.Normal; 35 private funcBuilder: FunctionBuilder | undefined = undefined;
|
| /arkcompiler/runtime_core/runtime/mem/ |
| D | heap_verifier.h | 40 private: 63 private: 76 HeapManager *heap_ = nullptr; // NOLINT(misc-non-private-member-variables-in-classes) 119 private: 144 private: 161 private:
|
| /arkcompiler/runtime_core/runtime/ |
| D | string_table.h | 98 // NOLINTNEXTLINE(misc-non-private-member-variables-in-classes) 100 os::memory::RWLock table_lock_; // NOLINT(misc-non-private-member-variables-in-classes) 102 private: 136 private: 156 // NOLINTNEXTLINE(misc-non-private-member-variables-in-classes) 158 // NOLINTNEXTLINE(misc-non-private-member-variables-in-classes) 161 private:
|
| /arkcompiler/runtime_core/libpandabase/mem/ |
| D | alloc_tracker.h | 96 private: 111 private: 116 private: 138 private: 173 private: 195 private: 203 private:
|
12345678910>>...45