/external/libcxx/test/std/re/re.const/re.synopt/ |
D | syntax_option_type.pass.cpp | 38 assert(std::regex_constants::icase != 0); in main() 49 assert((std::regex_constants::icase & std::regex_constants::nosubs) == 0); in main() 50 assert((std::regex_constants::icase & std::regex_constants::optimize) == 0); in main() 51 assert((std::regex_constants::icase & std::regex_constants::collate) == 0); in main() 52 assert((std::regex_constants::icase & std::regex_constants::ECMAScript) == 0); in main() 53 assert((std::regex_constants::icase & std::regex_constants::basic) == 0); in main() 54 assert((std::regex_constants::icase & std::regex_constants::extended) == 0); in main() 55 assert((std::regex_constants::icase & std::regex_constants::awk) == 0); in main() 56 assert((std::regex_constants::icase & std::regex_constants::grep) == 0); in main() 57 assert((std::regex_constants::icase & std::regex_constants::egrep) == 0); in main() [all …]
|
/external/libxkbcommon/xkbcommon/src/ |
D | keysym.c | 125 find_sym(const struct name_keysym *entry, const char *name, bool icase) in find_sym() argument 133 if (!icase && strcmp(get_name(entry), name) == 0) in find_sym() 135 if (icase && xkb_keysym_is_lower(entry->keysym)) in find_sym() 139 if (!icase && strcmp(get_name(iter), name) == 0) in find_sym() 143 if (icase && xkb_keysym_is_lower(iter->keysym)) in find_sym() 149 if (!icase && strcmp(get_name(iter), name) == 0) in find_sym() 153 if (icase && xkb_keysym_is_lower(iter->keysym)) in find_sym() 157 if (icase) in find_sym() 168 bool icase = (flags & XKB_KEYSYM_CASE_INSENSITIVE); in xkb_keysym_from_name() local 177 entry = find_sym(entry, s, icase); in xkb_keysym_from_name() [all …]
|
/external/clang/test/CodeGen/ |
D | 2009-05-22-callingconv.c | 8 int icase, const re_dfa_t *dfa) 11 re_string_construct (pstr, str, len, trans, icase, dfa) in re_string_construct() argument 14 int len, icase;
|
/external/libcxx/test/std/re/re.regex/re.regex.const/ |
D | constants.pass.cpp | 40 static_assert((BR::icase == std::regex_constants::icase), ""); in test() 50 where(BR::icase); in test()
|
/external/libcxx/test/std/re/re.traits/ |
D | lookup_classname.pass.cpp | 28 bool icase = false) in test() argument 33 char_class_type result = t.lookup_classname(F(A), F(A + t.length(A)), icase); in test() 41 bool icase = false) in test_w() argument 46 char_class_type result = t.lookup_classname(F(A), F(A + t.length(A)), icase); in test_w()
|
/external/iptables/extensions/ |
D | libxt_string.man | 20 \fB\-\-icase\fP
|
/external/catch2/misc/ |
D | coverage-helper.cpp | 61 std::regex regex("MemoryChecker\\.(\\d+)\\.log", std::regex::icase); in parse_log_file_arg()
|
/external/catch2/include/internal/ |
D | catch_matchers_string.cpp | 87 flags |= std::regex::icase; in match()
|
/external/flatbuffers/tests/fuzzer/ |
D | flatbuffers_scalar_fuzzer.cc | 159 std::regex_constants::optimize | std::regex_constants::icase } in MatchNumber()
|
/external/libcxx/test/std/re/re.alg/re.alg.match/ |
D | basic.pass.cpp | 428 std::regex_constants::basic | std::regex_constants::icase))); in main() 648 std::regex_constants::basic | std::regex_constants::icase))); in main() 1096 std::regex_constants::basic | std::regex_constants::icase))); in main() 1316 std::regex_constants::basic | std::regex_constants::icase))); in main()
|
D | ecma.pass.cpp | 630 std::regex_constants::icase))); in main() 1316 std::regex_constants::icase))); in main()
|
D | extended.pass.cpp | 646 std::regex_constants::extended | std::regex_constants::icase))); in main() 1312 std::regex_constants::extended | std::regex_constants::icase))); in main()
|
D | awk.pass.cpp | 640 std::regex_constants::awk | std::regex_constants::icase))); in main() 1321 std::regex_constants::awk | std::regex_constants::icase))); in main()
|
/external/libcxx/include/ |
D | regex | 27 icase = unspecified, 117 bool icase = false) const; 136 static constexpr regex_constants::syntax_option_type icase = regex_constants::icase; 793 icase = 1 << 0, 2522 static const regex_constants::syntax_option_type icase = regex_constants::icase; 2948 const regex_constants::syntax_option_type basic_regex<_CharT, _Traits>::icase; 4036 __traits_.lookup_classname(__first, __temp, __flags_ & icase); 4660 if (flags() & icase) 4749 if (flags() & icase) 4781 __negate, __flags_ & icase,
|
/external/libcxx/test/std/re/re.alg/re.alg.search/ |
D | basic.pass.cpp | 491 std::regex_constants::basic | std::regex_constants::icase))); in main() 720 std::regex_constants::basic | std::regex_constants::icase))); in main() 1249 std::regex_constants::basic | std::regex_constants::icase))); in main() 1478 std::regex_constants::basic | std::regex_constants::icase))); in main()
|
D | ecma.pass.cpp | 699 std::regex_constants::icase))); in main() 1478 std::regex_constants::icase))); in main()
|
D | extended.pass.cpp | 718 std::regex_constants::extended | std::regex_constants::icase))); in main() 1474 std::regex_constants::extended | std::regex_constants::icase))); in main()
|
D | awk.pass.cpp | 718 std::regex_constants::awk | std::regex_constants::icase))); in main() 1489 std::regex_constants::awk | std::regex_constants::icase))); in main()
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 9498 flags |= std::regex::icase; in match()
|