/third_party/boost/libs/regex/test/regress/ |
D | test_sets.cpp | 22 TEST_REGEX_SEARCH("[abc]", boost::regex::extended, "a", match_default, make_array(0, 1, -2, -2)); in test_sets() 23 TEST_REGEX_SEARCH("[abc]", boost::regex::extended, "b", match_default, make_array(0, 1, -2, -2)); in test_sets() 24 TEST_REGEX_SEARCH("[abc]", boost::regex::extended, "c", match_default, make_array(0, 1, -2, -2)); in test_sets() 25 TEST_REGEX_SEARCH("[abc]", boost::regex::extended, "d", match_default, make_array(-2, -2)); in test_sets() 26 … TEST_REGEX_SEARCH("[^bcd]", boost::regex::extended, "a", match_default, make_array(0, 1, -2, -2)); in test_sets() 27 TEST_REGEX_SEARCH("[^bcd]", boost::regex::extended, "b", match_default, make_array(-2, -2)); in test_sets() 28 TEST_REGEX_SEARCH("[^bcd]", boost::regex::extended, "d", match_default, make_array(-2, -2)); in test_sets() 29 … TEST_REGEX_SEARCH("[^bcd]", boost::regex::extended, "e", match_default, make_array(0, 1, -2, -2)); in test_sets() 30 …TEST_REGEX_SEARCH("a[b]c", boost::regex::extended, "abc", match_default, make_array(0, 3, -2, -2)); in test_sets() 31 …TEST_REGEX_SEARCH("a[ab]c", boost::regex::extended, "abc", match_default, make_array(0, 3, -2, -2)… in test_sets() [all …]
|
D | test_anchors.cpp | 22 TEST_REGEX_SEARCH("^ab", boost::regex::extended, "ab", match_default, make_array(0, 2, -2, -2)); in test_anchors() 23 TEST_REGEX_SEARCH("^ab", boost::regex::extended, "xxabxx", match_default, make_array(-2, -2)); in test_anchors() 24 …TEST_REGEX_SEARCH("^ab", boost::regex::extended, "xx\nabzz", match_default, make_array(3, 5, -2, -… in test_anchors() 25 TEST_REGEX_SEARCH("ab$", boost::regex::extended, "ab", match_default, make_array(0, 2, -2, -2)); in test_anchors() 26 TEST_REGEX_SEARCH("ab$", boost::regex::extended, "abxx", match_default, make_array(-2, -2)); in test_anchors() 27 …TEST_REGEX_SEARCH("ab$", boost::regex::extended, "ab\nzz", match_default, make_array(0, 2, -2, -2)… in test_anchors() 28 TEST_REGEX_SEARCH("^ab", boost::regex::extended, "\n\n a", match_default, make_array(-2, -2)); in test_anchors() 37 …TEST_REGEX_SEARCH("^ab", boost::regex::extended, "ab", match_default | match_not_bol | match_not_e… in test_anchors() 38 …TEST_REGEX_SEARCH("^ab", boost::regex::extended, "xxabxx", match_default | match_not_bol | match_n… in test_anchors() 39 …TEST_REGEX_SEARCH("^ab", boost::regex::extended, "xx\nabzz", match_default | match_not_bol | match… in test_anchors() [all …]
|
D | test_tricky_cases.cpp | 137 …TEST_REGEX_SEARCH("a(((b)))c", boost::regex::extended, "abc", match_default, make_array(0, 3, 1, 2… in test_tricky_cases2() 138 …TEST_REGEX_SEARCH("a(b|(c))d", boost::regex::extended, "abd", match_default, make_array(0, 3, 1, 2… in test_tricky_cases2() 139 …TEST_REGEX_SEARCH("a(b|(c))d", boost::regex::extended, "acd", match_default, make_array(0, 3, 1, 2… in test_tricky_cases2() 140 …TEST_REGEX_SEARCH("a(b*|c)d", boost::regex::extended, "abbd", match_default, make_array(0, 4, 1, 3… in test_tricky_cases2() 142 …TEST_REGEX_SEARCH("a[ab]{20}", boost::regex::extended, "aaaaabaaaabaaaabaaaab", match_default, mak… in test_tricky_cases2() 144 …ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab]", boost::regex::extended, "aaaaabaaaabaaaa… in test_tricky_cases2() 146 …b][ab][ab][ab][ab][ab][ab][ab](wee|week)(knights|night)", boost::regex::extended, "aaaaabaaaabaaaa… in test_tricky_cases2() 148 …6789012345678901234567890123456789012345678901234567890", boost::regex::extended, "a12345678901234… in test_tricky_cases2() 150 …TEST_REGEX_SEARCH("[ab][cd][ef][gh][ij][kl][mn]", boost::regex::extended, "xacegikmoq", match_defa… in test_tricky_cases2() 151 …TEST_REGEX_SEARCH("[ab][cd][ef][gh][ij][kl][mn][op]", boost::regex::extended, "xacegikmoq", match_… in test_tricky_cases2() [all …]
|
D | basic_tests.cpp | 139 …TEST_REGEX_SEARCH("(xyz)(.*)abc", boost::regex::extended, "xyzaaab", match_default|match_partial, … in test_partial_match() 140 …TEST_REGEX_SEARCH("(xyz)(.*)abc", boost::regex::extended, "xyz", match_default|match_partial, make… in test_partial_match() 141 …TEST_REGEX_SEARCH("(xyz)(.*)abc", boost::regex::extended, "xy", match_default|match_partial, make_… in test_partial_match() 142 …TEST_REGEX_SEARCH("(xyz)(.*)abc", boost::regex::extended, "x", match_default|match_partial, make_a… in test_partial_match() 143 …TEST_REGEX_SEARCH("(xyz)(.*)abc", boost::regex::extended, "", match_default|match_partial, make_ar… in test_partial_match() 144 …TEST_REGEX_SEARCH("(xyz)(.*)abc", boost::regex::extended, "aaaa", match_default|match_partial, mak… in test_partial_match() 145 …TEST_REGEX_SEARCH(".abc", boost::regex::extended, "aaab", match_default|match_partial, make_array(… in test_partial_match() 146 …TEST_REGEX_SEARCH("a[_]", boost::regex::extended, "xxa", match_default|match_partial, make_array(2… in test_partial_match() 147 …TEST_REGEX_SEARCH(".{4,}", boost::regex::extended, "xxa", match_default|match_partial, make_array(… in test_partial_match() 148 …TEST_REGEX_SEARCH(".{4,}", boost::regex::extended, "xxa", match_default|match_partial|match_not_do… in test_partial_match()
|
D | test_simple_repeats.cpp | 43 TEST_INVALID_REGEX("(*)", boost::regex::extended); in test_simple_repeats() 46 TEST_INVALID_REGEX("^*", boost::regex::extended); in test_simple_repeats() 48 TEST_INVALID_REGEX("$*", boost::regex::extended); in test_simple_repeats() 57 TEST_INVALID_REGEX("a|*", boost::regex::extended); in test_simple_repeats() 59 TEST_INVALID_REGEX("(+)", boost::regex::extended); in test_simple_repeats() 61 TEST_INVALID_REGEX("^+", boost::regex::extended); in test_simple_repeats() 63 TEST_INVALID_REGEX("$+", boost::regex::extended); in test_simple_repeats() 71 TEST_INVALID_REGEX("a|+", boost::regex::extended); in test_simple_repeats() 73 TEST_INVALID_REGEX("(?)", boost::regex::extended); in test_simple_repeats() 75 TEST_INVALID_REGEX("^?", boost::regex::extended); in test_simple_repeats() [all …]
|
/third_party/boost/libs/fusion/test/sequence/ |
D | back_extended_deque.cpp | 30 extended_type extended(initial_deque, 101L); in main() local 32 BOOST_TEST(size(extended) == 1); in main() 33 BOOST_TEST(extended == make_vector(101L)); in main() 34 BOOST_TEST(*begin(extended) == 101L); in main() 35 BOOST_TEST(*prior(end(extended)) == 101L); in main() 36 BOOST_TEST(distance(begin(extended), end(extended)) == 1); in main() 52 extended_type extended(initial_deque, l); in main() local 53 BOOST_TEST(extended == make_vector(101L)); in main() 58 extended = extended2; in main() 60 BOOST_TEST(extended == make_vector(202L)); in main() [all …]
|
D | front_extended_deque.cpp | 30 extended_type extended(initial_deque, 1); in main() local 32 BOOST_TEST(size(extended) == 1); in main() 33 BOOST_TEST(extended == make_vector(1)); in main() 34 BOOST_TEST(*begin(extended) == 1); in main() 35 BOOST_TEST(*prior(end(extended)) == 1); in main() 36 BOOST_TEST(distance(begin(extended), end(extended)) == 1); in main() 52 extended_type extended(initial_deque, i); in main() local 53 BOOST_TEST(extended == make_vector(1)); in main() 58 extended = extended2; in main() 60 BOOST_TEST(extended == make_vector(2)); in main() [all …]
|
/third_party/python/Lib/encodings/ |
D | punycode.py | 13 extended = set() 18 extended.add(c) 19 extended = sorted(extended) 20 return bytes(base), extended 48 def insertion_unsort(str, extended): argument 53 for c in extended: 118 base, extended = segregate(text) 119 deltas = insertion_unsort(text, extended) 120 extended = generate_integers(len(base), deltas) 122 return base + b"-" + extended [all …]
|
/third_party/boost/libs/math/test/ |
D | test_sinc.cpp | 63 boost::multiprecision::cpp_bin_float_50 extended = val; in test_close_to_transition() local 64 extended = sin(extended) / extended; in test_close_to_transition() 65 T expected = extended.template convert_to<T>(); in test_close_to_transition() 74 boost::multiprecision::cpp_bin_float_50 extended = val; in test_close_to_transition() local 75 extended = sin(extended) / extended; in test_close_to_transition() 76 T expected = extended.template convert_to<T>(); in test_close_to_transition()
|
/third_party/vk-gl-cts/android/cts/master/vk-master-2019-03-01/ |
D | image.txt | 14475 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 14476 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 14477 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 14478 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 14479 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 14480 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 14481 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r32g32… 14482 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r32g32… 14483 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_srgb_block.r16g16b… 14484 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_srgb_block.r16g16b… [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | intersectionThisTypes.js | 38 const extended = label.extend({ id: 67 }).extend({ tag: "hello" }); 39 extended.id; // Ok 40 extended.tag; // Ok 54 var extended = label.extend({ id: 67 }).extend({ tag: "hello" }); 55 extended.id; // Ok 56 extended.tag; // Ok
|
D | intersectionThisTypes.types | 98 const extended = label.extend({ id: 67 }).extend({ tag: "hello" }); 99 >extended : Label & { id: number; } & { tag: string; } 114 extended.id; // Ok 115 >extended.id : number 116 >extended : Label & { id: number; } & { tag: string; } 119 extended.tag; // Ok 120 >extended.tag : string 121 >extended : Label & { id: number; } & { tag: string; }
|
D | intersectionThisTypes.symbols | 107 const extended = label.extend({ id: 67 }).extend({ tag: "hello" }); 108 >extended : Symbol(extended, Decl(intersectionThisTypes.ts, 36, 9)) 117 extended.id; // Ok 118 >extended.id : Symbol(id, Decl(intersectionThisTypes.ts, 36, 35)) 119 >extended : Symbol(extended, Decl(intersectionThisTypes.ts, 36, 9)) 122 extended.tag; // Ok 123 >extended.tag : Symbol(tag, Decl(intersectionThisTypes.ts, 36, 54)) 124 >extended : Symbol(extended, Decl(intersectionThisTypes.ts, 36, 9))
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlists/vk-default/ |
D | image.txt | 21863 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21864 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21865 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21866 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21867 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21868 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21869 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r32g32… 21870 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r32g32… 21871 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_srgb_block.r16g16b… 21872 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_srgb_block.r16g16b… [all …]
|
/third_party/vk-gl-cts/external/vulkancts/mustpass/master/vk-default/ |
D | image.txt | 21863 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21864 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21865 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21866 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21867 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21868 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21869 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r32g32… 21870 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r32g32… 21871 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_srgb_block.r16g16b… 21872 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_srgb_block.r16g16b… [all …]
|
/third_party/vk-gl-cts/android/cts/master/vk-master/ |
D | image.txt | 21863 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21864 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21865 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21866 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21867 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21868 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r16g16… 21869 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r32g32… 21870 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_unorm_block.r32g32… 21871 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_srgb_block.r16g16b… 21872 dEQP-VK.image.texel_view_compatible.compute.extended.1d_image.image_load.bc1_rgb_srgb_block.r16g16b… [all …]
|
/third_party/node/test/fixtures/wpt/resources/webidl2/ |
D | README.md | 100 * `extAttrs`: A list of [extended attributes](#extended-attributes). 133 * `extAttrs`: A list of [extended attributes](#extended-attributes). 161 * `extAttrs`: A list of [extended attributes](#extended-attributes). 183 * `extAttrs`: A list of [extended attributes](#extended-attributes). 218 * `extAttrs`: A list of [extended attributes](#extended-attributes). 260 * `extAttrs`: A list of [extended attributes](#extended-attributes). 268 * `extAttrs`: A list of [extended attributes](#extended-attributes). 293 * `extAttrs`: A list of [extended attributes](#extended-attributes). 330 * `extAttrs`: A list of [extended attributes](#extended-attributes). 350 * `extAttrs`: A list of [extended attributes](#extended-attributes). [all …]
|
/third_party/e2fsprogs/tests/f_ea_checks/ |
D | expect.1 | 2 Inode 13 has a bad extended attribute block 26. Clear? yes 11 Inode 17 has a bad extended attribute block 28. Clear? yes 15 Inode 16 has a bad extended attribute block 29. Clear? yes 19 Inode 19 has a bad extended attribute block 33. Clear? yes 23 Inode 12 has a bad extended attribute block 55. Clear? yes
|
/third_party/openssl/doc/man3/ |
D | SSL_get_extms_support.pod | 5 SSL_get_extms_support - extended master secret support 15 SSL_get_extms_support() indicates whether the current session used extended 22 SSL_get_extms_support() returns 1 if the current session used extended 24 progress i.e. it is not possible to determine if extended master secret
|
/third_party/ltp/testcases/kernel/controllers/cgroup_xattr/ |
D | README | 3 The directory cgroup_xattr contains the tests related to extended 17 The aim of the tests is to check the extended attributes in cgroup 23 cgroup tmp directory and creates one more hierarchy. Then sets extended 25 extended attributes back, checking values during the process.
|
/third_party/typescript/tests/cases/conformance/types/intersection/ |
D | intersectionThisTypes.ts | 37 const extended = label.extend({ id: 67 }).extend({ tag: "hello" }); constant 38 extended.id; // Ok 39 extended.tag; // Ok
|
/third_party/e2fsprogs/tests/f_inode_ea_collision/ |
D | expect.1 | 2 Inode 12 extended attribute is corrupt (allocation collision). Clear? yes 4 Inode 13 extended attribute is corrupt (allocation collision). Clear? yes 6 Inode 14 extended attribute is corrupt (allocation collision). Clear? yes
|
/third_party/e2fsprogs/tests/f_ea_value_crash/ |
D | expect.1 | 2 Inode 12 has INLINE_DATA_FL flag but extended attribute not found. Truncate? yes 4 Inode 12 extended attribute is corrupt (allocation collision). Clear? yes 6 Inode 13 extended attribute is corrupt (allocation collision). Clear? yes
|
/third_party/curl/docs/cmdline-opts/ |
D | xattr.d | 2 Help: Store metadata in extended file attributes 6 metadata in extended file attributes. Currently, the URL is stored in the 8 the mime_type attribute. If the file system does not support extended
|
/third_party/ffmpeg/tests/fate/ |
D | concatdec.mak | 17 $(foreach D,$(FATE_CONCAT_DEMUXER_EXTENDED_LAVF-yes),$(eval fate-concat-demuxer-extended-lavf-$(D):… 18 …_EXTENDED_LAVF-yes),$(eval fate-concat-demuxer-extended-lavf-$(D): CMD = concat $(SRC_PATH)/tests/… 19 …G_CONCAT_DEMUXER) += $(FATE_CONCAT_DEMUXER_EXTENDED_LAVF-yes:%=fate-concat-demuxer-extended-lavf-%)
|