Searched full:public (Results 1 – 25 of 3542) sorted by relevance
12345678910>>...142
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/proxies/ets_proxy/ |
| D | ets_proxy.sts | 27 public getNext(): ListNode { 30 public setNext(v: ListNode): void { 34 public next: ListNode; 35 public tag: double; 54 public getfByte(): byte { return this.fByte; } 55 public getfShort(): short { return this.fShort; } 56 public getfInt(): int { return this.fInt; } 57 public getfLong(): long { return this.fLong; } 58 public getfFloat(): float { return this.fFloat; } 59 public getfDouble(): double { return this.fDouble; } [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/mock/ |
| D | CallingMethodsTest.sts | 21 public void_method(a: int, b: int): void 25 public object_method(): A 31 public boolean_method(a: boolean, b: int): boolean 36 public byte_method(a: byte, b: int): byte 41 public char_method(a: char, b: int): char 46 public short_method(a: short, b: int): short 51 public int_method(): int 56 public long_method(a: long, b: int): long 61 public float_method(a: float, b: int): float 66 public double_method(a: double, b: int): double [all …]
|
| D | AccessingObjectsFieldsTest.sts | 20 public member : int; 24 public member0 : boolean; 25 public member1 : byte; 26 public member2 : char; 27 public member3 : short; 28 public member4 : int; 29 public member5 : long; 30 public member6 : float; 31 public member7 : double; 32 public member8 : A; [all …]
|
| D | FinalFieldNativeTest.sts | 17 public static boolean_value_final: boolean = true; 18 public static byte_value_final: byte = 2; 19 public static short_value_final: short = 256; 20 public static char_value_final: char = 32767; 21 public static int_value_final: int = 65536; 22 public static long_value_final: long = 4294967296; 23 public static float_value_final: float = 1.0; 24 public static double_value_final: double = 2.0; 25 public static string_value_final: String = "abc";
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/ |
| D | Box.sts | 24 public constructor() { 28 public constructor(value: T) { 37 public static box<TT>(value: TT): Box<TT> { 46 public get(): T { 53 public set(value: T): T { 61 public constructor() { 65 public constructor(value: boolean) { 74 public static box(value: boolean): BooleanBox { 83 public get(): boolean { 90 public set(value: boolean): boolean { [all …]
|
| D | Type.sts | 90 public static readonly NONE: byte = 0x0 91 public static readonly VOID: byte = 0x1 93 public static readonly CHAR: byte = 0x2 94 public static readonly BOOLEAN: byte = 0x3 95 public static readonly BYTE: byte = 0x4 96 public static readonly SHORT: byte = 0x5 97 public static readonly INT: byte = 0x6 98 public static readonly LONG: byte = 0x7 99 public static readonly FLOAT: byte = 0x8 100 public static readonly DOUBLE: byte = 0x9 [all …]
|
| D | Float.sts | 27 public constructor() { 36 public constructor(value: float) { 45 public constructor(value: double) { 55 public constructor(value: Float) { 64 public unboxed(): float { 75 public static valueOf(value: float): Float { 83 public static readonly MIN_VALUE: float = 1.4e-45; 88 public static readonly MAX_VALUE: float = 3.4028235e+38 as float; 93 public static readonly MAX_SAFE_INTEGER = 16777215; 98 public static readonly BIT_SIZE: byte = 32; [all …]
|
| D | Value.sts | 139 public static of(v: boolean): Value { 143 public static of(v: char): Value { 147 public static of(v: byte): Value { 151 public static of(v: short): Value { 155 public static of(v: int): Value { 159 public static of(v: long): Value { 163 public static of(v: float): Value { 167 public static of(v: double): Value { 173 public static of(v: Boolean): Value { 177 public static of(v: Char): Value { [all …]
|
| D | Console.sts | 35 public print(o: NullishType): void { 44 public native print(i: String): void 51 public native print(i: boolean): void 58 public native print(i: byte): void 65 public native print(i: short): void 72 public native print(i: char): void 79 public native print(i: int): void 86 public native print(i: long): void 93 public print(f: float): void { 103 public print(d: double): void { [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/interop/js/ |
| D | JSRuntime.sts | 26 public static newJSValueBoolean(value: boolean): JSValue { 31 public static newJSValueByte(value: byte): JSValue { 35 public static newJSValueChar(value: char): JSValue { 39 public static newJSValueShort(value: short): JSValue { 43 public static newJSValueInt(value: int): JSValue { 47 public static newJSValueLong(value: long): JSValue { 51 public static newJSValueFloat(value: float): JSValue { 55 public static newJSValueDouble(value: double): JSValue { 60 public static newJSValueString(value: String): JSValue { 65 public static newJSValueObject(value: Object): JSValue { [all …]
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/ |
| D | sendable_explicit_field_type.sts | 24 public a: number = 1; 28 public b: number = 1; 61 public optBooleanProp2: boolean = true; 62 public optNumberProp2: number = 42; 63 public optStringProp2: string = "Hello"; 64 public optArrayProp2: number[] = [1, 2, 3]; 65 public optTupleProp2: [string, number] = ["typescript", 4]; 66 public optEnumProp2: Color = Color.Green; 67 public optAnyProp2: any = { key: "value" }; 68 public optVoidProp2: void = undefined; [all …]
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_errors.h | 23 class BuiltinsError : public base::BuiltinsBase { 24 public: 32 class BuiltinsRangeError : public base::BuiltinsBase { 33 public: 40 class BuiltinsReferenceError : public base::BuiltinsBase { 41 public: 48 class BuiltinsTypeError : public base::BuiltinsBase { 49 public: 58 class BuiltinsURIError : public base::BuiltinsBase { 59 public: [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/proxies/js_extend_ets/ |
| D | js_extend_ets.sts | 23 public fn(): String { return "fn_base"; } 24 public static sfn(): String { return "sfn_base"; } 26 public getAsObject(): Object { return this; } 27 public static createAsObject(): Object { return new FooDerived(); } 29 public override toString(): String { 33 public fnBase(): String { return "fn_base"; } 34 public static sfnBase(): String { return "sfn_base"; } 36 public selfFn(): String { return this.fn(); } 38 public final somethingFinal(): void { } 42 public override fn(): String { return "fn_derived"; } [all …]
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/templates/ |
| D | Template.sts | 162 public static readonly x1: long = 0x41c64e6d; 163 public static readonly x2: long = 0xd431; 165 public static boola: boolean = false; 166 public static boolb: boolean = true; 167 public static chara: char = 88; // 'X' 168 public static charb: char = 89; // 'Y' 169 public static stra: string = 'X'; 170 public static strb: string = 'Y'; 171 public static bytea: byte = 24; 172 public static byteb: byte = 53; [all …]
|
| /arkcompiler/runtime_core/static_core/runtime/regexp/ecmascript/ |
| D | regexp_opcode.h | 25 public: 95 class SaveStartOpCode : public RegExpOpCode { 96 public: 105 class SaveEndOpCode : public RegExpOpCode { 106 public: 115 class CharOpCode : public RegExpOpCode { 116 public: 125 class GotoOpCode : public RegExpOpCode { 126 public: 136 class SplitNextOpCode : public RegExpOpCode { [all …]
|
| /arkcompiler/ets_frontend/es2panda/binder/ |
| D | declaration.h | 43 public: in DECLARATION_KINDS() 144 class MultiDecl : public Decl { 145 public: 165 class EnumLiteralDecl : public MultiDecl<ir::TSEnumDeclaration> { 166 public: 201 class InterfaceDecl : public MultiDecl<ir::TSInterfaceDeclaration> { 202 public: 211 class TypeParameterDecl : public Decl { 212 public: 221 class PropertyDecl : public Decl { [all …]
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | fieldImplicitCasting.sts | 23 public blTarget: long = this.bSource 24 public bfTarget: float = this.bSource 25 public bdTarget: double = this.bSource 26 public slTarget: long = this.sSource 27 public sfTarget: float = this.sSource 28 public sdTarget: double = this.sSource 29 public ilTarget: long = this.iSource 30 public ifTarget: float = this.iSource 31 public idTarget: double = this.iSource 32 public lfTarget: float = this.lSource [all …]
|
| D | getter_setter_static_modifier.sts | 17 public static legs: int = 1; 18 public static brain: int = 2; 20 public static set Legs(l: int): void { 24 public static set Brain(b: int): void { 30 public static jump: int = 100; 31 public static move: int = 10; 33 public static get Jump(): int { 37 public static get Move(): int { 43 public static size: int = 1; 44 public static transparent: int = 1; [all …]
|
| /arkcompiler/ets_runtime/ecmascript/regexp/ |
| D | regexp_opcode.h | 26 public: 98 class SaveStartOpCode : public RegExpOpCode { 99 public: 108 class SaveEndOpCode : public RegExpOpCode { 109 public: 118 class CharOpCode : public RegExpOpCode { 119 public: 128 class GotoOpCode : public RegExpOpCode { 129 public: 139 class SplitNextOpCode : public RegExpOpCode { [all …]
|
| /arkcompiler/ets_frontend/ets2panda/varbinder/ |
| D | declaration.h | 41 public: in DECLARATION_KINDS() 108 class MultiDecl : public Decl { 109 public: 134 class EnumLiteralDecl : public Decl { 135 public: 167 class InterfaceDecl : public MultiDecl<ir::TSInterfaceDeclaration> { 168 public: 181 class ClassDecl : public Decl { 182 public: 192 class FunctionDecl : public MultiDecl<ir::ScriptFunction> { [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/declgen_ets2ts/fields/ |
| D | lib.expected | 28 public readonly readonlyBoolean_: boolean = {} as any; 29 public static staticFloat_: number = {} as any; 30 public number_: number = {} as any; 31 public Number_: number = {} as any; 32 public double_: number = {} as any; 33 public Double_: number = {} as any; 34 public int_: number = {} as any; 35 public string_: string = {} as any; 36 public nullableString_: string | null = {} as any; 37 public object_: Object = {} as any; [all …]
|
| /arkcompiler/toolchain/tooling/base/ |
| D | pt_returns.h | 22 class PtBaseReturns : public PtBaseTypes { 23 public: 36 class DebuggerEnableReturns : public PtBaseReturns { 37 public: 53 class EnableReturns : public PtBaseReturns { 54 public: 68 class SetBreakpointByUrlReturns : public PtBaseReturns { 69 public: 86 class GetPossibleAndSetBreakpointByUrlReturns : public PtBaseReturns { 87 public: [all …]
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/ |
| D | gc_scope.h | 31 public: 39 class GCScope<TRACE_TIMING> : public trace::ScopedTrace, public ScopedTiming { // NOLINT(fuchsia-m… 40 public: 49 class GCScope<TRACE_TIMING_PHASE> : public trace::ScopedTrace, public ScopedTiming, public GCScoped… 50 public: 58 class GCScope<TIMING_PHASE> : public ScopedTiming, public GCScopedPhase { // NOLINT(fuchsia-multip… 59 public: 67 class GCScope<TRACE_PHASE> : public trace::ScopedTrace, public GCScopedPhase { // NOLINT(fuchsia-m… 68 public:
|
| /arkcompiler/runtime_core/static_core/runtime/asm_defines/ |
| D | CMakeLists.txt | 48 PUBLIC ${PANDA_ROOT}/runtime 49 PUBLIC ${PANDA_ROOT} 50 PUBLIC ${CMAKE_BINARY_DIR}/runtime/include 51 PUBLIC ${PANDA_BINARY_ROOT}/panda_gen_options 52 PUBLIC ${PANDA_BINARY_ROOT}/verification/gen/include 53 PUBLIC ${PANDA_ROOT}/libpandabase 54 PUBLIC ${PANDA_ROOT}/libpandafile 55 PUBLIC ${PANDA_BINARY_ROOT}/libpandafile/include 56 PUBLIC ${PANDA_BINARY_ROOT}/libpandabase/generated 59 panda_target_include_directories(asm_defines SYSTEM PUBLIC [all …]
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
| D | slow_path.h | 26 public: 82 class SlowPathIntrinsic : public SlowPathBase { 83 public: 95 class SlowPathEntrypoint : public SlowPathBase { 96 public: 126 class SlowPathDeoptimize : public SlowPathEntrypoint { 127 public: 143 class SlowPathImplicitNullCheck : public SlowPathEntrypoint { 144 public: 150 class SlowPathShared : public SlowPathEntrypoint { [all …]
|
12345678910>>...142