Home
last modified time | relevance | path

Searched full:specifier (Results 1 – 25 of 774) sorted by relevance

12345678910>>...31

/third_party/typescript/tests/baselines/reference/
DimportCallExpressionSpecifierNotStringTypeError.errors.txt1 …sionSpecifierNotStringTypeError.ts(5,8): error TS7036: Dynamic import's specifier must be of type …
2 …ionSpecifierNotStringTypeError.ts(6,17): error TS7036: Dynamic import's specifier must be of type …
3 …ionSpecifierNotStringTypeError.ts(7,19): error TS7036: Dynamic import's specifier must be of type …
4 …onSpecifierNotStringTypeError.ts(12,17): error TS7036: Dynamic import's specifier must be of type …
5 …onSpecifierNotStringTypeError.ts(13,17): error TS7036: Dynamic import's specifier must be of type …
12 // Error specifier is not assignable to string
15 !!! error TS7036: Dynamic import's specifier must be of type 'string', but here has type 'boolean'.
18 !!! error TS7036: Dynamic import's specifier must be of type 'string', but here has type 'boolean'.
21 !!! error TS7036: Dynamic import's specifier must be of type 'string', but here has type 'boolean |…
28 !!! error TS7036: Dynamic import's specifier must be of type 'string', but here has type 'string[]'.
[all …]
DimportCallExpression5ES2020.errors.txt1 tests/cases/conformance/dynamicImport/2.ts(3,23): error TS7036: Dynamic import's specifier must be …
2 tests/cases/conformance/dynamicImport/2.ts(4,24): error TS7036: Dynamic import's specifier must be …
3 tests/cases/conformance/dynamicImport/2.ts(5,24): error TS7036: Dynamic import's specifier must be …
4 tests/cases/conformance/dynamicImport/2.ts(6,24): error TS7036: Dynamic import's specifier must be …
22 !!! error TS7036: Dynamic import's specifier must be of type 'string', but here has type '"./0" | u…
25 !!! error TS7036: Dynamic import's specifier must be of type 'string', but here has type 'undefined…
28 !!! error TS7036: Dynamic import's specifier must be of type 'string', but here has type '"./1" | n…
31 !!! error TS7036: Dynamic import's specifier must be of type 'string', but here has type 'null'.
DimportCallExpression6ES2020.errors.txt1 tests/cases/conformance/dynamicImport/2.ts(4,24): error TS7036: Dynamic import's specifier must be …
2 tests/cases/conformance/dynamicImport/2.ts(6,24): error TS7036: Dynamic import's specifier must be …
21 !!! error TS7036: Dynamic import's specifier must be of type 'string', but here has type 'undefined…
25 !!! error TS7036: Dynamic import's specifier must be of type 'string', but here has type 'null'.
/third_party/rust/rust/tests/ui/suggestions/
Dmissing-lifetime-specifier.stderr2 --> $DIR/missing-lifetime-specifier.rs:18:44
14 --> $DIR/missing-lifetime-specifier.rs:18:44
27 --> $DIR/missing-lifetime-specifier.rs:23:44
41 --> $DIR/missing-lifetime-specifier.rs:23:44
56 --> $DIR/missing-lifetime-specifier.rs:28:47
68 --> $DIR/missing-lifetime-specifier.rs:28:47
81 --> $DIR/missing-lifetime-specifier.rs:33:44
95 --> $DIR/missing-lifetime-specifier.rs:33:44
109 error[E0106]: missing lifetime specifier
110 --> $DIR/missing-lifetime-specifier.rs:47:44
[all …]
Dmissing-lifetime-in-assoc-const-type.rs2 const A: &str = ""; //~ ERROR missing lifetime specifier
3 const B: S = S { s: &() }; //~ ERROR missing lifetime specifier
4 const C: &'_ str = ""; //~ ERROR missing lifetime specifier
5 const D: T = T { a: &(), b: &() }; //~ ERROR missing lifetime specifier
Dimpl-trait-missing-lifetime-gated.rs11 //~| ERROR missing lifetime specifier
20 //~^ ERROR missing lifetime specifier
29 //~| ERROR missing lifetime specifier
38 //~^ ERROR missing lifetime specifier
49 //~| ERROR missing lifetime specifier
60 //~| ERROR missing lifetime specifier
Dreturn-elided-lifetime.rs7 //~^ ERROR missing lifetime specifier [E0106]
12 //~^ ERROR missing lifetime specifier [E0106]
18 //~^ ERROR missing lifetime specifier [E0106]
23 //~^ ERROR missing lifetime specifier [E0106]
28 //~^ ERROR missing lifetime specifier [E0106]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/
Deap_gpsk.c32 int vendor; /* CSuite/Specifier */
33 int specifier; /* CSuite/Specifier */ member
202 data->specifier = EAP_GPSK_CIPHER_RESERVED; in eap_gpsk_select_csuite()
205 int vendor, specifier; in eap_gpsk_select_csuite() local
207 specifier = WPA_GET_BE16(csuite->specifier); in eap_gpsk_select_csuite()
209 i, vendor, specifier); in eap_gpsk_select_csuite()
211 data->specifier == EAP_GPSK_CIPHER_RESERVED && in eap_gpsk_select_csuite()
212 eap_gpsk_supported_ciphersuite(vendor, specifier) && in eap_gpsk_select_csuite()
213 (!data->forced_cipher || data->forced_cipher == specifier)) in eap_gpsk_select_csuite()
216 data->specifier = specifier; in eap_gpsk_select_csuite()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/
Deap_gpsk.c32 int vendor; /* CSuite/Specifier */
33 int specifier; /* CSuite/Specifier */ member
202 data->specifier = EAP_GPSK_CIPHER_RESERVED; in eap_gpsk_select_csuite()
205 int vendor, specifier; in eap_gpsk_select_csuite() local
207 specifier = WPA_GET_BE16(csuite->specifier); in eap_gpsk_select_csuite()
209 i, vendor, specifier); in eap_gpsk_select_csuite()
211 data->specifier == EAP_GPSK_CIPHER_RESERVED && in eap_gpsk_select_csuite()
212 eap_gpsk_supported_ciphersuite(vendor, specifier) && in eap_gpsk_select_csuite()
213 (!data->forced_cipher || data->forced_cipher == specifier)) in eap_gpsk_select_csuite()
216 data->specifier = specifier; in eap_gpsk_select_csuite()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_common/
Deap_gpsk_common.c21 * @specifier: CSuite/Specifier
24 int eap_gpsk_supported_ciphersuite(int vendor, int specifier) in eap_gpsk_supported_ciphersuite() argument
27 specifier == EAP_GPSK_CIPHER_AES) in eap_gpsk_supported_ciphersuite()
31 specifier == EAP_GPSK_CIPHER_SHA256) in eap_gpsk_supported_ciphersuite()
151 WPA_PUT_BE16(pos, csuite_specifier); /* CSuite/Specifier */ in eap_gpsk_derive_keys_helper()
264 * @specifier: CSuite/Specifier
280 int specifier, in eap_gpsk_derive_keys() argument
291 vendor, specifier); in eap_gpsk_derive_keys()
317 switch (specifier) { in eap_gpsk_derive_keys()
332 "key derivation", vendor, specifier); in eap_gpsk_derive_keys()
[all …]
Deap_gpsk_common.h41 u8 specifier[2]; member
48 int eap_gpsk_supported_ciphersuite(int vendor, int specifier);
50 int specifier,
57 int specifier,
62 size_t eap_gpsk_mic_len(int vendor, int specifier);
64 int specifier, const u8 *data, size_t len, u8 *mic);
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_common/
Deap_gpsk_common.c21 * @specifier: CSuite/Specifier
24 int eap_gpsk_supported_ciphersuite(int vendor, int specifier) in eap_gpsk_supported_ciphersuite() argument
27 specifier == EAP_GPSK_CIPHER_AES) in eap_gpsk_supported_ciphersuite()
31 specifier == EAP_GPSK_CIPHER_SHA256) in eap_gpsk_supported_ciphersuite()
151 WPA_PUT_BE16(pos, csuite_specifier); /* CSuite/Specifier */ in eap_gpsk_derive_keys_helper()
264 * @specifier: CSuite/Specifier
280 int specifier, in eap_gpsk_derive_keys() argument
291 vendor, specifier); in eap_gpsk_derive_keys()
317 switch (specifier) { in eap_gpsk_derive_keys()
332 "key derivation", vendor, specifier); in eap_gpsk_derive_keys()
[all …]
Deap_gpsk_common.h41 u8 specifier[2]; member
48 int eap_gpsk_supported_ciphersuite(int vendor, int specifier);
50 int specifier,
57 int specifier,
62 size_t eap_gpsk_mic_len(int vendor, int specifier);
64 int specifier, const u8 *data, size_t len, u8 *mic);
/third_party/rust/rust/tests/ui/lifetimes/
Dlifetime-elision-return-type-requires-explicit-lifetime.rs2 fn f() -> &isize { //~ ERROR missing lifetime specifier in f()
7 fn g(_x: &isize, _y: &isize) -> &isize { //~ ERROR missing lifetime specifier in g()
17 fn h(_x: &Foo) -> &isize { //~ ERROR missing lifetime specifier in h()
21 fn i(_x: isize) -> &isize { //~ ERROR missing lifetime specifier in i()
34 fn j(_x: StaticStr) -> &isize { //~ ERROR missing lifetime specifier in j()
41 //~^ ERROR missing lifetime specifier in k()
46 //~^ ERROR missing lifetime specifier
Dlifetime-elision-return-type-requires-explicit-lifetime.stderr1 error[E0106]: missing lifetime specifier
13 error[E0106]: missing lifetime specifier
25 error[E0106]: missing lifetime specifier
37 error[E0106]: missing lifetime specifier
49 error[E0106]: missing lifetime specifier
61 error[E0106]: missing lifetime specifier
73 error[E0106]: missing lifetime specifier
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCSectionMachO.cpp132 // the attribute specifier. in PrintSwitchToSection()
177 /// ParseSectionSpecifier - Parse the section specifier indicated by "Spec".
181 /// specifier is present, this returns a string indicating the problem.
204 return "mach-o section specifier requires a segment whose length is " in ParseSectionSpecifier()
209 return "mach-o section specifier requires a segment and section " in ParseSectionSpecifier()
213 return "mach-o section specifier requires a section whose length is " in ParseSectionSpecifier()
231 return "mach-o section specifier uses an unknown section type"; in ParseSectionSpecifier()
239 // S_SYMBOL_STUBS always require a symbol stub size specifier. in ParseSectionSpecifier()
241 return "mach-o section specifier of type 'symbol_stubs' requires a size " in ParseSectionSpecifier()
242 "specifier"; in ParseSectionSpecifier()
[all …]
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/
DFormatSpec.java35 * A specifier for the three types of format available in a formatting rule, "national",
39 * <p>The basic syntax of a specifier is something like {@code "XX XXX-XXXX"}, where '{@code X}'
41 * syntax, a national specifier with this format would represent the "pattern" attribute
50 * any carrier specific format specifier).
71 * <p>If no carrier specific format specifier is present, the extraction of a format rule will
86 * <p>An international format specifier must exist if international formatting is possible (even if
87 * it is identical to the national format specifier). If no international specifier exists, then
94 * '{@code $}' is special, and is prohibited from ever appearing in a format specifier (even though
100 * of the range tree must match the possible lengths of all defined specifier strings.
105 * Returns a format specifier from the serialized fields. Note that the given non-local
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/
Deap_server_gpsk.c35 int specifier; /* CSuite/Specifier */ member
79 WPA_PUT_BE16(data->csuite_list[data->csuite_count].specifier, in eap_gpsk_init()
87 WPA_PUT_BE16(data->csuite_list[data->csuite_count].specifier, in eap_gpsk_init()
154 miclen = eap_gpsk_mic_len(data->vendor, data->specifier); in eap_gpsk_build_gpsk_3()
175 WPA_PUT_BE16(csuite->specifier, data->specifier); in eap_gpsk_build_gpsk_3()
182 data->specifier, start, pos - start, pos) < 0) in eap_gpsk_build_gpsk_3()
374 WPA_GET_BE16(csuite->specifier)); in eap_gpsk_process_gpsk_2()
379 data->specifier = WPA_GET_BE16(csuite->specifier); in eap_gpsk_process_gpsk_2()
381 data->vendor, data->specifier); in eap_gpsk_process_gpsk_2()
409 data->vendor, data->specifier, in eap_gpsk_process_gpsk_2()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/
Deap_server_gpsk.c35 int specifier; /* CSuite/Specifier */ member
79 WPA_PUT_BE16(data->csuite_list[data->csuite_count].specifier, in eap_gpsk_init()
87 WPA_PUT_BE16(data->csuite_list[data->csuite_count].specifier, in eap_gpsk_init()
154 miclen = eap_gpsk_mic_len(data->vendor, data->specifier); in eap_gpsk_build_gpsk_3()
175 WPA_PUT_BE16(csuite->specifier, data->specifier); in eap_gpsk_build_gpsk_3()
182 data->specifier, start, pos - start, pos) < 0) in eap_gpsk_build_gpsk_3()
374 WPA_GET_BE16(csuite->specifier)); in eap_gpsk_process_gpsk_2()
379 data->specifier = WPA_GET_BE16(csuite->specifier); in eap_gpsk_process_gpsk_2()
381 data->vendor, data->specifier); in eap_gpsk_process_gpsk_2()
409 data->vendor, data->specifier, in eap_gpsk_process_gpsk_2()
[all …]
/third_party/rust/rust/tests/ui/generics/
Dwrong-number-of-args.rs50 //~| ERROR missing lifetime specifier
59 //~^ ERROR missing lifetime specifier
66 //~| ERROR missing lifetime specifier
121 //~^ ERROR missing lifetime specifier
138 //~^ ERROR missing lifetime specifier
164 //~^ ERROR missing lifetime specifier
173 //~^ ERROR missing lifetime specifier
208 //~| ERROR missing lifetime specifier
223 //~^ ERROR missing lifetime specifier
228 //~^ ERROR missing lifetime specifier
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
DPDBContext.cpp34 DILineInfoSpecifier Specifier) { in getLineInfoForAddress() argument
36 Result.FunctionName = getFunctionName(Address.Address, Specifier.FNKind); in getLineInfoForAddress()
58 Specifier.FLIKind != DILineInfoSpecifier::FileLineInfoKind::None) in getLineInfoForAddress()
68 DILineInfoSpecifier Specifier) { in getLineInfoForAddressRange() argument
79 {LineInfo->getVirtualAddress(), Address.SectionIndex}, Specifier); in getLineInfoForAddressRange()
87 DILineInfoSpecifier Specifier) { in getInliningInfoForAddress() argument
89 DILineInfo Frame = getLineInfoForAddress(Address, Specifier); in getInliningInfoForAddress()
/third_party/skia/m133/third_party/externals/icu/source/i18n/
Dtransreg.h293 * Return a registered source specifier.
294 * @param index which specifier to return, from 0 to n-1, where
296 * @param result fill-in parameter to receive the source specifier.
305 * source specifier.
306 * @param source the given source specifier.
308 * source specifier.
313 * Return a registered target specifier for a given source.
314 * @param index which specifier to return, from 0 to n-1, where
316 * @param source the source specifier
317 * @param result fill-in parameter to receive the target specifier.
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dtransreg.h293 * Return a registered source specifier.
294 * @param index which specifier to return, from 0 to n-1, where
296 * @param result fill-in paramter to receive the source specifier.
305 * source specifier.
306 * @param source the given source specifier.
308 * source specifier.
313 * Return a registered target specifier for a given source.
314 * @param index which specifier to return, from 0 to n-1, where
316 * @param source the source specifier
317 * @param result fill-in paramter to receive the target specifier.
[all …]
/third_party/icu/icu4c/source/i18n/
Dtransreg.h293 * Return a registered source specifier.
294 * @param index which specifier to return, from 0 to n-1, where
296 * @param result fill-in parameter to receive the source specifier.
305 * source specifier.
306 * @param source the given source specifier.
308 * source specifier.
313 * Return a registered target specifier for a given source.
314 * @param index which specifier to return, from 0 to n-1, where
316 * @param source the source specifier
317 * @param result fill-in parameter to receive the target specifier.
[all …]
/third_party/rust/rust/tests/ui/error-codes/
DE0106.stderr1 error[E0106]: missing lifetime specifier
13 error[E0106]: missing lifetime specifier
26 error[E0106]: missing lifetime specifier
37 error[E0106]: missing lifetime specifier

12345678910>>...31