/third_party/lwip/test/unit/core/ |
D | test_mem.c | 120 fail_unless(lwip_stats.mem.illegal == 0); in START_TEST() 128 fail_unless(lwip_stats.mem.illegal == 1); in START_TEST() 129 lwip_stats.mem.illegal = 0; in START_TEST() 133 fail_unless(lwip_stats.mem.illegal == 1); in START_TEST() 134 lwip_stats.mem.illegal = 0; in START_TEST() 137 fail_unless(lwip_stats.mem.illegal == 0); in START_TEST() 148 fail_unless(lwip_stats.mem.illegal == 0); in START_TEST() 164 fail_unless(lwip_stats.mem.illegal == 0); in START_TEST() 168 fail_unless(lwip_stats.mem.illegal == 1); in START_TEST() 169 lwip_stats.mem.illegal = 0; in START_TEST() [all …]
|
/third_party/glslang/Test/ |
D | 420.tese | 7 float a2[2] = { 3.4, 4.2, 5.0 }; // illegal 8 vec2 b2 = { 1.0, 2.0, 3.0 }; // illegal 9 mat3x3 c2 = { vec3(0.0), vec3(1.0), vec3(2.0), vec3(3.0) }; // illegal 10 mat2x2 d = { 1.0, 0.0, 0.0, 1.0 }; // illegal, can't flatten nesting 25 } e3 = { 1.2, 2, 3 }; // illegal 27 int a3 = true; // illegal 28 vec4 b3[2] = { vec4(0.0), 1.0 }; // illegal 29 vec4 b4[2] = vec4[2](vec4(0.0), mat2x2(1.0)); // illegal 30 mat4x2 c3 = { vec3(0.0), vec3(1.0) }; // illegal 40 } d2[] = { S1(vec4(0.0), vec4(1.1)) }; // illegal
|
D | specExamples.frag | 75 uniform float Atten; // illegal, mismatched storage qualifier 181 //float a[2] = { 3.4, 4.2, 5.0 }; // illegal 182 //vec2 b = { 1.0, 2.0, 3.0 }; // illegal 183 //mat3x3 c = { vec3(0.0), vec3(1.0), vec3(2.0), vec3(3.0) }; // illegal 184 //mat2x2 d = { 1.0, 0.0, 0.0, 1.0 }; // illegal, can't flatten nesting 188 //} e = { 1.2, 2, 3 }; // illegal 201 //int a = true; // illegal 202 //vec4 b[2] = { vec4(0.0), 1.0 }; // illegal 203 //mat4x2 c = { vec3(0.0), vec3(1.0) }; // illegal 213 //} d[] = { S1(vec4(0.0), vec4(1.1)) }; // illegal
|
/third_party/typescript/tests/baselines/reference/ |
D | classStaticBlock26(target=es2022).symbols | 6 await; // illegal 9 await (1); // illegal 12 ({ [await]: 1 }); // illegal 19 [await] = 1; // illegal (computed property names are evaluated outside of a class body 25 ({ await }); // illegal short-hand property reference 29 await: // illegal, 'await' cannot be used as a label 30 break await; // illegal, 'await' cannot be used as a label
|
D | classStaticBlock26(target=esnext).symbols | 6 await; // illegal 9 await (1); // illegal 12 ({ [await]: 1 }); // illegal 19 [await] = 1; // illegal (computed property names are evaluated outside of a class body 25 ({ await }); // illegal short-hand property reference 29 await: // illegal, 'await' cannot be used as a label 30 break await; // illegal, 'await' cannot be used as a label
|
D | classStaticBlock26(target=esnext).types | 6 await; // illegal 11 await (1); // illegal 17 ({ [await]: 1 }); // illegal 29 [await] = 1; // illegal (computed property names are evaluated outside of a class body 38 ({ await }); // illegal short-hand property reference 45 await: // illegal, 'await' cannot be used as a label 49 break await; // illegal, 'await' cannot be used as a label
|
D | classStaticBlock26(target=es2022).types | 6 await; // illegal 11 await (1); // illegal 17 ({ [await]: 1 }); // illegal 29 [await] = 1; // illegal (computed property names are evaluated outside of a class body 38 ({ await }); // illegal short-hand property reference 45 await: // illegal, 'await' cannot be used as a label 49 break await; // illegal, 'await' cannot be used as a label
|
D | classStaticBlock26(target=esnext).errors.txt | 24 await; // illegal 31 await (1); // illegal 36 ({ [await]: 1 }); // illegal 44 … [await] = 1; // illegal (computed property names are evaluated outside of a class body 52 ({ await }); // illegal short-hand property reference 57 await: // illegal, 'await' cannot be used as a label 62 break await; // illegal, 'await' cannot be used as a label
|
D | classStaticBlock26(target=es2022).errors.txt | 24 await; // illegal 31 await (1); // illegal 36 ({ [await]: 1 }); // illegal 44 … [await] = 1; // illegal (computed property names are evaluated outside of a class body 52 ({ await }); // illegal short-hand property reference 57 await: // illegal, 'await' cannot be used as a label 62 break await; // illegal, 'await' cannot be used as a label
|
D | classStaticBlock22(target=es2022).types | 9 let await: any; // illegal, cannot declare a new binding for await 13 let { await } = {} as any; // illegal, cannot declare a new binding for await 26 let await; // illegal, cannot declare a new binding for await 30 function await() { }; // illegal 34 class await { }; // illegal
|
D | classStaticBlock22(target=esnext).types | 9 let await: any; // illegal, cannot declare a new binding for await 13 let { await } = {} as any; // illegal, cannot declare a new binding for await 26 let await; // illegal, cannot declare a new binding for await 30 function await() { }; // illegal 34 class await { }; // illegal
|
D | computedPropertyNames30_ES6.types | 15 …/ Ideally, we would capture this. But the reference is // illegal, and not capturin… 19 >{ // Ideally, we would capture this. But the reference is // illegal… 22 // illegal, and not capturing this is consistent with
|
D | computedPropertyNames30_ES5.types | 15 …/ Ideally, we would capture this. But the reference is // illegal, and not capturin… 19 >{ // Ideally, we would capture this. But the reference is // illegal… 22 // illegal, and not capturing this is consistent with
|
D | classStaticBlock22(target=es2022).errors.txt | 14 let await: any; // illegal, cannot declare a new binding for await 19 let { await } = {} as any; // illegal, cannot declare a new binding for await 27 let await; // illegal, cannot declare a new binding for await 32 function await() { }; // illegal 37 class await { }; // illegal
|
D | classStaticBlock22(target=esnext).errors.txt | 14 let await: any; // illegal, cannot declare a new binding for await 19 let { await } = {} as any; // illegal, cannot declare a new binding for await 27 let await; // illegal, cannot declare a new binding for await 32 function await() { }; // illegal 37 class await { }; // illegal
|
D | classStaticBlock22(target=esnext).symbols | 9 let await: any; // illegal, cannot declare a new binding for await 13 let { await } = {} as any; // illegal, cannot declare a new binding for await 21 let await; // illegal, cannot declare a new binding for await 25 function await() { }; // illegal 29 class await { }; // illegal
|
D | classStaticBlock22(target=es2022).symbols | 9 let await: any; // illegal, cannot declare a new binding for await 13 let { await } = {} as any; // illegal, cannot declare a new binding for await 21 let await; // illegal, cannot declare a new binding for await 25 function await() { }; // illegal 29 class await { }; // illegal
|
/third_party/node/deps/npm/node_modules/npm-user-validate/lib/ |
D | index.js | 10 illegal: 'Name may not contain illegal character', 40 var illegal = un.match(illegalCharacterRe) 41 if (illegal) { 42 return new Error(requirements.username.illegal + ' "' + illegal[0] + '"')
|
/third_party/elfutils/libcpu/defs/ |
D | i386.doc | 27 {gg} 00 = b, 01 = w, 10 = d, 11 = <illegal> 28 {0g} 00 = b, 01 = w, 10 = <illegal>, 11 = <illegal> 29 {GG} 00 = <illegal>, 01 = w, 10 = d, 11 = q 30 {gG} 00 = <illegal>, 01 = w, 10 = d, 11 = <illegal>
|
/third_party/EGL/extensions/EXT/ |
D | EGL_EXT_protected_surface.txt | 56 protected surface to any non-protected surface by GPU are considered illegal. 196 better to leave the defination of illegal operation behavior out of this 199 2. Should the spec enumerate the legal and illegal operations in client APIs 204 principles that determine whether an operation is legal or illegal. If a version 209 * glReadPixels is illegal when the READ framebuffer is protected, 210 * glCopyTexImage2D is illegal when the READ framebuffer is protected, 211 * glCopyTexSubImage2D is illegal when the READ framebuffer is protected, unless 213 * glBlitFramebuffer is illegal if the READ framebuffer is protected and the 224 5 01/13/14 Jesse Define illegal operation behavior more broadly. 225 4 01/10/14 Pontus Update description of illegal operation behavior in [all …]
|
/third_party/skia/third_party/externals/egl-registry/extensions/EXT/ |
D | EGL_EXT_protected_surface.txt | 56 protected surface to any non-protected surface by GPU are considered illegal. 196 better to leave the defination of illegal operation behavior out of this 199 2. Should the spec enumerate the legal and illegal operations in client APIs 204 principles that determine whether an operation is legal or illegal. If a version 209 * glReadPixels is illegal when the READ framebuffer is protected, 210 * glCopyTexImage2D is illegal when the READ framebuffer is protected, 211 * glCopyTexSubImage2D is illegal when the READ framebuffer is protected, unless 213 * glBlitFramebuffer is illegal if the READ framebuffer is protected and the 224 5 01/13/14 Jesse Define illegal operation behavior more broadly. 225 4 01/10/14 Pontus Update description of illegal operation behavior in [all …]
|
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/ |
D | 125-es-short-circuit-undefined.c.expected | 1 0:10(16): preprocessor error: undefined macro NOT_DEFINED in expression (illegal in GLES) 2 0:14(23): preprocessor error: undefined macro ALSO_NOT_DEFINED in expression (illegal in GLES)
|
/third_party/vk-gl-cts/data/gles31/shaders/es31/ |
D | tessellation_negative_user_defined_io.test | 22 patch out S patchVariable[2]; // array of structures is illegal 40 patch in S patchVariable[2]; // array of structures is illegal 81 patch out S patchVariable; // output structure containing array is illegal 98 patch in S patchVariable; // output structure containing array is illegal
|
/third_party/glslang/Test/baseResults/ |
D | lineContinuation100.vert.out | 11 ERROR: 0:40: '\' : illegal use of escape character 14 ERROR: 0:43: '\' : illegal use of escape character 15 ERROR: 0:45: '\' : illegal use of escape character 16 ERROR: 0:46: '\' : illegal use of escape character
|
/third_party/vk-gl-cts/doc/testspecs/GLES3/ |
D | functional.shaders.arrays.txt | 30 + Negative tests for illegal multi-dimensional arrays 31 + Negative tests for illegal C-style constructors
|