Home
last modified time | relevance | path

Searched refs:icase (Results 1 – 19 of 19) sorted by relevance

/external/libcxx/test/std/re/re.const/re.synopt/
Dsyntax_option_type.pass.cpp38 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/
Dkeysym.c125 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/
D2009-05-22-callingconv.c8 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/
Dconstants.pass.cpp40 static_assert((BR::icase == std::regex_constants::icase), ""); in test()
50 where(BR::icase); in test()
/external/libcxx/test/std/re/re.traits/
Dlookup_classname.pass.cpp28 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/
Dlibxt_string.man20 \fB\-\-icase\fP
/external/catch2/misc/
Dcoverage-helper.cpp61 std::regex regex("MemoryChecker\\.(\\d+)\\.log", std::regex::icase); in parse_log_file_arg()
/external/catch2/include/internal/
Dcatch_matchers_string.cpp87 flags |= std::regex::icase; in match()
/external/flatbuffers/tests/fuzzer/
Dflatbuffers_scalar_fuzzer.cc159 std::regex_constants::optimize | std::regex_constants::icase } in MatchNumber()
/external/libcxx/test/std/re/re.alg/re.alg.match/
Dbasic.pass.cpp428 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()
Decma.pass.cpp630 std::regex_constants::icase))); in main()
1316 std::regex_constants::icase))); in main()
Dextended.pass.cpp646 std::regex_constants::extended | std::regex_constants::icase))); in main()
1312 std::regex_constants::extended | std::regex_constants::icase))); in main()
Dawk.pass.cpp640 std::regex_constants::awk | std::regex_constants::icase))); in main()
1321 std::regex_constants::awk | std::regex_constants::icase))); in main()
/external/libcxx/include/
Dregex27 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/
Dbasic.pass.cpp491 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()
Decma.pass.cpp699 std::regex_constants::icase))); in main()
1478 std::regex_constants::icase))); in main()
Dextended.pass.cpp718 std::regex_constants::extended | std::regex_constants::icase))); in main()
1474 std::regex_constants::extended | std::regex_constants::icase))); in main()
Dawk.pass.cpp718 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/
Dcatch.hpp9498 flags |= std::regex::icase; in match()