Home
last modified time | relevance | path

Searched refs:EntryType (Results 1 – 15 of 15) sorted by relevance

/third_party/node/deps/v8/src/heap/base/
Dworklist.h41 template <typename EntryType, uint16_t SegmentSize>
61 void Merge(Worklist<EntryType, SegmentSize>* other);
64 void Swap(Worklist<EntryType, SegmentSize>* other);
85 template <typename EntryType, uint16_t SegmentSize>
86 void Worklist<EntryType, SegmentSize>::Push(Segment* segment) { in Push()
94 template <typename EntryType, uint16_t SegmentSize>
95 bool Worklist<EntryType, SegmentSize>::Pop(Segment** segment) { in Pop()
105 template <typename EntryType, uint16_t SegmentSize>
106 bool Worklist<EntryType, SegmentSize>::IsEmpty() const { in IsEmpty()
111 template <typename EntryType, uint16_t SegmentSize>
[all …]
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
DnsBaseHashtable.hpp21 typedef nsBaseHashtableET<KeyClass, DataType> EntryType; typedef in nsBaseHashtable
23 using nsTHashtable<EntryType>::Contains;
24 using nsTHashtable<EntryType>::GetGeneration;
31 EntryType* mEntry;
35 LookupResult(EntryType*, nsBaseHashtable&);
40 EntryType& mEntry;
44 EntryPtr(nsBaseHashtable&, EntryType*, bool);
Dissue-1113-template-references.hpp9 typedef Entry<K, V> EntryType; typedef in nsBaseHashtable
13 EntryType& mEntry;
/third_party/parse5/packages/parse5/lib/parser/
Dformatting-element-list.ts7 export enum EntryType { enum
13 type: EntryType.Marker;
17 type: EntryType.Element;
24 const MARKER: MarkerEntry = { type: EntryType.Marker };
49 if (entry.type === EntryType.Marker) {
106 type: EntryType.Element,
116 type: EntryType.Element,
148 …(entry) => entry.type === EntryType.Marker || this.treeAdapter.getTagName(entry.element) === tagNa…
151 return entry && entry.type === EntryType.Element ? entry : null;
156 … (entry): entry is ElementEntry<T> => entry.type === EntryType.Element && entry.element === element
Dformatting-element-list.test.ts4 import { FormattingElementList, EntryType } from './formatting-element-list.js';
25 assert.strictEqual(list.entries[0].type, EntryType.Marker);
29 assert.strictEqual(list.entries[0].type, EntryType.Marker);
41 assert.strictEqual(list.entries[0].type, EntryType.Element as const);
47 assert.strictEqual(list.entries[0].type, EntryType.Element);
117 expect(list.entries[1]).toHaveProperty('type', EntryType.Marker);
210 assert.strictEqual(entry.type, EntryType.Element);
Dindex.ts3 import { FormattingElementList, EntryType, type ElementEntry } from './formatting-element-list.js';
595 … (entry) => entry.type === EntryType.Marker || this.openElements.contains(entry.element)
/third_party/protobuf/src/google/protobuf/
Dmap_field_lite.h60 typedef Derived EntryType; typedef
64 typedef EntryType EntryTypeTrait;
92 EntryType* NewEntry() const { in NewEntry()
93 return Arena::CreateMessage<EntryType>(map_.arena_); in NewEntry()
97 EntryType* NewEnumEntryWrapper(const Key& key, const T t) const { in NewEnumEntryWrapper()
98 return EntryType::EnumWrap(key, t, map_.arena_); in NewEnumEntryWrapper()
102 EntryType* NewEntryWrapper(const Key& key, const T& t) const { in NewEntryWrapper()
103 return EntryType::Wrap(key, t, map_.arena_); in NewEntryWrapper()
Dmap_field_inl.h180 RepeatedPtrField<EntryType>* repeated_field = in Clear()
181 reinterpret_cast<RepeatedPtrField<EntryType>*>( in Clear()
290 RepeatedPtrField<EntryType>* repeated_field = in SyncRepeatedFieldWithMapNoLock()
291 reinterpret_cast<RepeatedPtrField<EntryType>*>( in SyncRepeatedFieldWithMapNoLock()
304 EntryType* new_entry = in SyncRepeatedFieldWithMapNoLock()
305 down_cast<EntryType*>(default_entry->New(this->MapFieldBase::arena_)); in SyncRepeatedFieldWithMapNoLock()
318 RepeatedPtrField<EntryType>* repeated_field = in SyncMapWithRepeatedFieldNoLock()
319 reinterpret_cast<RepeatedPtrField<EntryType>*>( in SyncMapWithRepeatedFieldNoLock()
323 for (typename RepeatedPtrField<EntryType>::iterator it = in SyncMapWithRepeatedFieldNoLock()
Dmap_field_test.cc100 typedef unittest::TestMap_MapInt32Int32Entry_DoNotUse EntryType; typedef in google::protobuf::internal::MapFieldBasePrimitiveTest
101 typedef MapField<EntryType, int32, int32, WireFormatLite::TYPE_INT32,
204 typedef unittest::TestMap_MapInt32Int32Entry_DoNotUse EntryType; typedef in google::protobuf::internal::MapFieldStateTest
205 typedef MapField<EntryType, int32, int32, WireFormatLite::TYPE_INT32,
Dmap_field.h436 typedef Derived EntryType; typedef
482 EntryType* NewEntry() const { return impl_.NewEntry(); } in NewEntry()
485 EntryType* NewEnumEntryWrapper(const Key& key, const T t) const { in NewEnumEntryWrapper()
490 EntryType* NewEntryWrapper(const Key& key, const T& t) const { in NewEntryWrapper()
Dmap_entry_lite.h183 typedef Derived EntryType;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DDebugLocEntry.h43 enum EntryType { enum
50 enum EntryType EntryKind;
/third_party/skia/infra/bots/recipe_modules/flavor/resources/
Dwin_run_and_check_log.ps133 $faults = Get-EventLog -LogName Application -InstanceId 1000 -EntryType Error `
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFListTable.h39 using EntryType = ListEntryType; variable
40 using ListEntries = std::vector<EntryType>;
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp92274 template<class EntryType>
92278 static_assert(mozilla::IsPointer<typename EntryType::KeyTypePointer>::value,
92285 : mTable(Ops(), sizeof(EntryType), PLDHashTable::kDefaultInitialLength) in nsTHashtable()
92288 : mTable(Ops(), sizeof(EntryType), aInitLength) in nsTHashtable()
92296 nsTHashtable(nsTHashtable<EntryType>&& aOther);
92307 typedef typename EntryType::KeyType KeyType;
92312 typedef typename EntryType::KeyTypePointer KeyTypePointer;
92331 EntryType* GetEntry(KeyType aKey) const in GetEntry()
92333 return static_cast<EntryType*>( in GetEntry()
92334 const_cast<PLDHashTable*>(&mTable)->Search(EntryType::KeyToPointer(aKey))); in GetEntry()
[all …]