Home
last modified time | relevance | path

Searched refs:attrs (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DstrictNullNotNullIndexTypeShouldWork.ts26 attrs: Readonly<T>; property in Test
29 this.attrs.params!.name;
30 AssertType(this.attrs.params!.name, "string");
31 AssertType(this.attrs.params!, "NonNullable<T["params"]>");
32 AssertType(this.attrs.params, "union");
33 AssertType(this.attrs, "Readonly<T>");
58 attrs: Readonly<T>; property in Test2
61 AssertType(this.attrs.params!, "NonNullable<T["params"]>");
62 AssertType(this.attrs.params, "union");
63 AssertType(this.attrs, "Readonly<T>");
[all …]
DconditionalTypeContextualTypeSimplificationsSuceeds.ts27 attrs: string extends keyof P ? { [K in keyof P]: P[K] } : { [K in keyof P]: P[K] }) { }
29 attrs: string extends keyof P ? P : { [K in keyof P]: P[K] }) { }
31 attrs: { [K in keyof P]: P[K] }) { }
/arkcompiler/runtime_core/libpandabase/os/
Dmutex.cpp56 void Mutex::Init(pthread_mutexattr_t *attrs) in Init() argument
58 int rc = pthread_mutex_init(&mutex_, attrs); in Init()
88 pthread_mutexattr_t attrs; in RecursiveMutex() local
89 pthread_mutexattr_init(&attrs); in RecursiveMutex()
90 pthread_mutexattr_settype(&attrs, PTHREAD_MUTEX_RECURSIVE); in RecursiveMutex()
91 Init(&attrs); in RecursiveMutex()
Dmutex.h76 void Init(pthread_mutexattr_t *attrs);
/arkcompiler/ets_frontend/test262/
Dharness.patch59 return features.filter(feature => (test.attrs.features || []).includes(feature)).length > 0;
220 } else if (!ranToFinish && !test.attrs.flags.raw) {
234 - message: `Expected test to throw error of type ${test.attrs.negative.type}, got ${result…
235 + message: `Expected test to throw error of type ${test.attrs.negative.type}, but got ${re…
Deshost.patch82 let {attrs, contents, file} = code;
87 - if (options.module || attrs.flags.module ||
/arkcompiler/ets_frontend/merge_abc/src/
DmetaProto.cpp148 for (const auto &[name, attrs] : meta.GetAttributes()) { in Serialize()
151 for (const auto &attr : attrs) { in Serialize()
/arkcompiler/ets_runtime/ecmascript/
Ddump.cpp527 JSTaggedValue attrs = jshclass->GetLayout(); in DumpHClass() local
528 attrs.DumpTaggedValue(os); in DumpHClass()
530 if (withDetail && !attrs.IsNull()) { in DumpHClass()
531 LayoutInfo *layoutInfo = LayoutInfo::Cast(attrs.GetTaggedObject()); in DumpHClass()
1442 JSTaggedValue attrs = jshclass->GetLayout(); in Dump() local
1443 if (attrs.IsNull()) { in Dump()
1447 LayoutInfo *layoutInfo = LayoutInfo::Cast(attrs.GetTaggedObject()); in Dump()
3596 JSTaggedValue attrs = jshclass->GetLayout(); in Dump() local
3597 if (attrs.IsNull()) { in Dump()
3601 LayoutInfo *layoutInfo = LayoutInfo::Cast(attrs.GetTaggedObject()); in Dump()
[all …]
Dobject_operator.cpp357 JSTaggedValue attrs = jshclass->GetLayout(); in LookupPropertyInlinedProps() local
358 LayoutInfo *layoutInfo = LayoutInfo::Cast(attrs.GetTaggedObject()); in LookupPropertyInlinedProps()
Djs_hclass.cpp307 JSTaggedValue attrs = newJsHClass->GetLayout(); in TransitionExtension() local
309 JSMutableHandle<LayoutInfo> layoutInfoHandle(thread, attrs); in TransitionExtension()