HomeSort by relevance Sort by last modified time
    Searched refs:icase (Results 1 - 24 of 24) sorted by null

  /external/clang/test/CodeGen/
2009-05-22-callingconv.c 8 int icase, const re_dfa_t *dfa)
11 re_string_construct (pstr, str, len, trans, icase, dfa)
14 int len, icase;
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.const/re.synopt/
syntax_option_type.pass.cpp 18 // icase = unspecified,
37 assert(std::regex_constants::icase != 0);
48 assert((std::regex_constants::icase & std::regex_constants::nosubs) == 0);
49 assert((std::regex_constants::icase & std::regex_constants::optimize) == 0);
50 assert((std::regex_constants::icase & std::regex_constants::collate) == 0);
51 assert((std::regex_constants::icase & std::regex_constants::ECMAScript) == 0);
52 assert((std::regex_constants::icase & std::regex_constants::basic) == 0);
53 assert((std::regex_constants::icase & std::regex_constants::extended) == 0);
54 assert((std::regex_constants::icase & std::regex_constants::awk) == 0);
55 assert((std::regex_constants::icase & std::regex_constants::grep) == 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.regex/re.regex.const/
constants.pass.cpp 17 // static constexpr regex_constants::syntax_option_type icase = regex_constants::icase;
39 static_assert((BR::icase == std::regex_constants::icase), "");
49 where(BR::icase);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
regex_constants.h 79 static constexpr syntax_option_type icase = 1 << _S_icase; member in namespace:regex_constants
regex.h 185 * @param icase ignores the case of the classification name.
189 * iterator range [first, last). If @p icase is true, the returned mask
356 static constexpr regex_constants::syntax_option_type icase member in class:basic_regex
357 = regex_constants::icase;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
regex_constants.h 79 static constexpr syntax_option_type icase = 1 << _S_icase; member in namespace:regex_constants
regex.h 185 * @param icase ignores the case of the classification name.
189 * iterator range [first, last). If @p icase is true, the returned mask
356 static constexpr regex_constants::syntax_option_type icase member in class:basic_regex
357 = regex_constants::icase;
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex_constants.h 79 static constexpr syntax_option_type icase = 1 << _S_icase; member in namespace:regex_constants
regex.h 185 * @param icase ignores the case of the classification name.
189 * iterator range [first, last). If @p icase is true, the returned mask
356 static constexpr regex_constants::syntax_option_type icase member in class:basic_regex
357 = regex_constants::icase;
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex_constants.h 79 static constexpr syntax_option_type icase = 1 << _S_icase; member in namespace:regex_constants
regex.h 189 * the iterator range [__first, __last). If @p icase is true,
357 static constexpr regex_constants::syntax_option_type icase member in class:basic_regex
358 = regex_constants::icase;
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.c 25 RE_TRANSLATE_TYPE trans, bool icase,
44 RE_TRANSLATE_TYPE trans, bool icase, const re_dfa_t *dfa)
53 re_string_construct_common (str, len, pstr, trans, icase, dfa);
72 RE_TRANSLATE_TYPE trans, bool icase, const re_dfa_t *dfa)
76 re_string_construct_common (str, len, pstr, trans, icase, dfa);
86 if (icase)
175 RE_TRANSLATE_TYPE trans, bool icase,
182 pstr->icase = icase;
183 pstr->mbs_allocated = (trans != NULL || icase);
    [all...]
regcomp.c 301 re_set_fastmap (char *fastmap, bool icase, int ch)
304 if (icase)
317 bool icase = (dfa->mb_cur_max == 1 && (bufp->syntax & RE_ICASE));
325 re_set_fastmap (fastmap, icase, dfa->nodes[node].opr.c);
358 re_set_fastmap (fastmap, icase, ch);
381 re_set_fastmap (fastmap, icase, i);
416 re_set_fastmap (fastmap, icase, *(unsigned char *) buf);
315 bool icase = (dfa->mb_cur_max == 1 && (bufp->syntax & RE_ICASE)); local
    [all...]
regex_internal.h 408 unsigned char icase; member in struct:re_string_t
regexec.c     [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.traits/
lookup_classname.pass.cpp 17 // bool icase = false) const;
25 test(const char_type* A, std::ctype_base::mask expected, bool icase = false)
29 assert(t.lookup_classname(F(A), F(A + t.length(A)), icase) == expected);
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.alg/re.alg.match/
basic.pass.cpp 418 std::regex_constants::basic | std::regex_constants::icase)));
638 std::regex_constants::basic | std::regex_constants::icase)));
    [all...]
awk.pass.cpp 637 std::regex_constants::awk | std::regex_constants::icase)));
    [all...]