HomeSort by relevance Sort by last modified time
    Searched refs:RE (Results 76 - 100 of 243) sorted by null

1 2 34 5 6 7 8 910

  /external/googletest/googletest/src/
gtest-port.cc 562 // Implements RE. Currently only needed for death tests.
564 RE::~RE() {
576 // Returns true iff regular expression re matches the entire str.
577 bool RE::FullMatch(const char* str, const RE& re) {
578 if (!re.is_valid_) return false;
581 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
584 // Returns true iff regular expression re matches a substring of st
    [all...]
gtest-death-test.cc 90 "\"threadsafe\" (child process re-executes the test binary "
356 bool DeathTest::Create(const char* statement, const RE* regex,
375 DeathTestImpl(const char* a_statement, const RE* a_regex)
391 const RE* regex() const { return regex_; }
415 const RE* const regex_;
566 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
622 const RE* a_regex,
789 ForkingDeathTest(const char* statement, const RE* regex);
803 ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex)
826 NoExecDeathTest(const char* a_statement, const RE* a_regex)
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-port.h 224 // RE - a simple regular expression class using the POSIX
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-port.cc 562 // Implements RE. Currently only needed for death tests.
564 RE::~RE() {
576 // Returns true iff regular expression re matches the entire str.
577 bool RE::FullMatch(const char* str, const RE& re) {
578 if (!re.is_valid_) return false;
581 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
584 // Returns true iff regular expression re matches a substring of st
    [all...]
gtest-death-test.cc 90 "\"threadsafe\" (child process re-executes the test binary "
356 bool DeathTest::Create(const char* statement, const RE* regex,
375 DeathTestImpl(const char* a_statement, const RE* a_regex)
391 const RE* regex() const { return regex_; }
415 const RE* const regex_;
566 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
622 const RE* a_regex,
789 ForkingDeathTest(const char* statement, const RE* regex);
803 ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex)
826 NoExecDeathTest(const char* a_statement, const RE* a_regex)
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 153 // RE - a simple regular expression class using the POSIX
818 // Defines RE.
822 class GTEST_API_ RE {
826 RE(const RE& other) { Init(other.pattern()); }
828 // Constructs an RE from a string.
829 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT
833 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT
837 RE(const char* regex) { Init(regex); } // NOLINT
838 ~RE();
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h 160 // RE - a simple regular expression class using the POSIX
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 151 // RE - a simple regular expression class using the POSIX
810 // Defines RE.
814 class GTEST_API_ RE {
818 RE(const RE& other) { Init(other.pattern()); }
820 // Constructs an RE from a string.
821 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT
825 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT
829 RE(const char* regex) { Init(regex); } // NOLINT
830 ~RE();
    [all...]
  /external/v8/testing/gtest/include/gtest/internal/
gtest-port.h 224 // RE - a simple regular expression class using the POSIX
    [all...]
  /external/v8/testing/gtest/src/
gtest-port.cc 544 // Implements RE. Currently only needed for death tests.
546 RE::~RE() {
558 // Returns true iff regular expression re matches the entire str.
559 bool RE::FullMatch(const char* str, const RE& re) {
560 if (!re.is_valid_) return false;
563 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
566 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h 160 // RE - a simple regular expression class using the POSIX
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-port.cc 521 // Implements RE. Currently only needed for death tests.
523 RE::~RE() {
535 // Returns true iff regular expression re matches the entire str.
536 bool RE::FullMatch(const char* str, const RE& re) {
537 if (!re.is_valid_) return false;
540 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
543 // Returns true iff regular expression re matches a substring of st
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h 160 // RE - a simple regular expression class using the POSIX
    [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h 160 // RE - a simple regular expression class using the POSIX
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 645 const MachO::any_relocation_info &RE,
647 bool IsScattered = O->isRelocationScattered(RE);
654 uint32_t Val = O->getPlainRelocationSymbolNum(RE);
700 bool isExtern = O->getPlainRelocationExternal(RE);
701 uint64_t Val = O->getPlainRelocationSymbolNum(RE);
723 MachO::any_relocation_info RE = Obj->getRelocation(Rel);
729 unsigned Type = Obj->getAnyRelocationType(RE);
730 bool IsPCRel = Obj->getAnyRelocationPCRel(RE);
737 bool isPCRel = Obj->getAnyRelocationPCRel(RE);
742 printRelocationTargetName(Obj, RE, fmt)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Object/
MachOObjectFile.cpp 556 InMemoryStruct<macho::RelocationEntry> RE;
557 getRelocation(Rel, RE);
558 Res = reinterpret_cast<uintptr_t>(sectAddress + RE->Word0);
563 InMemoryStruct<macho::RelocationEntry> RE;
564 getRelocation(Rel, RE);
565 uint32_t SymbolIdx = RE->Word1 & 0xffffff;
566 bool isExtern = (RE->Word1 >> 27) & 1;
584 InMemoryStruct<macho::RelocationEntry> RE;
585 getRelocation(Rel, RE);
586 Res = RE->Word1
    [all...]
  /external/llvm/utils/TableGen/
CodeGenSchedule.cpp 318 for (RecIter RI = RWDefs.begin(), RE = RWDefs.end();
319 RI != RE; ++RI) {
394 for (RecIter RI = RWDefs.begin(), RE = RWDefs.end(); RI != RE; ++RI) {
556 for (IdxIter RI = SC.Reads.begin(), RE = SC.Reads.end(); RI != RE; ++RI)
573 for (IdxIter RI = Reads.begin(), RE = Reads.end(); RI != RE; ++RI)
750 RE = SchedClasses[OldSCIdx].InstRWs.end(); RI != RE; ++RI)
    [all...]
  /external/clang/test/Layout/
ms-x86-pack-and-align.cpp 438 struct RE {
478 // CHECK-NEXT: 0 | struct RE
519 // CHECK-X64-NEXT: 0 | struct RE
799 sizeof(RE)+
  /external/curl/docs/cmdline-opts/
ftp-method.d 21 .RE
  /external/llvm/lib/CodeGen/
RegisterClassInfo.cpp 160 RI = TRI->regclass_begin(), RE = TRI->regclass_end(); RI != RE; ++RI) {
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCRegisterInfo.h 41 iterator RB, iterator RE, const unsigned char *Bits,
44 Allocatable(Allocable), RegsBegin(RB), RegsEnd(RE), RegSet(Bits),
  /external/swiftshader/third_party/LLVM/lib/Analysis/
RegionPrinter.cpp 119 for (Region::const_iterator RI = R->begin(), RE = R->end(); RI != RE; ++RI)
  /external/llvm/tools/llvm-readobj/
MachODumper.cpp 535 MachO::any_relocation_info RE = Obj->getRelocation(DR);
536 bool IsScattered = Obj->isRelocationScattered(RE);
537 bool IsExtern = !IsScattered && Obj->getPlainRelocationExternal(RE);
560 W.printNumber("PCRel", Obj->getAnyRelocationPCRel(RE));
561 W.printNumber("Length", Obj->getAnyRelocationLength(RE));
562 W.printNumber("Type", RelocName, Obj->getAnyRelocationType(RE));
564 W.printHex("Value", Obj->getScatteredRelocationValue(RE));
567 W.printNumber(Kind, TargetName, Obj->getPlainRelocationSymbolNum(RE));
574 SymbolNameOrOffset += utohexstr(Obj->getScatteredRelocationValue(RE));
581 << " " << Obj->getAnyRelocationPCRel(RE)
    [all...]
  /external/swiftshader/third_party/LLVM/tools/macho-dump/
macho-dump.cpp 98 InMemoryStruct<macho::RelocationEntry> RE;
99 Obj.ReadRelocationEntry(RelocationTableOffset, i, RE);
100 if (!RE) {
106 outs() << " (('word-0', " << format("0x%x", RE->Word0) << "),\n";
107 outs() << " ('word-1', " << format("0x%x", RE->Word1) << ")),\n";
  /external/google-breakpad/src/testing/gtest/src/
gtest-death-test.cc 89 "\"threadsafe\" (child process re-executes the test binary "
343 bool DeathTest::Create(const char* statement, const RE* regex,
362 DeathTestImpl(const char* a_statement, const RE* a_regex)
378 const RE* regex() const { return regex_; }
402 const RE* const regex_;
553 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
609 const RE* a_regex,
780 ForkingDeathTest(const char* statement, const RE* regex);
794 ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex)
817 NoExecDeathTest(const char* a_statement, const RE* a_regex)
    [all...]

Completed in 996 milliseconds

1 2 34 5 6 7 8 910