/third_party/boost/libs/locale/test/ |
D | test_codepage_converter.cpp | 47 static const unsigned illegal=0xFFFFFFFF; variable 62 if(res == boost::locale::util::base_converter::illegal) { in test_from() 102 TEST_TO("\xa0",illegal); in test_shiftjis() 104 TEST_TO("\x83\xf0",illegal); in test_shiftjis() 149 TEST_TO("\xf4\x9f\x80\x80",illegal); // 11 0000 in main() 150 TEST_TO("\xfb\xbf\xbf\xbf",illegal); // 3FF FFFF in main() 151 TEST_TO("\xf8\x90\x80\x80\x80",illegal); // 400 0000 in main() 152 TEST_TO("\xfd\xbf\xbf\xbf\xbf\xbf",illegal); // 7fff ffff in main() 155 TEST_TO("\xC2\x7F",illegal); in main() 156 TEST_TO("\xdf\x7F",illegal); in main() [all …]
|
D | test_utf.cpp | 83 if(codepoint == incomplete || codepoint != illegal) in test_to() 91 if(codepoint != incomplete && codepoint != illegal) { in test_to() 144 test_to("\xf4\x9f\x80\x80",illegal); // 11 0000 in main() 145 test_to("\xfb\xbf\xbf\xbf",illegal); // 3ff ffff in main() 146 test_to("\xf8\x90\x80\x80\x80",illegal); // 400 0000 in main() 147 test_to("\xfd\xbf\xbf\xbf\xbf\xbf",illegal); // 7fff ffff in main() 161 test_to(make4(0x110000),illegal); in main() 162 test_to(make4(0x1fffff),illegal); in main() 164 test_to(make2(0),illegal); in main() 165 test_to(make3(0),illegal); in main() [all …]
|
/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/boost/libs/locale/src/posix/ |
D | codecvt.cpp | 50 uint32_t obuf[2] = {illegal,illegal}; in mb2_iconv_converter() 76 point = illegal; in mb2_iconv_converter() 125 if(index == illegal) in to_unicode() 126 return illegal; in to_unicode() 141 uint32_t result[2] = { illegal, illegal }; in to_unicode() 149 return illegal; in to_unicode() 176 return illegal; in from_unicode()
|
/third_party/node/deps/npm/node_modules/npm-user-validate/ |
D | npm-user-validate.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/boost/boost/locale/ |
D | utf.hpp | 39 static const code_point illegal = 0xFFFFFFFFu; variable 204 return illegal; in decode() 223 return illegal; in decode() 230 return illegal; in decode() 237 return illegal; in decode() 244 return illegal; in decode() 248 return illegal; in decode() 361 return illegal; in decode() 366 return illegal; in decode() 432 return boost::locale::utf::illegal; in decode()
|
D | util.hpp | 85 static const uint32_t illegal=utf::illegal; member in boost::locale::util::base_converter 150 return illegal; in to_unicode() 169 return illegal; in from_unicode()
|
D | utf8_codecvt.hpp | 47 if(c!=utf::illegal && c!=utf::incomplete) in to_unicode() 55 return utf::illegal; in from_unicode()
|
D | generic_codecvt.hpp | 216 if(ch==boost::locale::utf::incomplete || ch==boost::locale::utf::illegal) { in do_length() 269 if(ch==boost::locale::utf::illegal) { in do_in() 410 else if(len == boost::locale::utf::illegal) { in do_out() 509 if(ch==boost::locale::utf::incomplete || ch==boost::locale::utf::illegal) { in do_length() 552 if(ch==boost::locale::utf::illegal) { in do_in() 620 else if(len == boost::locale::utf::illegal) { in do_out()
|
/third_party/boost/libs/locale/src/util/ |
D | codecvt_converter.cpp | 59 if(c==utf::illegal) in to_unicode() 60 return illegal; in to_unicode() 72 return illegal; in from_unicode() 93 uint32_t uchar=utf::illegal; in simple_converter_impl() 100 uchar = utf::illegal; in simple_converter_impl() 104 uchar = utf::illegal; in simple_converter_impl() 111 if(to_unicode_tbl_[i]!=utf::illegal) { in simple_converter_impl() 140 return utf::illegal; in from_unicode()
|
/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/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/typescript/tests/baselines/reference/ |
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 | 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
|
/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/boost/libs/locale/src/icu/ |
D | codecvt.cpp | 77 return illegal; in to_unicode() 90 return illegal; in from_unicode() 106 return illegal; in from_unicode()
|
/third_party/e2fsprogs/tests/f_filetype/ |
D | expect.1 | 24 Inode 18 (/badchar) is an illegal character device. 27 Inode 19 (/badblock) is an illegal block device. 30 Inode 20 (/badfifo) is an illegal FIFO.
|
/third_party/e2fsprogs/tests/f_bad_fname/ |
D | expect.1 | 3 Entry 'AM-^?' in /ci_dir (12) has illegal UTF-8 characters in its name. 6 Entry 'AM-~' in /ci_dir (12) has illegal UTF-8 characters in its name.
|
/third_party/boost/boost/nowide/utf/ |
D | convert.hpp | 39 if(c == illegal || c == incomplete) in convert_buffer() 73 if(c == illegal || c == incomplete) in convert_string()
|
/third_party/e2fsprogs/tests/f_ea_inode/ |
D | expect.1 | 2 Inode 17 has illegal extended attribute value inode 4008636142. 7 Inode 18 has illegal extended attribute value inode 19.
|
/third_party/e2fsprogs/tests/f_badinode/ |
D | expect.1 | 16 Inode 14 (/block_dev) is an illegal block device. 19 Inode 15 (/char_dev) is an illegal character device.
|
/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
|