Searched defs:RE (Results 1 - 22 of 22) sorted by relevance

/external/markdown/markdown/extensions/
H A Ddef_list.py29 RE = re.compile(r'(^|\n)[ ]{0,3}:[ ]{1,3}(.*?)(\n|$)') variable in class:DefListProcessor
32 return bool(self.RE.search(block))
36 m = self.RE.search(block)
/external/markdown/markdown/
H A Dpreprocessors.py194 RE = re.compile(r'^(\ ?\ ?\ ?)\[([^\]]*)\]:\s*([^ ]*)(.*)$', re.DOTALL) variable in class:ReferencePreprocessor
199 m = self.RE.match(line)
H A Dblockprocessors.py219 RE = re.compile(r'(^|\n)[ ]{0,3}>[ ]?(.*)') variable in class:BlockQuoteProcessor
222 return bool(self.RE.search(block))
226 m = self.RE.search(block)
246 m = self.RE.match(line)
259 RE = re.compile(r'^[ ]{0,3}\d+\.[ ]+(.*)') variable in class:OListProcessor
266 return bool(self.RE.match(block))
327 RE = re.compile(r'^[ ]{0,3}[*+-][ ]+(.*)') variable in class:UListProcessor
334 RE = re.compile(r'(^|\n)(?P<level>#{1,6})(?P<header>.*?)#*(\n|$)') variable in class:HashHeaderProcessor
337 return bool(self.RE.search(block))
341 m = self.RE
365 RE = re.compile(r'^.*?\\n[=-]{3,}', re.MULTILINE) variable in class:SetextHeaderProcessor
387 RE = r'[ ]{0,3}(?P<ch>[*_-])[ ]?((?P=ch)[ ]?){2,}[ ]*' variable in class:HRProcessor
423 RE = re.compile(r'^\\s*\\n') variable in class:EmptyBlockProcessor
[all...]
/external/clang/lib/ARCMigrate/
H A DPlistReporter.cpp112 RI = D.range_begin(), RE = D.range_end(); RI != RE; ++RI) {
177 StoredDiagnostic::range_iterator RI = D.range_begin(), RE = D.range_end(); local
179 if (RI != RE) {
182 for (; RI != RE; ++RI)
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/
H A DRegionCode.java43 static final String RE = "RE"; field in class:RegionCode
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest-port.cc50 // Implements RE. Currently only needed for death tests.
52 RE::~RE() {
58 bool RE::PartialMatch(const char* str, const RE& re) {
65 // Initializes an RE from its string representation.
66 void RE::Init(const char* regex) {
/external/chromium/testing/gtest/src/
H A Dgtest-port.cc113 // Implements RE. Currently only needed for death tests.
115 RE::~RE() {
128 bool RE::FullMatch(const char* str, const RE& re) {
137 bool RE::PartialMatch(const char* str, const RE& re) {
144 // Initializes an RE from its string representation.
145 void RE::Init(const char* regex) {
373 // Implements the RE clas
[all...]
/external/gtest/src/
H A Dgtest-port.cc113 // Implements RE. Currently only needed for death tests.
115 RE::~RE() {
128 bool RE::FullMatch(const char* str, const RE& re) {
137 bool RE::PartialMatch(const char* str, const RE& re) {
144 // Initializes an RE from its string representation.
145 void RE::Init(const char* regex) {
373 // Implements the RE clas
[all...]
/external/llvm/tools/macho-dump/
H A Dmacho-dump.cpp98 InMemoryStruct<macho::RelocationEntry> RE; local
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/llvm/utils/unittest/googletest/
H A Dgtest-port.cc113 // Implements RE. Currently only needed for death tests.
115 RE::~RE() {
128 bool RE::FullMatch(const char* str, const RE& re) {
137 bool RE::PartialMatch(const char* str, const RE& re) {
144 // Initializes an RE from its string representation.
145 void RE::Init(const char* regex) {
373 // Implements the RE clas
[all...]
/external/protobuf/gtest/src/
H A Dgtest-port.cc109 // Implements RE. Currently only needed for death tests.
111 RE::~RE() {
118 bool RE::FullMatch(const char* str, const RE& re) {
127 bool RE::PartialMatch(const char* str, const RE& re) {
134 // Initializes an RE from its string representation.
135 void RE::Init(const char* regex) {
362 // Implements the RE clas
[all...]
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp470 RI = R->arg_begin(), RE = R->arg_end();
471 LI != LE && RI != RE; ++LI, ++RI)
494 BasicBlock::iterator RE = RStart->getParent()->end(); local
517 for (BasicBlock::iterator RI = RStart; RI != RE; ++RI) {
568 assert(LI != LE && RI != RE);
584 assert(RI != RE);
594 assert(RI != RE);
/external/chromium/sdch/open-vcdiff/src/gtest/internal/
H A Dgtest-port.h96 // RE - a simple regular expression class using the POSIX
331 // Defines RE. Currently only needed for death tests.
335 class RE { class in namespace:testing::internal
337 // Constructs an RE from a string.
339 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
343 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
346 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
347 ~RE();
357 static bool PartialMatch(const ::std::string& str, const RE& re) {
363 static bool PartialMatch(const ::string& str, const RE
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp314 void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE, argument
316 Relocations[SectionID].push_back(RE);
319 void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE, argument
327 ExternalSymbolRelocations[SymbolName].push_back(RE);
329 // Copy the RE since we want to modify its addend.
330 RelocationEntry RECopy = RE;
383 void RuntimeDyldImpl::resolveRelocationEntry(const RelocationEntry &RE, argument
386 if (Sections[RE.SectionID].Address != 0) {
387 uint8_t *Target = Sections[RE.SectionID].Address + RE
[all...]
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp714 InMemoryStruct<macho::RelocationEntry> RE; local
715 getRelocation(Rel, RE);
719 (RE->Word0 & macho::RF_Scattered);
722 RelAddr = RE->Word0 & 0xFFFFFF;
724 RelAddr = RE->Word0;
731 InMemoryStruct<macho::RelocationEntry> RE; local
732 getRelocation(Rel, RE);
736 (RE->Word0 & macho::RF_Scattered);
738 Res = RE->Word0 & 0xFFFFFF;
740 Res = RE
745 InMemoryStruct<macho::RelocationEntry> RE; local
765 InMemoryStruct<macho::RelocationEntry> RE; local
776 InMemoryStruct<macho::RelocationEntry> RE; local
874 InMemoryStruct<macho::RelocationEntry> RE; local
910 printRelocationTargetName( InMemoryStruct<macho::RelocationEntry>& RE, raw_string_ostream &fmt) const argument
982 InMemoryStruct<macho::RelocationEntry> RE; local
1196 InMemoryStruct<macho::RelocationEntry> RE; local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp754 BasicBlock::InstListType::reverse_iterator RE = InstList.rend(); local
755 do { ++RI; } while (RI != RE && isa<DbgInfoIntrinsic>(&*RI));
756 if (RI == RE)
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h128 // RE - a simple regular expression class using the POSIX
618 // Defines RE.
622 class RE { class in namespace:testing::internal
624 // Constructs an RE from a string.
626 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
630 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
633 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
634 ~RE();
647 static bool FullMatch(const ::std::string& str, const RE& re) {
650 static bool PartialMatch(const ::std::string& str, const RE
[all...]
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-port.h147 // RE - a simple regular expression class using the POSIX
789 // Defines RE.
793 class GTEST_API_ RE { class in namespace:testing::internal
797 RE(const RE& other) { Init(other.pattern()); } function in class:testing::internal::RE
799 // Constructs an RE from a string.
800 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
804 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
808 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
809 ~RE();
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-port.h150 // RE - a simple regular expression class using the POSIX
823 // Defines RE.
827 class GTEST_API_ RE { class in namespace:testing::internal
831 RE(const RE& other) { Init(other.pattern()); } function in class:testing::internal::RE
833 // Constructs an RE from a string.
834 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
838 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
842 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
843 ~RE();
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h151 // RE - a simple regular expression class using the POSIX
810 // Defines RE.
814 class GTEST_API_ RE { class in namespace:testing::internal
818 RE(const RE& other) { Init(other.pattern()); } function in class:testing::internal::RE
820 // Constructs an RE from a string.
821 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
825 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
829 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
830 ~RE();
[all...]
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp3232 // If the definition is in this basic block, RE points to the definition;
3233 // otherwise, RE is the rend of the basic block.
3236 RE = CmpInstr->getParent() == MI->getParent() ? local
3240 for (; RI != RE; ++RI) {
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp944 RetEffect RE = RetEffect::MakeNoRetHard(); local
954 RE = S->getRetEffect();
958 S = getPersistentSummary(RE, RecEffect, DefEffect);
2536 ExplodedNode *Pred, RetEffect RE, RefVal X,
2688 // RetEffect RE = RetEffect::MakeNotOwned(RetEffect::ObjC);
2795 RetEffect RE = Summ.getRetEffect(); local
2796 if (RE.getKind() == RetEffect::NoRetHard) {
2857 RetEffect RE = Summ.getRetEffect(); local
2859 if (RE.getKind() == RetEffect::OwnedWhenTrackedReceiver) {
2861 RE
3296 RetEffect RE = RetEffect::MakeNoRet(); local
3312 checkReturnWithRetEffect(const ReturnStmt *S, CheckerContext &C, ExplodedNode *Pred, RetEffect RE, RefVal X, SymbolRef Sym, ProgramStateRef state) const argument
[all...]

Completed in 478 milliseconds