Home
last modified time | relevance | path

Searched refs:ObjectIterator (Results 1 – 23 of 23) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DjsFileImportPreservedWhenUsed.types2 type ObjectIterator<TObject, TResult> = (value: TObject[keyof TObject], key: string, collection: TO…
3 >ObjectIterator : ObjectIterator<TObject, TResult>
9 …mapValues<T extends object, TResult>(obj: T | null | undefined, callback: ObjectIterator<T, TResul…
10 >mapValues : <T extends object, TResult>(obj: T | null | undefined, callback: ObjectIterator<T, TRe…
13 >callback : ObjectIterator<T, TResult>
DjsFileImportPreservedWhenUsed.symbols2 type ObjectIterator<TObject, TResult> = (value: TObject[keyof TObject], key: string, collection: TO…
3 >ObjectIterator : Symbol(ObjectIterator, Decl(dash.d.ts, 0, 0))
17 …mapValues<T extends object, TResult>(obj: T | null | undefined, callback: ObjectIterator<T, TResul…
24 >ObjectIterator : Symbol(ObjectIterator, Decl(dash.d.ts, 0, 0))
DemptyObjectNotSubtypeOfIndexSignatureContainingObject1.symbols22 type ObjectIterator<TObject, TResult> = (
23 >ObjectIterator : Symbol(ObjectIterator, Decl(emptyObjectNotSubtypeOfIndexSignatureContainingObject…
42 type DictionaryIterator<T, TResult> = ObjectIterator<Dictionary<T>, TResult>;
46 >ObjectIterator : Symbol(ObjectIterator, Decl(emptyObjectNotSubtypeOfIndexSignatureContainingObject…
DemptyObjectNotSubtypeOfIndexSignatureContainingObject1.types14 type ObjectIterator<TObject, TResult> = (
15 >ObjectIterator : ObjectIterator<TObject, TResult>
28 type DictionaryIterator<T, TResult> = ObjectIterator<Dictionary<T>, TResult>;
DemptyObjectNotSubtypeOfIndexSignatureContainingObject2.symbols22 type ObjectIterator<TObject, TResult> = (
23 >ObjectIterator : Symbol(ObjectIterator, Decl(emptyObjectNotSubtypeOfIndexSignatureContainingObject…
42 type DictionaryIterator<T, TResult> = ObjectIterator<Dictionary<T>, TResult>;
46 >ObjectIterator : Symbol(ObjectIterator, Decl(emptyObjectNotSubtypeOfIndexSignatureContainingObject…
DemptyObjectNotSubtypeOfIndexSignatureContainingObject2.types14 type ObjectIterator<TObject, TResult> = (
15 >ObjectIterator : ObjectIterator<TObject, TResult>
28 type DictionaryIterator<T, TResult> = ObjectIterator<Dictionary<T>, TResult>;
DjsFileImportPreservedWhenUsed.js4 type ObjectIterator<TObject, TResult> = (value: TObject[keyof TObject], key: string, collection: TO…
7 …mapValues<T extends object, TResult>(obj: T | null | undefined, callback: ObjectIterator<T, TResul…
DemptyObjectNotSubtypeOfIndexSignatureContainingObject1.js12 type ObjectIterator<TObject, TResult> = (
18 type DictionaryIterator<T, TResult> = ObjectIterator<Dictionary<T>, TResult>;
DemptyObjectNotSubtypeOfIndexSignatureContainingObject2.js12 type ObjectIterator<TObject, TResult> = (
18 type DictionaryIterator<T, TResult> = ObjectIterator<Dictionary<T>, TResult>;
DemptyObjectNotSubtypeOfIndexSignatureContainingObject1.errors.txt17 type ObjectIterator<TObject, TResult> = (
23 type DictionaryIterator<T, TResult> = ObjectIterator<Dictionary<T>, TResult>;
DemptyObjectNotSubtypeOfIndexSignatureContainingObject2.errors.txt17 type ObjectIterator<TObject, TResult> = (
23 type DictionaryIterator<T, TResult> = ObjectIterator<Dictionary<T>, TResult>;
/third_party/typescript/tests/cases/compiler/
DjsFileImportPreservedWhenUsed.ts6 type ObjectIterator<TObject, TResult> = (value: TObject[keyof TObject], key: string, collection: TO… alias
9 …mapValues<T extends object, TResult>(obj: T | null | undefined, callback: ObjectIterator<T, TResul…
DemptyObjectNotSubtypeOfIndexSignatureContainingObject1.ts11 type ObjectIterator<TObject, TResult> = ( alias
17 type DictionaryIterator<T, TResult> = ObjectIterator<Dictionary<T>, TResult>;
DemptyObjectNotSubtypeOfIndexSignatureContainingObject2.ts11 type ObjectIterator<TObject, TResult> = ( alias
17 type DictionaryIterator<T, TResult> = ObjectIterator<Dictionary<T>, TResult>;
/third_party/node/deps/v8/src/heap/
Dlarge-spaces.h118 std::unique_ptr<ObjectIterator> GetObjectIterator(Heap* heap) override;
239 class LargeObjectSpaceObjectIterator : public ObjectIterator {
Dnew-spaces.h161 std::unique_ptr<ObjectIterator> GetObjectIterator(Heap* heap) override;
220 class SemiSpaceObjectIterator : public ObjectIterator {
467 std::unique_ptr<ObjectIterator> GetObjectIterator(Heap* heap) override; in NON_EXPORTED_BASE()
Dspaces.h161 virtual std::unique_ptr<ObjectIterator> GetObjectIterator(Heap* heap) = 0;
345 class V8_EXPORT_PRIVATE ObjectIterator : public Malloced {
347 virtual ~ObjectIterator() = default;
Dpaged-spaces.h41 class V8_EXPORT_PRIVATE PagedSpaceObjectIterator : public ObjectIterator {
305 std::unique_ptr<ObjectIterator> GetObjectIterator(Heap* heap) override; in NON_EXPORTED_BASE()
Dnew-spaces.cc354 std::unique_ptr<ObjectIterator> SemiSpace::GetObjectIterator(Heap* heap) { in GetObjectIterator()
682 std::unique_ptr<ObjectIterator> NewSpace::GetObjectIterator(Heap* heap) { in GetObjectIterator()
683 return std::unique_ptr<ObjectIterator>(new SemiSpaceObjectIterator(this)); in GetObjectIterator()
Dlarge-spaces.cc367 std::unique_ptr<ObjectIterator> LargeObjectSpace::GetObjectIterator( in GetObjectIterator()
369 return std::unique_ptr<ObjectIterator>( in GetObjectIterator()
Dpaged-spaces.cc547 std::unique_ptr<ObjectIterator> PagedSpace::GetObjectIterator(Heap* heap) { in GetObjectIterator()
548 return std::unique_ptr<ObjectIterator>( in GetObjectIterator()
Dread-only-spaces.cc443 class ReadOnlySpaceObjectIterator : public ObjectIterator {
Dheap.h99 class ObjectIterator; variable
2716 std::unique_ptr<ObjectIterator> object_iterator_;