Home
last modified time | relevance | path

Searched full:no (Results 1 – 25 of 12934) sorted by relevance

12345678910>>...518

/third_party/openssl/.github/workflows/
Drun-checker-daily.yml24 no-afalgeng,
25 no-aria,
26 no-asan,
27 no-asm,
28 no-async,
29 no-autoalginit,
30 no-autoerrinit,
31 no-autoload-config,
32 no-bf,
33 no-blake2,
[all …]
/third_party/libbpf/docs/sphinx/doxygen/
DDoxyfile7 CREATE_SUBDIRS = NO
8 ALLOW_UNICODE_NAMES = NO
13 ALWAYS_DETAILED_SEC = NO
14 INLINE_INHERITED_MEMB = NO
18 SHORT_NAMES = NO
19 JAVADOC_AUTOBRIEF = NO
20 JAVADOC_BANNER = NO
21 QT_AUTOBRIEF = NO
22 MULTILINE_CPP_IS_BRIEF = NO
23 PYTHON_DOCSTRING = NO
[all …]
/third_party/typescript/tests/baselines/reference/
DparserSyntaxWalker.generated.symbols3 No type information for this code.// export class File {
4 No type information for this code.// constructor(filename: string);
5 No type information for this code.// public ReadAllText(): string;
6 No type information for this code.// }
7 No type information for this code.// export interface IFile {
8 No type information for this code.// [index: number]: string;
9 No type information for this code.// }
10 No type information for this code.//}
11 No type information for this code.
12 No type information for this code.//import fs = module("fs");
[all …]
DparserSyntaxWalker.generated.types3 No type information for this code.// export class File {
4 No type information for this code.// constructor(filename: string);
5 No type information for this code.// public ReadAllText(): string;
6 No type information for this code.// }
7 No type information for this code.// export interface IFile {
8 No type information for this code.// [index: number]: string;
9 No type information for this code.// }
10 No type information for this code.//}
11 No type information for this code.
12 No type information for this code.//import fs = module("fs");
[all …]
Dparser.numericSeparators.decmialNegative.symbols3 No type information for this code.
4 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato…
6 No type information for this code.
7 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato…
9 No type information for this code.
10 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato…
12 No type information for this code.
13 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato…
15 No type information for this code.
16 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato…
[all …]
Dparser.numericSeparators.unicodeEscape.symbols3 No type information for this code.
4 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato…
6 No type information for this code.
7 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato…
9 No type information for this code.
10 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato…
12 No type information for this code.
13 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato…
15 No type information for this code.
16 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato…
[all …]
DcollisionArgumentsFunction.js4 var arguments = 10; // no error
7 var arguments: any[]; // no error
9 function f1NoError(arguments: number) { // no error
10 var arguments = 10; // no error
13 declare function f2(i: number, ...arguments); // no error - no code gen
14 declare function f21(arguments: number, ...rest); // no error - no code gen
15 declare function f2NoError(arguments: number); // no error
18 var arguments = 10; // no error
21 var arguments = 10; // no error
24 function f4(arguments: number, ...rest); // no codegen no error
[all …]
DdoNotEmitDetachedCommentsAtStartOfLambdaFunction.symbols3 No type information for this code. // Single line comment
4 No type information for this code.
5 No type information for this code. return 0;
6 No type information for this code.}
7 No type information for this code.
8 No type information for this code.() => {
9 No type information for this code. /*
10 No type information for this code. multi-line comment
11 No type information for this code. */
12 No type information for this code.
[all …]
DcollisionArgumentsClassMethod.js4 var arguments: any[]; // no error
7 var arguments = 10; // no error
9 public fooNoError(arguments: number) { // no error
10 var arguments = 10; // no error
12 public f4(i: number, ...arguments); // no codegen no error
13 public f4(i: string, ...arguments); // no codegen no error
15 var arguments: any[]; // no error
17 public f41(arguments: number, ...rest); // no codegen no error
18 public f41(arguments: string, ...rest); // no codegen no error
20 var arguments: any; // no error
[all …]
DstringEnumLiteralTypes3.types2 const enum Choice { Unknown = "", Yes = "yes", No = "no" };
8 >No : Choice.No
9 >"no" : "no"
15 type YesNo = Choice.Yes | Choice.No;
20 type NoYes = Choice.No | Choice.Yes;
25 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No;
105 >c = c : Choice.Yes | Choice.No
107 >c : Choice.Yes | Choice.No
164 a = Choice.No;
165 >a = Choice.No : Choice.No
[all …]
DcollisionArgumentsClassConstructor.js5 var arguments: any[]; // no error
10 var arguments = 10; // no error
14 constructor(arguments: number) { // no error
15 var arguments = 10; // no error
21 var arguments = 10; // no error
26 var arguments = 10; // no error
32 var arguments = 10; // no error
36 constructor(public arguments: number) { // no error
37 var arguments = 10; // no error
42 constructor(i: number, ...arguments); // No error - no code gen
[all …]
DenumLiteralTypes3.types2 const enum Choice { Unknown, Yes, No };
6 >No : Choice.No
12 type YesNo = Choice.Yes | Choice.No;
17 type NoYes = Choice.No | Choice.Yes;
22 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No;
102 >c = c : Choice.Yes | Choice.No
104 >c : Choice.Yes | Choice.No
161 a = Choice.No;
162 >a = Choice.No : Choice.No
164 >Choice.No : Choice.No
[all …]
/third_party/elfutils/tests/
Drun-next-lines.sh26 …home/drepper/gnu/new-bu/build/ttt/m.c:5:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
27 …home/drepper/gnu/new-bu/build/ttt/m.c:6:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
28 …home/drepper/gnu/new-bu/build/ttt/m.c:7:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
29 …home/drepper/gnu/new-bu/build/ttt/m.c:8:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
30 …ome/drepper/gnu/new-bu/build/ttt/m.c:8:0: is_stmt:yes, end_seq:yes, bb:no, prologue:no, epilogue:no
33 …home/drepper/gnu/new-bu/build/ttt/b.c:4:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
34 …home/drepper/gnu/new-bu/build/ttt/b.c:5:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
35 …home/drepper/gnu/new-bu/build/ttt/b.c:6:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
36 …ome/drepper/gnu/new-bu/build/ttt/b.c:6:0: is_stmt:yes, end_seq:yes, bb:no, prologue:no, epilogue:no
39 …home/drepper/gnu/new-bu/build/ttt/f.c:3:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
[all …]
Drun-get-lines.sh26 …home/drepper/gnu/new-bu/build/ttt/m.c:5:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
27 …home/drepper/gnu/new-bu/build/ttt/m.c:6:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
28 …home/drepper/gnu/new-bu/build/ttt/m.c:7:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
29 …home/drepper/gnu/new-bu/build/ttt/m.c:8:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
30 …ome/drepper/gnu/new-bu/build/ttt/m.c:8:0: is_stmt:yes, end_seq:yes, bb:no, prologue:no, epilogue:no
33 …home/drepper/gnu/new-bu/build/ttt/b.c:4:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
34 …home/drepper/gnu/new-bu/build/ttt/b.c:5:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
35 …home/drepper/gnu/new-bu/build/ttt/b.c:6:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
36 …ome/drepper/gnu/new-bu/build/ttt/b.c:6:0: is_stmt:yes, end_seq:yes, bb:no, prologue:no, epilogue:no
39 …home/drepper/gnu/new-bu/build/ttt/f.c:3:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
[all …]
Drun-nvidia-extended-linemap-libdw.sh29 …les/nvidia_extended_linemap4/main.cu:25:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
30 …les/nvidia_extended_linemap4/main.cu:26:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
31 …les/nvidia_extended_linemap4/main.cu:27:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
32 …les/nvidia_extended_linemap4/main.cu:25:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
33 …les/nvidia_extended_linemap4/main.cu:28:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
34 …les/nvidia_extended_linemap4/main.cu:28:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
35 …ples/nvidia_extended_linemap4/main.cu:8:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
37 …ples/nvidia_extended_linemap4/main.cu:9:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
39 …les/nvidia_extended_linemap4/main.cu:31:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
40 …amples/nvidia_extended_linemap4/bar.h:6:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no
[all …]
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/in-house/tests/
Demoji-clusters.tests1 ../fonts/AdobeBlank2.ttf;--no-glyph-names --no-positions --font-funcs=ot;263A,FE0F;[1=0|1=0]
2 ../fonts/AdobeBlank2.ttf;--no-glyph-names --no-positions --font-funcs=ot;1F636,200D,1F32B,FE0F;[1=0…
3 ../fonts/AdobeBlank2.ttf;--no-glyph-names --no-positions --font-funcs=ot;1F636,200D,1F32B;[1=0|1=0|…
4 ../fonts/AdobeBlank2.ttf;--no-glyph-names --no-positions --font-funcs=ot;1F62E,200D,1F4A8;[1=0|1=0|…
5 ../fonts/AdobeBlank2.ttf;--no-glyph-names --no-positions --font-funcs=ot;1F635,200D,1F4AB;[1=0|1=0|…
6 ../fonts/AdobeBlank2.ttf;--no-glyph-names --no-positions --font-funcs=ot;2639,FE0F;[1=0|1=0]
7 ../fonts/AdobeBlank2.ttf;--no-glyph-names --no-positions --font-funcs=ot;2620,FE0F;[1=0|1=0]
8 ../fonts/AdobeBlank2.ttf;--no-glyph-names --no-positions --font-funcs=ot;2763,FE0F;[1=0|1=0]
9 ../fonts/AdobeBlank2.ttf;--no-glyph-names --no-positions --font-funcs=ot;2764,FE0F,200D,1F525;[1=0|…
10 ../fonts/AdobeBlank2.ttf;--no-glyph-names --no-positions --font-funcs=ot;2764,200D,1F525;[1=0|1=0|1…
[all …]
/third_party/flatbuffers/docs/source/
DSupport.md24 … | Yes | No | No | No | No | No | No | Yes | No | No
25 … | Yes | Yes | Yes | Yes | No | No | No | No | No | No | No
26 … | Yes | No | No | No | No | No | No | Basic | No | No
27 …r | Yes | No | No | No | No | No | No | Yes | No | No
28 …API | Yes | No | Yes | Yes | Yes | Yes | Yes | No | No | No
29 …Scalars | Yes | Yes | Yes | No | No | Yes | Yes | Yes | No |
32 … | Yes | No | No | Yes | Yes | No | No | No | ? | No
34 … | Yes | Yes | ? | ? | ? | Yes | VS2010 | ? | Yes | Yes | Yes | No
37 … | Yes | ? | ? | ? | ? | ? | ? | ? | Flutter | Yes | ? | No
39 … | ? | Yes | ? | ? | ? | ? | ? | ? | ? | No | ? | No
/third_party/mbedtls/tests/suites/
Dtest_suite_cipher.aria.data5 ARIA-128 CCM*-NO-TAG - Encrypt and decrypt 0 bytes
7 enc_dec_buf:MBEDTLS_CIPHER_ARIA_128_CCM_STAR_NO_TAG:"ARIA-128-CCM*-NO-TAG":128:0:-1
9 ARIA-128 CCM*-NO-TAG - Encrypt and decrypt 1 byte
11 enc_dec_buf:MBEDTLS_CIPHER_ARIA_128_CCM_STAR_NO_TAG:"ARIA-128-CCM*-NO-TAG":128:1:-1
13 ARIA-128 CCM*-NO-TAG - Encrypt and decrypt 2 bytes
15 enc_dec_buf:MBEDTLS_CIPHER_ARIA_128_CCM_STAR_NO_TAG:"ARIA-128-CCM*-NO-TAG":128:2:-1
17 ARIA-128 CCM*-NO-TAG - Encrypt and decrypt 7 bytes
19 enc_dec_buf:MBEDTLS_CIPHER_ARIA_128_CCM_STAR_NO_TAG:"ARIA-128-CCM*-NO-TAG":128:7:-1
21 ARIA-128 CCM*-NO-TAG - Encrypt and decrypt 8 bytes
23 enc_dec_buf:MBEDTLS_CIPHER_ARIA_128_CCM_STAR_NO_TAG:"ARIA-128-CCM*-NO-TAG":128:8:-1
[all …]
Dtest_suite_hmac_drbg.no_reseed.data1 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #0
5 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #1
9 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #2
13 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #3
17 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #4
21 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #5
25 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #6
29 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #7
33 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #8
37 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #9
[all …]
/third_party/typescript/tests/cases/compiler/
DcollisionArgumentsFunction.ts3 var arguments = 10; // no error
6 var arguments: any[]; // no error
8 function f1NoError(arguments: number) { // no error
9 var arguments = 10; // no error
12 declare function f2(i: number, ...arguments); // no error - no code gen
13 declare function f21(arguments: number, ...rest); // no error - no code gen
14 declare function f2NoError(arguments: number); // no error
17 var arguments = 10; // no error
20 var arguments = 10; // no error
23 function f4(arguments: number, ...rest); // no codegen no error
[all …]
DcollisionArgumentsClassMethod.ts3 var arguments: any[]; // no error
6 var arguments = 10; // no error
8 public fooNoError(arguments: number) { // no error
9 var arguments = 10; // no error
11 public f4(i: number, ...arguments); // no codegen no error
12 public f4(i: string, ...arguments); // no codegen no error
14 var arguments: any[]; // no error
16 public f41(arguments: number, ...rest); // no codegen no error
17 public f41(arguments: string, ...rest); // no codegen no error
19 var arguments: any; // no error
[all …]
DcollisionArgumentsClassConstructor.ts4 var arguments: any[]; // no error
9 var arguments = 10; // no error
13 constructor(arguments: number) { // no error
14 var arguments = 10; // no error
20 var arguments = 10; // no error
25 var arguments = 10; // no error
31 var arguments = 10; // no error
35 constructor(public arguments: number) { // no error
36 var arguments = 10; // no error
41 constructor(i: number, ...arguments); // No error - no code gen
[all …]
DcollisionThisExpressionAndParameter.ts4 var _this = 10; // Local var. No this capture in x(), so no conflict.
21 var _this = 10; // Local var. No this capture in x(), so no conflict.
22 function inner(_this: number) { // No Error
26 var lamda = (_this: number) => { // No Error
29 z1(_this: number) { // No Error
52 constructor(_this: number); // no error - no code gen
53 z(_this: number); // no error - no code gen
55 declare function f2(_this: number); // no error
58 constructor(_this: string); // no code gen - no error
59 constructor(_this: number); // no code gen - no error
[all …]
/third_party/musl/libc-test/src/api/
Dtgmath.c9 #error no acos(x) in f()
14 #error no acosh(x) in f()
19 #error no asin(x) in f()
24 #error no asinh(x) in f()
29 #error no atan(x) in f()
34 #error no atan2(x,y) in f()
39 #error no atanh(x) in f()
44 #error no carg(x) in f()
49 #error no cbrt(x) in f()
54 #error no ceil(x) in f()
[all …]
/third_party/typescript/src/linter/
DCookBookMsg.ts24 cookBookTag[2] = "\"Symbol()\" API is not supported (arkts-no-symbol)";
25 cookBookTag[3] = "Private \"#\" identifiers are not supported (arkts-no-private-identifiers)";
27 cookBookTag[5] = "Use \"let\" instead of \"var\" (arkts-no-var)";
30 cookBookTag[8] = "Use explicit types instead of \"any\", \"unknown\" (arkts-no-any-unknown)";
36 cookBookTag[14] = "Use \"class\" instead of a type with call signature (arkts-no-call-signatures)";
37 cookBookTag[15] = "Use \"class\" instead of a type with constructor signature (arkts-no-ctor-signat…
38 cookBookTag[16] = "Only one static block is supported (arkts-no-multiple-static-blocks)";
39 cookBookTag[17] = "Indexed signatures are not supported (arkts-no-indexed-signatures)";
41 cookBookTag[19] = "Use inheritance instead of intersection types (arkts-no-intersection-types)";
43 cookBookTag[21] = "Type notation using \"this\" is not supported (arkts-no-typing-with-this)";
[all …]

12345678910>>...518