Searched full:instead (Results 1 – 25 of 9613) sorted by relevance
12345678910>>...385
| /third_party/typescript/src/deprecatedCompat/4.0/ |
| D | nodeFactoryTopLevelExports.ts | 20 …priate method on 'ts.factory' or the 'factory' supplied by your transformation context instead." }; 22 …ed Use `factory.createNodeArray` or the factory supplied by your transformation context instead. */ 25 …e `factory.createNumericLiteral` or the factory supplied by your transformation context instead. */ 28 …se `factory.createBigIntLiteral` or the factory supplied by your transformation context instead. */ 31 …se `factory.createStringLiteral` or the factory supplied by your transformation context instead. */ 34 …ory.createStringLiteralFromNode` or the factory supplied by your transformation context instead. */ 37 ….createRegularExpressionLiteral` or the factory supplied by your transformation context instead. */ 40 …Use `factory.createLoopVariable` or the factory supplied by your transformation context instead. */ 43 …d Use `factory.createUniqueName` or the factory supplied by your transformation context instead. */ 46 …factory.createPrivateIdentifier` or the factory supplied by your transformation context instead. */ [all …]
|
| /third_party/rust/rust/src/tools/clippy/tests/ui/ |
| D | single_char_pattern.stderr | 5 | ^^^ help: try using a `char` instead: `'x'` 13 | ^^^ help: try using a `char` instead: `'ß'` 19 | ^^^ help: try using a `char` instead: `'ℝ'` 25 | ^^^^ help: try using a `char` instead: `''` 31 | ^^^ help: try using a `char` instead: `'x'` 37 | ^^^ help: try using a `char` instead: `'x'` 43 | ^^^ help: try using a `char` instead: `'x'` 49 | ^^^ help: try using a `char` instead: `'x'` 55 | ^^^ help: try using a `char` instead: `'x'` 61 | ^^^ help: try using a `char` instead: `'x'` [all …]
|
| D | option_as_ref_deref.stderr | 1 …ef)` on an Option value. This can be done more directly by calling `opt.clone().as_deref()` instead 5 …| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using as_deref instead: `opt.clone(… 9 …ef)` on an Option value. This can be done more directly by calling `opt.clone().as_deref()` instead 17 | |_________^ help: try using as_deref instead: `opt.clone().as_deref()` 19 …ef_mut)` on an Option value. This can be done more directly by calling `opt.as_deref_mut()` instead 23 …| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using as_deref_mut instead: `opt.as_… 25 …ng::as_str)` on an Option value. This can be done more directly by calling `opt.as_deref()` instead 29 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using as_deref instead: `opt.as_deref()` 31 …x.as_str())` on an Option value. This can be done more directly by calling `opt.as_deref()` instead 35 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using as_deref instead: `opt.as_deref()` [all …]
|
| D | implicit_saturating_add.stderr | 7 | |_____^ help: use instead: `u_8 = u_8.saturating_add(1);` 17 | |_____^ help: use instead: `u_8 = u_8.saturating_add(1);` 25 | |_____^ help: use instead: `u_16 = u_16.saturating_add(1);` 33 | |_____^ help: use instead: `u_16 = u_16.saturating_add(1);` 41 | |_____^ help: use instead: `u_16 = u_16.saturating_add(1);` 49 | |_____^ help: use instead: `u_32 = u_32.saturating_add(1);` 57 | |_____^ help: use instead: `u_32 = u_32.saturating_add(1);` 65 | |_____^ help: use instead: `u_32 = u_32.saturating_add(1);` 73 | |_____^ help: use instead: `u_64 = u_64.saturating_add(1);` 81 | |_____^ help: use instead: `u_64 = u_64.saturating_add(1);` [all …]
|
| D | needless_collect_indirect.stderr | 7 | ------------------------- the iterator could be used here instead 10 help: use the original Iterator instead of collecting it and then producing a new one 22 | ------------------ the iterator could be used here instead 24 help: take the original Iterator's count instead of collecting it and finding the length 36 | ------------------------- the iterator could be used here instead 38 help: check if the original Iterator has anything instead of collecting it and seeing if it's empty 50 | ------------------------------- the iterator could be used here instead 52 help: check if the original Iterator contains an element instead of collecting then checking 64 | ------------------------------ the iterator could be used here instead 66 help: check if the original Iterator contains an element instead of collecting then checking [all …]
|
| D | std_instead_of_core.stderr | 1 error: used import from `std` instead of `core` 8 = note: `-D clippy::std-instead-of-core` implied by `-D warnings` 10 error: used import from `std` instead of `core` 18 error: used import from `std` instead of `core` 26 error: used import from `std` instead of `core` 34 error: used import from `std` instead of `core` 42 error: used import from `std` instead of `core` 50 error: used import from `std` instead of `core` 58 error: used import from `std` instead of `core` 66 error: used import from `std` instead of `core` [all …]
|
| D | explicit_iter_loop.stderr | 1 error: it is more concise to loop over references to containers instead of using explicit iteration… 13 error: it is more concise to loop over references to containers instead of using explicit iteration… 19 error: it is more concise to loop over references to containers instead of using explicit iteration… 25 error: it is more concise to loop over references to containers instead of using explicit iteration… 31 error: it is more concise to loop over references to containers instead of using explicit iteration… 37 error: it is more concise to loop over references to containers instead of using explicit iteration… 43 error: it is more concise to loop over references to containers instead of using explicit iteration… 57 error: it is more concise to loop over references to containers instead of using explicit iteration… 63 error: it is more concise to loop over references to containers instead of using explicit iteration… 69 error: it is more concise to loop over references to containers instead of using explicit iteration… [all …]
|
| D | map_unwrap_or.stderr | 1 …or(<a>)` on an `Option` value. This can be done more directly by calling `map_or(<a>, <f>)` instead 11 help: use `map_or(<a>, <f>)` instead 17 …or(<a>)` on an `Option` value. This can be done more directly by calling `map_or(<a>, <f>)` instead 27 help: use `map_or(<a>, <f>)` instead 35 …or(<a>)` on an `Option` value. This can be done more directly by calling `map_or(<a>, <f>)` instead 45 help: use `map_or(<a>, <f>)` instead 52 …p_or(None)` on an `Option` value. This can be done more directly by calling `and_then(<f>)` instead 58 help: use `and_then(<f>)` instead 64 …p_or(None)` on an `Option` value. This can be done more directly by calling `and_then(<f>)` instead 74 help: use `and_then(<f>)` instead [all …]
|
| D | unnecessary_lazy_eval.stderr | 7 | help: use `unwrap_or(..)` instead: `unwrap_or(2)` 17 | help: use `unwrap_or(..)` instead: `unwrap_or(astronomers_pi)` 25 | help: use `unwrap_or(..)` instead: `unwrap_or(ext_str.some_field)` 33 | help: use `and(..)` instead: `and(ext_opt)` 41 | help: use `or(..)` instead: `or(ext_opt)` 49 | help: use `or(..)` instead: `or(None)` 57 | help: use `get_or_insert(..)` instead: `get_or_insert(2)` 65 | help: use `ok_or(..)` instead: `ok_or(2)` 73 | help: use `unwrap_or(..)` instead: `unwrap_or(Some((1, 2)))` 81 | help: use `then_some(..)` instead: `then_some(astronomers_pi)` [all …]
|
| D | search_is_some_fixable_some.stderr | 5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `any()` instead: `any(|x| *x < 0)` 13 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `any()` instead: `any(|x| **y == x)` 19 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `any()` instead: `any(|x| x == 0)` 25 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `any()` instead: `any(|x| *x == 0)` 31 …| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `any()` instead: … 37 …| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `any()` instead: `any(|x|… 43 … ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `any()` instead: `any(|x| x == 0 … 49 … ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `any()` instead: `any(|x| [1, 2, … 57 …| |__________________^ help: use `any()` instead: `any(|x| [1, 2, 3].contains(&x) || x == 0 || [4,… 63 … | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `any()` instead: `any(|&x| x < 0)` [all …]
|
| D | trivially_copy_pass_by_ref.stderr | 5 | ^^^^ help: consider passing by value instead: `u32` 17 | ^^^^ help: consider passing by value instead: `Foo` 23 | ^^^^ help: consider passing by value instead: `Baz` 29 | ^^^^^ help: consider passing by value instead: `self` 35 | ^^^^ help: consider passing by value instead: `u32` 41 | ^^^^ help: consider passing by value instead: `Foo` 47 | ^^^^ help: consider passing by value instead: `Baz` 53 | ^^^^ help: consider passing by value instead: `u32` 59 | ^^^^ help: consider passing by value instead: `Foo` 65 | ^^^^ help: consider passing by value instead: `Baz` [all …]
|
| D | partialeq_to_none.stderr | 5 | ^^^^^^^^^ help: use `Option::is_some()` instead: `f.is_some()` 13 | ^^^^^^^^^ help: use `Option::is_none()` instead: `x.is_none()` 19 | ^^^^^^^^^ help: use `Option::is_some()` instead: `x.is_some()` 25 | ^^^^^^^^^ help: use `Option::is_none()` instead: `x.is_none()` 31 | ^^^^^^^^^ help: use `Option::is_some()` instead: `x.is_some()` 37 | ^^^^^^^^^^^^^^^^ help: use `Option::is_none()` instead: `foobar().is_none()` 43 | ^^^^^^^^^^^^^^^^^^ help: use `Option::is_some()` instead: `bar().ok().is_some()` 49 | ^^^^^^^^^^^^^^^^^^^ help: use `Option::is_some()` instead: `Some(1 + 2).is_some()` 55 | ^^^^^^^^^^^^^^^^^^^ help: use `Option::is_none()` instead: `{ Some(0) }.is_none()` 69 help: use `Option::is_some()` instead [all …]
|
| /third_party/rust/rust/src/tools/clippy/tests/ui/size_of_in_element_count/ |
| D | functions.stderr | 1 error: found a count of bytes instead of a count of elements of `T` 7 …= help: use a count of elements instead of a count of bytes, it already gets multiplied by the siz… 10 error: found a count of bytes instead of a count of elements of `T` 16 …= help: use a count of elements instead of a count of bytes, it already gets multiplied by the siz… 18 error: found a count of bytes instead of a count of elements of `T` 24 …= help: use a count of elements instead of a count of bytes, it already gets multiplied by the siz… 26 error: found a count of bytes instead of a count of elements of `T` 32 …= help: use a count of elements instead of a count of bytes, it already gets multiplied by the siz… 34 error: found a count of bytes instead of a count of elements of `T` 40 …= help: use a count of elements instead of a count of bytes, it already gets multiplied by the siz… [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | uncalledFunctionChecksInConditional.errors.txt | 1 …ion will always return true since this function is always defined. Did you mean to call it instead? 2 …ion will always return true since this function is always defined. Did you mean to call it instead? 3 …ion will always return true since this function is always defined. Did you mean to call it instead? 4 …ion will always return true since this function is always defined. Did you mean to call it instead? 5 …ion will always return true since this function is always defined. Did you mean to call it instead? 6 …ion will always return true since this function is always defined. Did you mean to call it instead? 7 …ion will always return true since this function is always defined. Did you mean to call it instead? 8 …ion will always return true since this function is always defined. Did you mean to call it instead? 9 …ion will always return true since this function is always defined. Did you mean to call it instead? 19 …ion will always return true since this function is always defined. Did you mean to call it instead? [all …]
|
| D | truthinessCallExpressionCoercion2.errors.txt | 1 …ion will always return true since this function is always defined. Did you mean to call it instead? 2 …ion will always return true since this function is always defined. Did you mean to call it instead? 3 …ion will always return true since this function is always defined. Did you mean to call it instead? 4 …ion will always return true since this function is always defined. Did you mean to call it instead? 5 …ion will always return true since this function is always defined. Did you mean to call it instead? 6 …ion will always return true since this function is always defined. Did you mean to call it instead? 7 …ion will always return true since this function is always defined. Did you mean to call it instead? 8 …ion will always return true since this function is always defined. Did you mean to call it instead? 9 …ion will always return true since this function is always defined. Did you mean to call it instead? 10 …ion will always return true since this function is always defined. Did you mean to call it instead? [all …]
|
| D | nodeModulesForbidenSyntax(module=nodenext).errors.txt | 2 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 3 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 5 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 6 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 8 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 9 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 11 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 12 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 14 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 15 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. [all …]
|
| D | nodeModulesForbidenSyntax(module=node16).errors.txt | 2 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 3 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 5 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 6 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 8 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 9 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 11 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 12 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 14 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. 15 …: This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead. [all …]
|
| D | es6ImportDefaultBindingFollowedWithNamedImport1.errors.txt | 1 …'. Did you mean to use 'import a from "es6ImportDefaultBindingFollowedWithNamedImport1_0"' instead? 2 …'. Did you mean to use 'import a from "es6ImportDefaultBindingFollowedWithNamedImport1_0"' instead? 3 …'. Did you mean to use 'import x from "es6ImportDefaultBindingFollowedWithNamedImport1_0"' instead? 4 …'. Did you mean to use 'import a from "es6ImportDefaultBindingFollowedWithNamedImport1_0"' instead? 5 …'. Did you mean to use 'import x from "es6ImportDefaultBindingFollowedWithNamedImport1_0"' instead? 6 …'. Did you mean to use 'import m from "es6ImportDefaultBindingFollowedWithNamedImport1_0"' instead? 18 …'. Did you mean to use 'import a from "es6ImportDefaultBindingFollowedWithNamedImport1_0"' instead? 22 …'. Did you mean to use 'import a from "es6ImportDefaultBindingFollowedWithNamedImport1_0"' instead? 26 …'. Did you mean to use 'import x from "es6ImportDefaultBindingFollowedWithNamedImport1_0"' instead? 28 …'. Did you mean to use 'import a from "es6ImportDefaultBindingFollowedWithNamedImport1_0"' instead? [all …]
|
| D | es6ImportDefaultBindingFollowedWithNamedImport1InEs5.errors.txt | 1 …you mean to use 'import a from "./es6ImportDefaultBindingFollowedWithNamedImport1InEs5_0"' instead? 2 …you mean to use 'import a from "./es6ImportDefaultBindingFollowedWithNamedImport1InEs5_0"' instead? 3 …you mean to use 'import x from "./es6ImportDefaultBindingFollowedWithNamedImport1InEs5_0"' instead? 4 …you mean to use 'import a from "./es6ImportDefaultBindingFollowedWithNamedImport1InEs5_0"' instead? 5 …you mean to use 'import x from "./es6ImportDefaultBindingFollowedWithNamedImport1InEs5_0"' instead? 6 …you mean to use 'import m from "./es6ImportDefaultBindingFollowedWithNamedImport1InEs5_0"' instead? 18 …you mean to use 'import a from "./es6ImportDefaultBindingFollowedWithNamedImport1InEs5_0"' instead? 22 …you mean to use 'import a from "./es6ImportDefaultBindingFollowedWithNamedImport1InEs5_0"' instead? 26 …you mean to use 'import x from "./es6ImportDefaultBindingFollowedWithNamedImport1InEs5_0"' instead? 28 …you mean to use 'import a from "./es6ImportDefaultBindingFollowedWithNamedImport1InEs5_0"' instead? [all …]
|
| D | es6ImportDefaultBindingFollowedWithNamedImportDts1.errors.txt | 1 …le '"./server"' has no exported member 'a'. Did you mean to use 'import a from "./server"' instead? 2 …le '"./server"' has no exported member 'a'. Did you mean to use 'import a from "./server"' instead? 3 …le '"./server"' has no exported member 'x'. Did you mean to use 'import x from "./server"' instead? 4 …le '"./server"' has no exported member 'a'. Did you mean to use 'import a from "./server"' instead? 5 …le '"./server"' has no exported member 'x'. Did you mean to use 'import x from "./server"' instead? 6 …le '"./server"' has no exported member 'm'. Did you mean to use 'import m from "./server"' instead? 18 …le '"./server"' has no exported member 'a'. Did you mean to use 'import a from "./server"' instead? 22 …le '"./server"' has no exported member 'a'. Did you mean to use 'import a from "./server"' instead? 26 …le '"./server"' has no exported member 'x'. Did you mean to use 'import x from "./server"' instead? 28 …le '"./server"' has no exported member 'a'. Did you mean to use 'import a from "./server"' instead? [all …]
|
| /third_party/cups/cups/ |
| D | ppd.h | 359 …cupsGetPPD(const char *name) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead."); 360 …p_t *http, const char *name) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead."); 361 …har *buffer, size_t bufsize) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead."); 362 …p_t *http, const char *name) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead."); 363 …ons, cups_option_t *options) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead."); 365 …d ppdClose(ppd_file_t *ppd) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead."); 367 … ppd_choice_t ***choices) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead."); 368 …pdConflicts(ppd_file_t *ppd) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead."); 370 … ppd_section_t section) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead."); 372 … ppd_section_t section) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead."); [all …]
|
| /third_party/gn/src/base/ |
| D | values.h | 97 // DEPRECATED, use std::make_unique<Value>(const BlobStorage&) instead. 227 // Note: If there is only one component in the path, use FindKey() instead. 237 // instead. 261 // Note: If there is only one component in the path, use SetKey() instead. 278 // Note: If there is only one component in the path, use RemoveKey() instead. 302 // DEPRECATED, use GetBool() instead. 304 // DEPRECATED, use GetInt() instead. 306 // DEPRECATED, use GetString() instead. 312 // DEPRECATED, use GetList() instead. 324 // DEPRECATED, use Value::Clone() instead. [all …]
|
| /third_party/skia/m133/resources/sksl/errors/ |
| D | VectorSlice.rts | 4 // A vector-slice can be performed in SkSL (or GLSL) by using a swizzle instead. 22 'half4' is not a valid parameter to 'half3' constructor; use '.xyz' instead 23 'half4' is not a valid parameter to 'half2' constructor; use '.xy' instead 24 'half4' is not a valid parameter to 'half' constructor; use '.x' instead 25 'int4' is not a valid parameter to 'int3' constructor; use '.xyz' instead 26 'int4' is not a valid parameter to 'int2' constructor; use '.xy' instead 27 'int4' is not a valid parameter to 'int' constructor; use '.x' instead 28 'bool4' is not a valid parameter to 'bool3' constructor; use '.xyz' instead 29 'bool4' is not a valid parameter to 'bool2' constructor; use '.xy' instead 30 'bool4' is not a valid parameter to 'bool' constructor; use '.x' instead
|
| /third_party/skia/tests/sksl/errors/ |
| D | VectorSlice.glsl | 3 error: 7: 'half4' is not a valid parameter to 'half3' constructor; use '.xyz' instead 4 error: 8: 'half4' is not a valid parameter to 'half2' constructor; use '.xy' instead 5 error: 9: 'half4' is not a valid parameter to 'half' constructor; use '.x' instead 6 error: 12: 'int4' is not a valid parameter to 'int3' constructor; use '.xyz' instead 7 error: 13: 'int4' is not a valid parameter to 'int2' constructor; use '.xy' instead 8 error: 14: 'int4' is not a valid parameter to 'int' constructor; use '.x' instead 9 error: 17: 'bool4' is not a valid parameter to 'bool3' constructor; use '.xyz' instead 10 error: 18: 'bool4' is not a valid parameter to 'bool2' constructor; use '.xy' instead 11 error: 19: 'bool4' is not a valid parameter to 'bool' constructor; use '.x' instead
|
| /third_party/mbedtls/include/mbedtls/ |
| D | des.h | 8 * instead. 58 * instead. 70 * instead. 88 * instead. 99 * instead. 110 * instead. 121 * instead. 135 * instead. 151 * instead. 165 * instead. [all …]
|
12345678910>>...385