/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | topLevel.ts | 75 export let origin=new Point(0,0); variable 78 result+=(M.origin.move(1,1)); 79 AssertType(result+=(M.origin.move(1,1)), "string"); 81 AssertType((M.origin.move(1,1)), "Point"); 82 AssertType(M.origin.move(1,1), "Point"); 83 AssertType(M.origin.move, "(number, number) => Point");
|
D | unwitnessedTypeParameterVariance.ts | 24 read: (origin: O) => CalcValue<O>; 30 const unk: CalcObj<unknown> = { read: (origin: unknown) => unk 33 AssertType({ read: (origin: unknown) => unk }, "{ read: (unknown) => CalcObj<unknown>; }"); 37 AssertType((origin: unknown) => unk, "(unknown) => CalcObj<unknown>"); 39 AssertType(origin, "unknown");
|
D | mergedDeclarations1.ts | 34 export let origin = point(0, 0); variable 53 let p2 = point.origin; 55 AssertType(point.origin, "Point");
|
D | es6ClassTest4.ts | 28 static origin: Point;
|
D | varianceCallbacksAndIndexedAccesses.ts | 31 origin: string; property
|
D | parserErrorRecovery_IncompleteMemberVariable1.ts | 67 static origin = new Point(0, 0); property in Point
|
D | sourceMap-FileWithComments.ts | 65 static origin = new Point(0, 0); property in Point
|
D | instanceAndStaticDeclarations1.ts | 51 static origin = new Point(0, 0);
|
D | LICENSE.txt | 47 …r, except as required for reasonable and customary use in describing the origin of the Work and re…
|
/arkcompiler/ets_frontend/arkguard/test/grammar/class_validation/ |
D | class_static.ts | 19 static origin = {x: 3, y: 4}; property in Grid 22 let xDist = (point.x - Grid.origin.x); 23 let yDist = (point.y - Grid.origin.y);
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | cframe_layout.h | 157 template <OffsetOrigin origin, OffsetUnit unit> 160 if constexpr (origin == SP) { // NOLINT(readability-braces-around-statements) in GetOffset() 174 template <OffsetOrigin origin, OffsetUnit unit> 177 return GetOffset<origin, unit>(MethodSlot::Start()); in GetMethodOffset() 180 template <OffsetOrigin origin, OffsetUnit unit> 183 return GetOffset<origin, unit>(LrSlot::Start()); in GetReturnAddressOffset() 186 template <OffsetOrigin origin, OffsetUnit unit> 189 return GetOffset<origin, unit>(LOCALS_START_SLOT); in GetFreeSlotOffset() 192 template <OffsetOrigin origin, OffsetUnit unit> 196 …return GetOffset<origin, unit>(STACK_START_SLOT + GetFirstSpillSlot() + (spill_slot << shift) + sh… in GetSpillOffset()
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/jsDeclarationsFunctionLikeClasses2/ |
D | referencer.js | 23 export const origin = new Point2D(0, 0); constant 24 AssertType(origin, "Point2D");
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | early_elimination.cpp | 143 auto origin = acc_.GetValueIn(gate, i); in TryEliminateGate() local 144 auto checkd = dependChain->LookupCheckedNode(this, origin); in TryEliminateGate() 145 if (origin != checkd) { in TryEliminateGate()
|
D | circuit_ir_specification.md | 29 * `DEPEND_ENTRY`: The origin of dependency flows of the entire circuit.
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
D | jsnapi_tests.cpp | 176 Local<StringRef> origin = StringRef::NewFromUtf8(vm_, "1"); in HWTEST_F_L0() local 180 ASSERT_FALSE(origin->IsStrictEquals(vm_, target)); in HWTEST_F_L0() 181 ASSERT_TRUE(origin->IsStrictEquals(vm_, target1)); in HWTEST_F_L0() 188 Local<ArrayRef> origin = ArrayRef::New(vm_, 1); in HWTEST_F_L0() local 190 ASSERT_FALSE(origin->InstanceOf(vm_, target)); in HWTEST_F_L0() 196 Local<StringRef> origin = StringRef::NewFromUtf8(vm_, "1"); in HWTEST_F_L0() local 197 Local<StringRef> typeString = origin->Typeof(vm_); in HWTEST_F_L0() 1291 Local<StringRef> origin = StringRef::NewFromUtf8(vm_, "1"); in HWTEST_F_L0() local 1292 res->SetName(vm_, origin); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | object_operator.cpp | 398 PropertyAttributes origin = dict->GetAttributes(index); in TransitionForAttributeChanged() local 399 attr.SetDictionaryOrder(origin.GetDictionaryOrder()); in TransitionForAttributeChanged() 417 PropertyAttributes origin = dict->GetAttributes(index); in TransitionForAttributeChanged() local 418 attr.SetDictionaryOrder(origin.GetDictionaryOrder()); in TransitionForAttributeChanged()
|
/arkcompiler/ets_runtime/ |
D | LICENSE | 142 origin of the Work and reproducing the content of the NOTICE file.
|
/arkcompiler/toolchain/ |
D | LICENSE | 142 origin of the Work and reproducing the content of the NOTICE file.
|
/arkcompiler/runtime_core/ |
D | LICENSE | 142 origin of the Work and reproducing the content of the NOTICE file.
|
/arkcompiler/ets_frontend/ |
D | LICENSE | 142 origin of the Work and reproducing the content of the NOTICE file.
|
/arkcompiler/ets_frontend/arkguard/ |
D | LICENSE | 142 origin of the Work and reproducing the content of the NOTICE file.
|
/arkcompiler/ets_frontend/es2panda/parser/ |
D | parserImpl.h | 239 …static ExpressionParseFlags CarryExpressionParserFlag(ExpressionParseFlags origin, ExpressionParse…
|
D | parserImpl.cpp | 244 ExpressionParseFlags ParserImpl::CarryExpressionParserFlag(ExpressionParseFlags origin, ExpressionP… in CarryExpressionParserFlag() argument 246 return static_cast<ExpressionParseFlags>(origin & carry); in CarryExpressionParserFlag()
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
D | jsnapi.cpp | 3014 JSHandle<JSTaggedValue> origin = JSNApiHelper::ToJSHandle(this); in InstanceOf() local 3015 LOG_IF_SPECIAL(origin, ERROR); in InstanceOf() 3017 bool result = JSObject::InstanceOf(thread, origin, target); in InstanceOf()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
D | cocos_worker_test.js | 2780 origin: null, property 3074 o.origin = t.o; 3092 o.origin = t.o; 4716 … if (!("origin" in i)) if ("data:" === i.protocol.toLowerCase()) i.origin = null; else { 4718 i.origin = e && e[1]; 16353 get origin() { getter in anonymousFunction47c28f4639900.anonymousFunction47c28f4639a00.as 16356 set origin(t) { setter in anonymousFunction47c28f4639900.anonymousFunction47c28f4639a00.as 66066 this.origin = null; 66122 var r = this.origin; 66225 this.origin = this._boneData.transform; [all …]
|