Home
last modified time | relevance | path

Searched refs:Named (Results 1 – 25 of 170) sorted by relevance

1234567

/third_party/typescript/tests/baselines/reference/
DdeclarationEmitForTypesWhichNeedImportTypes.types2 export interface Named {}
4 export function createNamed(): Named {
5 >createNamed : () => Named
12 >createNamed : () => import("tests/cases/compiler/b").Named
15 >Value : import("tests/cases/compiler/b").Named
16 >createNamed() : import("tests/cases/compiler/b").Named
17 >createNamed : () => import("tests/cases/compiler/b").Named
DdeclarationEmitForTypesWhichNeedImportTypes.symbols2 export interface Named {}
3 >Named : Symbol(Named, Decl(b.ts, 0, 0))
5 export function createNamed(): Named {
7 >Named : Symbol(Named, Decl(b.ts, 0, 0))
DtypeInferenceWithExcessProperties.symbols4 interface Named {
5 >Named : Symbol(Named, Decl(typeInferenceWithExcessProperties.ts, 0, 0))
8 >name : Symbol(Named.name, Decl(typeInferenceWithExcessProperties.ts, 2, 17))
11 function parrot<T extends Named>(obj: T): T {
14 >Named : Symbol(Named, Decl(typeInferenceWithExcessProperties.ts, 0, 0))
DtypeInferenceWithExcessProperties.types4 interface Named {
9 function parrot<T extends Named>(obj: T): T {
10 >parrot : <T extends Named>(obj: T) => T
20 >parrot : <T extends Named>(obj: T) => T
31 >parrot : <T extends Named>(obj: T) => T
46 >parrot : <T extends Named>(obj: T) => T
61 >parrot : <T extends Named>(obj: T) => T
DdeclarationEmitForTypesWhichNeedImportTypes.js4 export interface Named {}
6 export function createNamed(): Named {
32 export interface Named {
34 export declare function createNamed(): Named;
36 export declare const Value: import("./b").Named;
DinterfacePropertiesWithSameName3.errors.txt2 Named property 'a' of types 'E' and 'D' are not identical.
4 Named property 'a' of types 'E2' and 'D2' are not identical.
13 !!! error TS2320: Named property 'a' of types 'E' and 'D' are not identical.
20 !!! error TS2320: Named property 'a' of types 'E2' and 'D2' are not identical.
DmergedInterfacesWithInheritedPrivates3.errors.txt2 Named property 'x' of types 'C' and 'C2' are not identical.
4 Named property 'x' of types 'C' and 'C2' are not identical.
19 !!! error TS2320: Named property 'x' of types 'C' and 'C2' are not identical.
44 !!! error TS2320: Named property 'x' of types 'C' and 'C2' are not identical.
DinterfacePropertiesWithSameName2.errors.txt2 Named property 'getStatus' of types 'Mover' and 'Shaker' are not identical.
4 Named property 'getStatus' of types 'Mover' and 'Shaker' are not identical.
20 !!! error TS2320: Named property 'getStatus' of types 'Mover' and 'Shaker' are not identical.
39 !!! error TS2320: Named property 'getStatus' of types 'Mover' and 'Shaker' are not identical.
DtypeInferenceWithExcessProperties.js4 interface Named {
8 function parrot<T extends Named>(obj: T): T {
DinheritSameNamePropertiesWithDifferentOptionality.errors.txt2 Named property 'x' of types 'C' and 'C2' are not identical.
17 !!! error TS2320: Named property 'x' of types 'C' and 'C2' are not identical.
DbaseTypePrivateMemberClash.errors.txt2 Named property 'm' of types 'X' and 'Y' are not identical.
16 !!! error TS2320: Named property 'm' of types 'X' and 'Y' are not identical.
DgenericAndNonGenericInheritedSignature1.errors.txt2 Named property 'f' of types 'Foo' and 'Bar' are not identical.
15 !!! error TS2320: Named property 'f' of types 'Foo' and 'Bar' are not identical.
DgenericAndNonGenericInheritedSignature2.errors.txt2 Named property 'f' of types 'Bar' and 'Foo' are not identical.
15 !!! error TS2320: Named property 'f' of types 'Bar' and 'Foo' are not identical.
DinheritSameNamePrivatePropertiesFromDifferentOrigins.errors.txt2 Named property 'x' of types 'C' and 'C2' are not identical.
17 !!! error TS2320: Named property 'x' of types 'C' and 'C2' are not identical.
/third_party/mbedtls/tests/suites/
Dtest_suite_asn1write.data274 ASN.1 Write Named Bitstring / Unused bits #0
277 ASN.1 Write Named Bitstring / Unused bits #1
280 ASN.1 Write Named Bitstring / Unused bits #2
283 ASN.1 Write Named Bitstring / Unused bits #3
286 ASN.1 Write Named Bitstring / Unused bits #4
289 ASN.1 Write Named Bitstring / Unused bits #5
292 ASN.1 Write Named Bitstring / Unused bits #6
295 ASN.1 Write Named Bitstring / Unused bits #7
298 ASN.1 Write Named Bitstring / Empty bitstring
301 ASN.1 Write Named Bitstring / Empty bitstring (bits = 16)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DExtractGV.cpp55 SetVector<GlobalValue *> Named; member in __anon31e8e2e80111::GVExtractorPass
65 : ModulePass(ID), Named(GVs.begin(), GVs.end()), deleteStuff(deleteS) {} in GVExtractorPass()
86 deleteStuff == (bool)Named.count(&*I) && !I->isDeclaration(); in runOnModule()
106 deleteStuff == (bool)Named.count(&F) && !F.isDeclaration(); in runOnModule()
127 bool Delete = deleteStuff == (bool)Named.count(&*CurI); in runOnModule()
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/gen/
Dintrinsic_table.go32 TMatchers []sem.Named
33 TMatcherIndex map[sem.Named]int // [object -> index] in TMatcher
37 NMatchers []sem.Named
38 NMatcherIndex map[sem.Named]int // [object -> index] in NMatchers
153 b.TMatchers = make([]sem.Named, s.MaxOpenTypes)
164 b.NMatchers = make([]sem.Named, s.MaxOpenNumbers)
283 func (b *overloadBuilder) matcherIndex(n sem.Named) (int, error) {
350 TMatcherIndex: map[sem.Named]int{},
351 NMatcherIndex: map[sem.Named]int{},
/third_party/rust/crates/clap/tests/derive/
Dutf8.rs14 struct Named { struct
28 let m = Named::try_parse_from(vec![ in invalid_utf8_strict_option_short_space() argument
39 let m = Named::try_parse_from(vec![ in invalid_utf8_strict_option_short_equals()
49 let m = Named::try_parse_from(vec![ in invalid_utf8_strict_option_short_no_space()
59 let m = Named::try_parse_from(vec![ in invalid_utf8_strict_option_long_space()
70 let m = Named::try_parse_from(vec![ in invalid_utf8_strict_option_long_equals()
/third_party/skia/third_party/externals/tint/src/reader/spirv/
Dparser_type.h448 struct Named : public Castable<Named, Type> { struct
451 explicit Named(Symbol n);
455 Named(const Named& other);
458 ~Named() override;
470 struct Alias : public Castable<Alias, Named> { argument
489 struct Struct : public Castable<Struct, Named> {
/third_party/rust/crates/regex/src/
Dexpand.rs40 Ref::Named(name) => { in expand_str()
82 Ref::Named(name) => { in expand_bytes()
108 Named(&'a str), enumerator
114 Ref::Named(x) in from()
154 Err(_) => Ref::Named(cap), in find_cap_ref()
179 Err(_) => Ref::Named(cap), in find_cap_ref_braced()
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/resolver/
Dresolve.go168 options := map[sem.Named]tok.Source{}
448 func (r *resolver) lookupNamed(s *scope, a ast.TemplatedName) (sem.Named, error) {
468 return target.(sem.Named), nil
469 case sem.Named:
517 func describe(n sem.Named) string { argument
542 func checkCompatible(arg, param sem.Named) error { argument
545 asEnum := func(n sem.Named) *sem.Enum {
569 asNumber := func(n sem.Named) interface{} {
589 asResolvableType := func(n sem.Named) sem.ResolvableType {
623 object sem.Named
[all …]
/third_party/typescript/tests/cases/compiler/
DdeclarationEmitForTypesWhichNeedImportTypes.ts3 export interface Named {} interface
5 export function createNamed(): Named {
DtypeInferenceWithExcessProperties.ts3 interface Named { interface
7 function parrot<T extends Named>(obj: T): T {
/third_party/rust/crates/syn/src/
Ddata.rs40 Named(FieldsNamed),
82 Fields::Named(f) => f.named.iter(), in iter()
93 Fields::Named(f) => f.named.iter_mut(), in iter_mut()
102 Fields::Named(f) => f.named.len(), in len()
111 Fields::Named(f) => f.named.is_empty(), in is_empty()
124 Fields::Named(f) => f.named.into_iter(), in into_iter()
253 Fields::Named(input.parse()?) in parse()
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/sem/
Dsem.go207 Target Named
228 Named
238 Named
247 type Named interface { interface

1234567