| /third_party/typescript/tests/baselines/reference/ |
| D | aliasBug.types | 5 export class Provide { 6 >Provide : Provide 15 import provide = foo; 16 >provide : typeof foo 22 >bar : typeof provide.bar 25 var p = new provide.Provide(); 26 >p : provide.Provide 27 >new provide.Provide() : provide.Provide 28 >provide.Provide : typeof provide.Provide 29 >provide : typeof foo [all …]
|
| D | aliasErrors.types | 5 export class Provide { 6 >Provide : Provide 14 import provide = foo; 15 >provide : typeof foo 21 >bar : typeof provide.bar 25 >beez : typeof provide.bar 27 >bar : typeof provide.bar 58 var p = new provide.Provide(); 59 >p : provide.Provide 60 >new provide.Provide() : provide.Provide [all …]
|
| D | aliasBug.symbols | 5 export class Provide { 6 >Provide : Symbol(Provide, Decl(aliasBug.ts, 0, 12)) 15 import provide = foo; 16 >provide : Symbol(provide, Decl(aliasBug.ts, 5, 1)) 22 >bar : Symbol(provide.bar, Decl(aliasBug.ts, 2, 5)) 25 var p = new provide.Provide(); 27 >provide.Provide : Symbol(provide.Provide, Decl(aliasBug.ts, 0, 12)) 28 >provide : Symbol(provide, Decl(aliasBug.ts, 5, 1)) 29 >Provide : Symbol(provide.Provide, Decl(aliasBug.ts, 0, 12)) 34 var p1: provide.Provide; // error here, but should be okay [all …]
|
| D | aliasErrors.symbols | 5 export class Provide { 6 >Provide : Symbol(Provide, Decl(aliasErrors.ts, 0, 12)) 14 import provide = foo; 15 >provide : Symbol(provide, Decl(aliasErrors.ts, 4, 1)) 21 >bar : Symbol(provide.bar, Decl(aliasErrors.ts, 2, 5)) 27 >bar : Symbol(provide.bar, Decl(aliasErrors.ts, 2, 5)) 48 var p = new provide.Provide(); 50 >provide.Provide : Symbol(provide.Provide, Decl(aliasErrors.ts, 0, 12)) 51 >provide : Symbol(provide, Decl(aliasErrors.ts, 4, 1)) 52 >Provide : Symbol(provide.Provide, Decl(aliasErrors.ts, 0, 12)) [all …]
|
| D | aliasBug.js | 3 export class Provide { 9 import provide = foo; 12 var p = new provide.Provide(); 15 var p1: provide.Provide; // error here, but should be okay 16 var p2: foo.Provide; 18 var p22 = new provide.Provide(); 25 var Provide = /** @class */ (function () { class 26 function Provide() { class in anonymousFunction916488420100.Provide 28 return Provide; 30 foo.Provide = Provide; [all …]
|
| D | aliasErrors.js | 3 export class Provide { 8 import provide = foo; 20 var p = new provide.Provide(); 25 var p1: provide.Provide; 26 var p2: foo.Provide; 28 var p22 = new provide.Provide(); 36 var Provide = /** @class */ (function () { class 37 function Provide() { class in anonymousFunction913d10610100.Provide 39 return Provide; 41 foo.Provide = Provide; [all …]
|
| D | aliasBug.errors.txt | 6 export class Provide { 12 import provide = foo; 15 var p = new provide.Provide(); 18 var p1: provide.Provide; // error here, but should be okay 19 var p2: foo.Provide; 23 var p22 = new provide.Provide();
|
| D | aliasErrors.errors.txt | 12 export class Provide { 17 import provide = foo; 41 var p = new provide.Provide(); 46 var p1: provide.Provide; 47 var p2: foo.Provide; 51 var p22 = new provide.Provide();
|
| D | objectLiteralWithSemicolons1.errors.txt | 1 …value exists in scope for the shorthand property 'a'. Either declare one or provide an initializer. 3 …value exists in scope for the shorthand property 'b'. Either declare one or provide an initializer. 5 …value exists in scope for the shorthand property 'c'. Either declare one or provide an initializer. 11 …value exists in scope for the shorthand property 'a'. Either declare one or provide an initializer. 15 …value exists in scope for the shorthand property 'b'. Either declare one or provide an initializer. 19 …value exists in scope for the shorthand property 'c'. Either declare one or provide an initializer.
|
| D | objectLiteralWithSemicolons2.errors.txt | 1 …value exists in scope for the shorthand property 'a'. Either declare one or provide an initializer. 3 …value exists in scope for the shorthand property 'b'. Either declare one or provide an initializer. 5 …value exists in scope for the shorthand property 'c'. Either declare one or provide an initializer. 12 …value exists in scope for the shorthand property 'a'. Either declare one or provide an initializer. 17 …value exists in scope for the shorthand property 'b'. Either declare one or provide an initializer. 22 …value exists in scope for the shorthand property 'c'. Either declare one or provide an initializer.
|
| D | objectLiteralWithSemicolons3.errors.txt | 1 …value exists in scope for the shorthand property 'a'. Either declare one or provide an initializer. 3 …value exists in scope for the shorthand property 'b'. Either declare one or provide an initializer. 5 …value exists in scope for the shorthand property 'c'. Either declare one or provide an initializer. 13 …value exists in scope for the shorthand property 'a'. Either declare one or provide an initializer. 18 …value exists in scope for the shorthand property 'b'. Either declare one or provide an initializer. 23 …value exists in scope for the shorthand property 'c'. Either declare one or provide an initializer.
|
| /third_party/rust/rust/compiler/rustc_passes/src/ |
| D | lib.rs | 49 pub fn provide(providers: &mut Providers) { in provide() function 50 check_attr::provide(providers); in provide() 51 check_const::provide(providers); in provide() 52 dead::provide(providers); in provide() 53 debugger_visualizer::provide(providers); in provide() 54 diagnostic_items::provide(providers); in provide() 55 entry::provide(providers); in provide() 56 lang_items::provide(providers); in provide() 57 lib_features::provide(providers); in provide() 58 loops::provide(providers); in provide() [all …]
|
| /third_party/rust/rust/compiler/rustc_ty_utils/src/ |
| D | lib.rs | 43 pub fn provide(providers: &mut Providers) { in provide() function 44 abi::provide(providers); in provide() 45 assoc::provide(providers); in provide() 46 common_traits::provide(providers); in provide() 47 consts::provide(providers); in provide() 48 implied_bounds::provide(providers); in provide() 49 layout::provide(providers); in provide() 50 needs_drop::provide(providers); in provide() 51 opaque_types::provide(providers); in provide() 52 representability::provide(providers); in provide() [all …]
|
| /third_party/typescript/tests/cases/compiler/ |
| D | aliasBug.ts | 4 export class Provide { class 10 import provide = foo; 13 var p = new provide.Provide(); 16 var p1: provide.Provide; // error here, but should be okay 17 var p2: foo.Provide; 19 var p22 = new provide.Provide();
|
| D | aliasErrors.ts | 2 export class Provide { class 7 import provide = foo; 19 var p = new provide.Provide(); 24 var p1: provide.Provide; 25 var p2: foo.Provide; 27 var p22 = new provide.Provide();
|
| /third_party/rust/rust/compiler/rustc_traits/src/ |
| D | lib.rs | 26 pub fn provide(p: &mut Providers) { in provide() function 27 dropck_outlives::provide(p); in provide() 28 evaluate_obligation::provide(p); in provide() 29 implied_outlives_bounds::provide(p); in provide() 30 normalize_projection_ty::provide(p); in provide() 31 normalize_erasing_regions::provide(p); in provide() 32 type_op::provide(p); in provide()
|
| /third_party/rust/rust/tests/ui/suggestions/ |
| D | const-no-type.rs | 16 //~| HELP provide a type for the item 22 //~| HELP provide a type for the item 28 //~| HELP provide a type for the item 35 //~| HELP provide a type for the constant 40 //~| HELP provide a type for the constant 45 //~| HELP provide a type for the static variable 50 //~| HELP provide a type for the static variable
|
| D | const-no-type.stderr | 5 | ^ help: provide a type for the constant: `: i32` 11 | ^ help: provide a type for the constant: `: &&i32` 17 | ^ help: provide a type for the static variable: `: Vec<String>` 23 | ^ help: provide a type for the static variable: `: &str` 29 | ^ help: provide a type for the item: `: <type>` 35 | ^ help: provide a type for the item: `: <type>` 41 | ^ help: provide a type for the item: `: <type>`
|
| /third_party/openhitls/testcode/sdv/testcase/crypto/elgamal/ |
| D | test_suite_sdv_eal_elgamal.data | 70 CRYPT_EAL_PkeyGetPub:provide 73 CRYPT_EAL_PkeyGetPrv:provide 76 CRYPT_EAL_PkeySetPrv:provide 79 CRYPT_EAL_PkeySetPub:provide 82 CRYPT_EAL_PkeyEncrypt:provide 85 CRYPT_EAL_PkeyDecrypt:provide 94 CRYPT_EAL_PkeyGetSecurityBits:provide
|
| /third_party/glfw/docs/ |
| D | compat.md | 60 GLFW uses the [X drag-and-drop protocol][XDND] to provide file drop events. If 66 GLFW uses the XRandR 1.3 extension to provide multi-monitor support. If the 71 GLFW uses the XRandR 1.3 and Xf86vidmode extensions to provide gamma ramp 75 GLFW uses the Xkb extension and detectable auto-repeat to provide keyboard 79 GLFW uses the XInput2 extension to provide raw, non-accelerated mouse motion 89 provide an expanded set of standard cursor shapes. If the running X server does 106 GLFW uses xkbcommon 0.5.0 to provide key and text input support. Earlier 109 GLFW uses the [xdg-shell][] protocol to provide better window management. This 131 (drawn by the window manager). On systems that do not provide either libdecor 171 `GLX_SGI_swap_control` extensions to provide vertical retrace synchronization [all …]
|
| /third_party/rust/rust/tests/ui/parser/ |
| D | item-free-static-no-body-semantic-fail.stderr | 7 | help: provide a definition for the static: `= <expr>;` 15 | help: provide a definition for the static: `= <expr>;` 23 | help: provide a definition for the static: `= <expr>;` 31 | help: provide a definition for the static: `= <expr>;` 37 | ^ help: provide a type for the item: `: <type>` 43 | ^ help: provide a type for the item: `: <type>`
|
| /third_party/rust/rust/.github/ISSUE_TEMPLATE/ |
| D | diagnostics.yaml | 10 …Please provide a short summary of the bug, along with any information you feel relevant to replica… 12 …nimal reproduction case (something that would work in isolation), please provide the steps or even… 17 description: Please provide code that can reproduce the problem 26 description: Please provide the `rustc` output you see 35 description: Please provide what the output *should* be 44 … description: If the problem is not self-explanatory, please provide a rationale for the change.
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
| D | DenseMapInfo.h | 36 // Provide DenseMapInfo for all pointers. 59 // Provide DenseMapInfo for chars. 70 // Provide DenseMapInfo for unsigned chars. 81 // Provide DenseMapInfo for unsigned shorts. 92 // Provide DenseMapInfo for unsigned ints. 103 // Provide DenseMapInfo for unsigned longs. 117 // Provide DenseMapInfo for unsigned long longs. 132 // Provide DenseMapInfo for shorts. 140 // Provide DenseMapInfo for ints. 151 // Provide DenseMapInfo for longs. [all …]
|
| /third_party/rust/rust/tests/ui/lint/ |
| D | lint-unsafe-code.stderr | 7 … libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when y… 20 … libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when y… 28 … libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when y… 36 … libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when y… 44 … libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when y… 52 … libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when y… 60 … with overridden link sections on items is unpredictable and Rust cannot provide guarantees when y… 68 … with overridden link sections on items is unpredictable and Rust cannot provide guarantees when y… 76 … libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when y… 84 … libraries exporting duplicate symbol names is undefined and Rust cannot provide guarantees when y… [all …]
|
| /third_party/rust/rust/tests/ui/argument-suggestions/ |
| D | missing_arguments.stderr | 12 help: provide the argument 28 help: provide the arguments 44 help: provide the argument 60 help: provide the arguments 76 help: provide the argument 92 help: provide the argument 108 help: provide the arguments 124 help: provide the arguments 140 help: provide the argument 156 help: provide the argument [all …]
|