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

1 2 3 4 5 6

  /external/protobuf/gtest/test/
gtest-port_test.cc 167 // Defines StringTypes as the list of all string types that class RE
180 // Tests RE's implicit constructors.
182 const RE empty(TypeParam(""));
185 const RE simple(TypeParam("hello"));
188 const RE normal(TypeParam(".*(\\w+)"));
192 // Tests that RE's constructors reject invalid regular expressions.
195 const RE invalid(TypeParam("?"));
199 // Tests RE::FullMatch().
201 const RE empty(TypeParam(""));
202 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty))
    [all...]
  /external/llvm/lib/CodeGen/
PHIEliminationUtils.cpp 38 RE = MRI.reg_end(); RI != RE; ++RI) {
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 87 void RuntimeDyldMachO::resolveRelocation(const RelocationEntry &RE,
89 const SectionEntry &Section = Sections[RE.SectionID];
90 return resolveRelocation(Section, RE.Offset, Value, RE.RelType, RE.Addend,
91 RE.IsPCRel, RE.Size);
287 macho::RelocationEntry RE = MachO->getRelocation(RelI.getRawDataRefImpl());
289 uint32_t RelType = MachO->getAnyRelocationType(RE);
293 bool isExtern = MachO->getPlainRelocationExternal(RE);
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-death-test-internal.h 76 static bool Create(const char* statement, const RE* regex,
131 virtual bool Create(const char* statement, const RE* regex,
138 virtual bool Create(const char* statement, const RE* regex,
151 const ::testing::internal::RE& gtest_regex = (regex); \
gtest-port.h 96 // RE - a simple regular expression class using the POSIX
331 // Defines RE. Currently only needed for death tests.
335 class RE {
337 // Constructs an RE from a string.
339 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT
343 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT
346 RE(const char* regex) { Init(regex); } // NOLINT
347 ~RE();
352 // Returns true iff str contains regular expression re.
357 static bool PartialMatch(const ::std::string& str, const RE& re)
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 290 const macho::RelocationEntry &RE,
292 bool IsScattered = O->isRelocationScattered(RE);
299 uint32_t Val = O->getPlainRelocationSymbolNum(RE);
341 bool isExtern = O->getPlainRelocationExternal(RE);
342 uint64_t Val = O->getPlainRelocationSymbolNum(RE);
358 static uint32_t getPlainRelocationAddress(const macho::RelocationEntry &RE) {
359 return RE.Word0;
363 getScatteredRelocationAddress(const macho::RelocationEntry &RE) {
364 return RE.Word0 & 0xffffff;
368 const macho::RelocationEntry &RE) {
    [all...]
  /external/chromium/testing/gtest/test/
gtest-port_test.cc 348 // Defines StringTypes as the list of all string types that class RE
359 // Tests RE's implicit constructors.
361 const RE empty(TypeParam(""));
364 const RE simple(TypeParam("hello"));
367 const RE normal(TypeParam(".*(\\w+)"));
371 // Tests that RE's constructors reject invalid regular expressions.
374 const RE invalid(TypeParam("?"));
378 // Tests RE::FullMatch().
380 const RE empty(TypeParam(""));
381 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty))
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest-port_test.cc 410 // Defines StringTypes as the list of all string types that class RE
421 // Tests RE's implicit constructors.
423 const RE empty(TypeParam(""));
426 const RE simple(TypeParam("hello"));
429 const RE normal(TypeParam(".*(\\w+)"));
433 // Tests that RE's constructors reject invalid regular expressions.
436 const RE invalid(TypeParam("?"));
440 // Tests RE::FullMatch().
442 const RE empty(TypeParam(""));
443 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty))
    [all...]
  /external/gtest/test/
gtest-port_test.cc 368 // Defines StringTypes as the list of all string types that class RE
379 // Tests RE's implicit constructors.
381 const RE empty(TypeParam(""));
384 const RE simple(TypeParam("hello"));
387 const RE normal(TypeParam(".*(\\w+)"));
391 // Tests that RE's constructors reject invalid regular expressions.
394 const RE invalid(TypeParam("?"));
398 // Tests RE::FullMatch().
400 const RE empty(TypeParam(""));
401 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty))
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest-port_test.cc 368 // Defines StringTypes as the list of all string types that class RE
379 // Tests RE's implicit constructors.
381 const RE empty(TypeParam(""));
384 const RE simple(TypeParam("hello"));
387 const RE normal(TypeParam(".*(\\w+)"));
391 // Tests that RE's constructors reject invalid regular expressions.
394 const RE invalid(TypeParam("?"));
398 // Tests RE::FullMatch().
400 const RE empty(TypeParam(""));
401 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty))
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-port_test.cc 410 // Defines StringTypes as the list of all string types that class RE
421 // Tests RE's implicit constructors.
423 const RE empty(TypeParam(""));
426 const RE simple(TypeParam("hello"));
429 const RE normal(TypeParam(".*(\\w+)"));
433 // Tests that RE's constructors reject invalid regular expressions.
436 const RE invalid(TypeParam("?"));
440 // Tests RE::FullMatch().
442 const RE empty(TypeParam(""));
443 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty))
    [all...]
  /external/markdown/markdown/
blockprocessors.py 15 import re namespace
116 INDENT_RE = re.compile(r'^(([ ]{%s})+)'% markdown.TAB_LENGTH)
167 # We're in a tightlist - so we already are at correct parent.
170 # We're in a looselist - so we need to find parent.
180 # No more child levels. If we're short of indent_level,
219 RE = re.compile(r'(^|\n)[ ]{0,3}>[ ]?(.*)')
222 return bool(self.RE.search(block))
226 m = self.RE.search(block)
246 m = self.RE.match(line
    [all...]
  /cts/suite/audio_quality/test/
TaskSequentialTest.cpp 52 const android::String8 RE(".*");
53 std::list<TaskCase::IndexPair>* indices = mTestCase->findAllIndices(RE);
  /external/chromium/testing/gtest/src/
gtest-port.cc 113 // Implements RE. Currently only needed for death tests.
115 RE::~RE() {
127 // Returns true iff regular expression re matches the entire str.
128 bool RE::FullMatch(const char* str, const RE& re) {
129 if (!re.is_valid_) return false;
132 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
135 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-port.cc 113 // Implements RE. Currently only needed for death tests.
115 RE::~RE() {
127 // Returns true iff regular expression re matches the entire str.
128 bool RE::FullMatch(const char* str, const RE& re) {
129 if (!re.is_valid_) return false;
132 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
135 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/gtest/src/
gtest-port.cc 113 // Implements RE. Currently only needed for death tests.
115 RE::~RE() {
127 // Returns true iff regular expression re matches the entire str.
128 bool RE::FullMatch(const char* str, const RE& re) {
129 if (!re.is_valid_) return false;
132 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
135 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-port.cc 113 // Implements RE. Currently only needed for death tests.
115 RE::~RE() {
127 // Returns true iff regular expression re matches the entire str.
128 bool RE::FullMatch(const char* str, const RE& re) {
129 if (!re.is_valid_) return false;
132 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
135 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest-port.cc 113 // Implements RE. Currently only needed for death tests.
115 RE::~RE() {
127 // Returns true iff regular expression re matches the entire str.
128 bool RE::FullMatch(const char* str, const RE& re) {
129 if (!re.is_valid_) return false;
132 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
135 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-port.cc 113 // Implements RE. Currently only needed for death tests.
115 RE::~RE() {
127 // Returns true iff regular expression re matches the entire str.
128 bool RE::FullMatch(const char* str, const RE& re) {
129 if (!re.is_valid_) return false;
132 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
135 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/open-vcdiff/gtest/src/
gtest-port.cc 109 // Implements RE. Currently only needed for death tests.
111 RE::~RE() {
117 // Returns true iff regular expression re matches the entire str.
118 bool RE::FullMatch(const char* str, const RE& re) {
119 if (!re.is_valid_) return false;
122 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
125 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/protobuf/gtest/src/
gtest-port.cc 109 // Implements RE. Currently only needed for death tests.
111 RE::~RE() {
117 // Returns true iff regular expression re matches the entire str.
118 bool RE::FullMatch(const char* str, const RE& re) {
119 if (!re.is_valid_) return false;
122 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
125 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-death-test-internal.h 79 static bool Create(const char* statement, const RE* regex,
143 virtual bool Create(const char* statement, const RE* regex,
150 virtual bool Create(const char* statement, const RE* regex,
188 const ::testing::internal::RE& gtest_regex = (regex); \
297 ::testing::internal::RE::PartialMatch(".*", (regex)); \
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-death-test-internal.h 79 static bool Create(const char* statement, const RE* regex,
143 virtual bool Create(const char* statement, const RE* regex,
150 virtual bool Create(const char* statement, const RE* regex,
188 const ::testing::internal::RE& gtest_regex = (regex); \
308 ::testing::internal::RE::PartialMatch(".*", (regex)); \
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-death-test-internal.h 79 static bool Create(const char* statement, const RE* regex,
143 virtual bool Create(const char* statement, const RE* regex,
150 virtual bool Create(const char* statement, const RE* regex,
188 const ::testing::internal::RE& gtest_regex = (regex); \
297 ::testing::internal::RE::PartialMatch(".*", (regex)); \
  /external/gtest/include/gtest/internal/
gtest-death-test-internal.h 79 static bool Create(const char* statement, const RE* regex,
143 virtual bool Create(const char* statement, const RE* regex,
150 virtual bool Create(const char* statement, const RE* regex,
188 const ::testing::internal::RE& gtest_regex = (regex); \
297 ::testing::internal::RE::PartialMatch(".*", (regex)); \

Completed in 1094 milliseconds

1 2 3 4 5 6