Home
last modified time | relevance | path

Searched defs:Item (Results 1 – 16 of 16) sorted by relevance

/arkcompiler/runtime_core/libpandabase/tests/
Dsmall_vector_test.cpp174 struct Item { struct
175 Item() in Item() function
179 Item(int aa, double bb) : a(aa), b(bb) in Item() argument
183 virtual ~Item() in ~Item()
190 bool operator==(const Item &rhs) const in operator ==()
194 static void Reset() in Reset()
199 int a {101};
200 double b {202};
201 static inline size_t constructed = 0;
202 static inline size_t destroyed = 0;
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DobjectInstantiationFromUnionSpread.ts31 type Item = Success | Fail; alias
DgenericObjectRest.ts92 type Item = { a: string, b: number, c: boolean }; alias
DdiscriminatedUnionInference.ts34 type Item<T> = { kind: 'a', data: T } | { kind: 'b', data: T[] }; alias
DstringEnumInElementAccess01.ts27 interface Item { interface
DbooleanLiteralTypes1.ts204 type Item = alias
DtypePredicateFreshLiteralWidening.ts51 type Item = { value: string | null }; alias
DbooleanLiteralTypes2.ts204 type Item = alias
DstringEnumLiteralTypes2.ts230 type Item = alias
DstringEnumLiteralTypes1.ts230 type Item = alias
DenumLiteralTypes2.ts292 type Item = alias
DenumLiteralTypes1.ts292 type Item = alias
DnumericLiteralTypes1.ts364 type Item = alias
DnumericLiteralTypes2.ts364 type Item = alias
DtypeVariableTypeGuards.ts82 type Item = { alias
/arkcompiler/ets_runtime/ecmascript/compiler/
Dbytecode_info_collector.h415 using Item = std::unordered_map<uint32_t, ItemData>; variable