HomeSort by relevance Sort by last modified time
    Searched refs:REG_NOMATCH (Results 1 - 25 of 47) sorted by null

1 2

  /bionic/tests/
regex_test.cpp 27 ASSERT_EQ(REG_NOMATCH, regexec(&re, "foo", 0, NULL, 0));
30 regerror(REG_NOMATCH, &re, buf, sizeof(buf));
  /bionic/libc/include/
regex.h 72 #define REG_NOMATCH 1
  /bionic/tests/headers/posix/
regex_h.c 51 MACRO(REG_NOMATCH);
  /external/llvm/lib/Support/
regex_impl.h 66 #define REG_NOMATCH 1
regerror.c 59 { REG_NOMATCH, "REG_NOMATCH", "llvm_regexec() failed to match" },
Regex.cpp 70 if (rc == REG_NOMATCH)
  /external/swiftshader/third_party/LLVM/lib/Support/
regex_impl.h 66 #define REG_NOMATCH 1
regerror.c 59 { REG_NOMATCH, "REG_NOMATCH", "llvm_regexec() failed to match" },
Regex.cpp 66 if (rc == REG_NOMATCH)
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
regex_impl.h 66 #define REG_NOMATCH 1
regerror.c 59 { REG_NOMATCH, "REG_NOMATCH", "llvm_regexec() failed to match" },
Regex.cpp 82 if (rc == REG_NOMATCH)
  /external/pcre/dist2/src/
pcre2posix.h 90 REG_NOMATCH /* match failed */
pcre2posix.c 362 case PCRE2_ERROR_NOMATCH: return REG_NOMATCH;
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regerror.c 113 = #define REG_NOMATCH 1
137 { REG_NOMATCH, "REG_NOMATCH", "regexec() failed to match" },
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
onigposix.h 46 #define REG_NOMATCH 1
regposix.c 61 { ONIG_MISMATCH, REG_NOMATCH },
206 r = REG_NOMATCH;
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
util.c 310 r = (r == 0) ? 0 : REG_NOMATCH;
315 r = (r == 0) ? 0 : REG_NOMATCH;
318 if (r == REG_NOMATCH)
fastgrep.c 208 int ret = REG_NOMATCH;
  /toolchain/binutils/binutils-2.27/include/
xregex2.h 299 REG_NOMATCH, /* Didn't find a match (for regexec). */
  /toolchain/binutils/binutils-2.27/opcodes/
cgen-asm.in 378 regexec ((regex_t *) CGEN_INSN_RX (insn), str, 0, NULL, 0) == REG_NOMATCH)
  /external/eigen/bench/tensors/
benchmark_main.cc 112 if (match != REG_NOMATCH) {
  /external/perfetto/src/ftrace_reader/
proto_translation_table.cc 146 return ret != REG_NOMATCH;
  /external/strace/
basic_filters.c 80 if (rc == REG_NOMATCH)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
regex.h 330 REG_NOMATCH, /* Didn't find a match (for regexec). */

Completed in 1008 milliseconds

1 2