Home
last modified time | relevance | path

Searched defs:m (Results 1 – 25 of 79) sorted by relevance

1234

/arkcompiler/runtime_core/platforms/unix/libpandabase/futex/
Dfmutex.cpp20 #define FAIL_WITH_MESSAGE(m) \ argument
23 #define LOG_MESSAGE(l, m) argument
24 #define HELPERS_TO_UNSIGNED(m) m argument
28 #define LOG_MESSAGE(l, m) LOG(l, COMMON) << (m) // NOLINT(cppcoreguidelines-macro-usage) argument
29 #define FAIL_WITH_MESSAGE(m) LOG_MESSAGE(FATAL, m) // NOLINT(cppcoreguidelines-macro-usage) argument
30 #define HELPERS_TO_UNSIGNED(m) helpers::ToUnsigned(m) // NOLINT(cppcoreguidelines-macro-usage) argument
43 static inline void FutexWait(ATOMIC_INT *m, int v) in FutexWait()
75 int *GetStateAddr(struct fmutex *const m) in GetStateAddr()
80 void IncrementWaiters(struct fmutex *m) in IncrementWaiters()
85 void DecrementWaiters(struct fmutex *m) in DecrementWaiters()
[all …]
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DrestParameterAssignmentCompatibility.ts28 m(p1, p2) { method in S
47 m(p1?, p2?) { method in T1
DdeclFileTypeAnnotationTupleType.ts33 let k: [c, m.c] = [new c(), new m.c()]; variable
46 let x: [g<string>, m.g<number>, () => c] = [new g<string>(), new m.g<number>(), () => new c()]; variable
DmultipleDeclarations.ts56 m() { method in X
81 m() { method in Y
DdivergentAccessorsTypes1.ts75 let m: string = t.foo; variable
110 let m: string = t.foo; variable
145 let m: string = t.foo; variable
DstrictNullNotNullIndexTypeShouldWork.ts28 m() { method in Test
60 m() { method in Test2
Des6ModuleConst.ts43 export const l: string = b, m = k; constant
49 export const l: string = b, m = k; constant
DjsDeclarationsExportDoubleAssignmentInClosure.ts48 const m = function () { constant
DtypeGuardNarrowsIndexedAccessOfKnownProperty11.ts23 declare const m: { [K in E]: string | null }; constant
DtypeGuardNarrowsIndexedAccessOfKnownProperty12.ts26 declare const m: { [K in E]: string | null }; constant
DtypeAliasDoesntMakeModuleInstantiated.ts30 declare let m: m.IStatic; // Should be ok to have let 'm' as module is non instantiated variable
DstructuralTypeInDeclareFileForModule.ts22 let m = M; variable
DsuperInCatchBlock1.ts25 m() { method in B
DargumentsReferenceInMethod3_Js.ts34 m(foo = {}) { method in B
DtypeParameterConstraintInstantiation.ts27 let m: Mapper<string>; variable
DthisTypeInFunctions3.ts26 m() { method in Test
DargumentsReferenceInMethod5_Js.ts36 m(foo = {}) { method in A
DpropertyOverridesMethod.ts26 m = () => 1 property in B
DimportInTypePosition.ts38 let m: typeof a; variable
Darrayconcat.ts34 public m() { method in parser
/arkcompiler/ets_runtime/ecmascript/compiler/
Dtype.h134 uint32_t m = r.GetModuleId(); in IsAnyType() local
142 uint32_t m = r.GetModuleId(); in IsNumberType() local
152 uint32_t m = r.GetModuleId(); in IsIntType() local
160 uint32_t m = r.GetModuleId(); in IsDoubleType() local
168 uint32_t m = r.GetModuleId(); in IsStringType() local
176 uint32_t m = r.GetModuleId(); in IsNullType() local
184 uint32_t m = r.GetModuleId(); in IsUndefinedType() local
192 uint32_t m = r.GetModuleId(); in IsBooleanType() local
200 uint32_t m = r.GetModuleId(); in IsBigIntType() local
/arkcompiler/ets_runtime/test/moduletest/merge/
Dmerge.js25 var m = new Merge("a") variable
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/aliasUsageInVarAssignment/
DaliasUsageInVarAssignment_main.ts29 let m: typeof moduleA = i; variable
/arkcompiler/ets_frontend/es2panda/test/type_extractor/testcases/
Dtest-builtin-generic-class-type.ts17 let m = new Map(); variable
Dtest-interface.ts21 let m : Child = new Member(); variable

1234