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

12

/external/chromium_org/third_party/markdown/extensions/
H A Dadmonition.py99 RE = re.compile(r'(?:^|\n)!!!\ ?([\w\-]+)(?:\ "(.*?)")?') variable in class:AdmonitionProcessor
103 return self.RE.search(block) or \
110 m = self.RE.search(block)
H A Ddef_list.py64 RE = re.compile(r'(^|\n)[ ]{0,3}:[ ]{1,3}(.*?)(\n|$)') variable in class:DefListProcessor
68 return bool(self.RE.search(block))
73 m = self.RE.search(raw_block)
/external/chromium_org/third_party/markdown/
H A Dpostprocessors.py130 RE = re.compile('%s(\d+)%s' % (util.STX, util.ETX)) variable in class:UnescapePostprocessor
136 return self.RE.sub(self.unescape, text)
H A Dpreprocessors.py308 RE = re.compile(r'^[ ]{0,3}\[([^\]]*)\]:\s*([^ ]*)[ ]*(%s)?$' % TITLE, re.DOTALL) variable in class:ReferencePreprocessor
315 m = self.RE.match(line)
H A Dblockprocessors.py290 RE = re.compile(r'(^|\n)[ ]{0,3}>[ ]?(.*)') variable in class:BlockQuoteProcessor
293 return bool(self.RE.search(block))
297 m = self.RE.search(block)
320 m = self.RE.match(line)
333 RE = re.compile(r'^[ ]{0,3}\d+\.[ ]+(.*)') variable in class:OListProcessor
347 return bool(self.RE.match(block))
439 RE = re.compile(r'^[ ]{0,3}[*+-][ ]+(.*)') variable in class:UListProcessor
446 RE = re.compile(r'(^|\n)(?P<level>#{1,6})(?P<header>.*?)#*(\n|$)') variable in class:HashHeaderProcessor
449 return bool(self.RE.search(block))
453 m = self.RE
477 RE = re.compile(r'^.*?\\n[=-]+[ ]*(\\n|$)', re.MULTILINE) variable in class:SetextHeaderProcessor
499 RE = r'^[ ]{0,3}((-+[ ]{0,2}){3,}|(_+[ ]{0,2}){3,}|(\\*+[ ]{0,2}){3,})[ ]*' variable in class:HRProcessor
[all...]
/external/clang/lib/ARCMigrate/
H A DPlistReporter.cpp53 RI = D.range_begin(), RE = D.range_end(); RI != RE; ++RI) {
106 StoredDiagnostic::range_iterator RI = D.range_begin(), RE = D.range_end(); local
108 if (RI != RE) {
111 for (; RI != RE; ++RI)
/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/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MachORelocationInfo.cpp36 any_relocation_info RE = Obj->getRelocation(Rel.getRawDataRefImpl()); variable
37 bool isPCRel = Obj->getAnyRelocationPCRel(RE);
/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/chromium_org/third_party/cython/src/Cython/Plex/
H A D__init__.py35 from Regexps import RE, Seq, Alt, Rep1, Empty, Str, Any, AnyBut, AnyChar, Range namespace
H A DRegexps.py79 an RE which will match a character in any of the ranges.
88 CodeRange(code1, code2) is an RE which matches any character
102 class RE(object): class in inherits:object
103 """RE is the base class for regular expression constructors.
106 re1 + re2 is an RE which matches |re1| followed by |re2|
107 re1 | re2 is an RE which matches either |re1| or |re2|
110 nullable = 1 # True if this RE can match 0 input symbols
111 match_nl = 1 # True if this RE can match a string ending with '\n'
118 RE, starting at |initial_state| and ending at |final_state|.
119 If |match_bol| is true, the RE mus
[all...]
/external/clang/test/Layout/
H A Dms-x86-pack-and-align.cpp454 struct RE { struct
494 // CHECK-NEXT: 0 | struct RE
537 // CHECK-X64-NEXT: 0 | struct RE
570 sizeof(RE)+
/external/clang/test/Sema/
H A Dgnu-flags.c131 // expected-warning@+8 {{redeclaration of already-defined enum 'RE' is a GNU extension}}
134 enum RE { enum
139 enum RE;
/external/chromium_org/third_party/mesa/src/src/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.cc139 // Implements RE. Currently only needed for death tests.
141 RE::~RE() {
154 bool RE::FullMatch(const char* str, const RE& re) {
163 bool RE::PartialMatch(const char* str, const RE& re) {
170 // Initializes an RE from its string representation.
171 void RE::Init(const char* regex) {
399 // Implements the RE clas
[all...]
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/
H A DRegionCode.java53 static final String RE = "RE"; field in class:RegionCode
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp319 MachO::any_relocation_info RE = Obj->getRelocation(DR); local
320 bool IsScattered = Obj->isRelocationScattered(RE);
325 SymbolNameOrOffset += utohexstr(Obj->getScatteredRelocationValue(RE));
334 SymbolNameOrOffset += utohexstr(Obj->getPlainRelocationSymbolNum(RE));
340 W.printNumber("PCRel", Obj->getAnyRelocationPCRel(RE));
341 W.printNumber("Length", Obj->getAnyRelocationLength(RE));
345 W.printNumber("Extern", Obj->getPlainRelocationExternal(RE));
346 W.printNumber("Type", RelocName, Obj->getAnyRelocationType(RE));
352 << " " << Obj->getAnyRelocationPCRel(RE)
353 << " " << Obj->getAnyRelocationLength(RE);
[all...]
/external/llvm/utils/unittest/googletest/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/mesa3d/src/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/pcre/dist/
H A Dpcrecpp.h36 // C++ interface to the pcre regular-expression library. RE supports
64 // pcrecpp::RE re("h.*o");
68 // pcrecpp::RE re("e");
71 // Example: creating a temporary RE object:
72 // pcrecpp::RE("h.*o").FullMatch("hello");
77 // You can, as in the different examples above, store the RE object
78 // explicitly in a variable or use a temporary RE object. The
90 // pcrecpp::RE re("(\\w+):(\\d+)");
103 // !pcrecpp::RE("\\w+:\\d+").FullMatch("ruby:1234", &s);
106 // !pcrecpp::RE("(
487 class PCRECPP_EXP_DEFN RE { class in namespace:pcrecpp
491 RE(const string& pat) { Init(pat, NULL); } function in class:pcrecpp::RE
492 RE(const string& pat, const RE_Options& option) { Init(pat, &option); } function in class:pcrecpp::RE
493 RE(const char* pat) { Init(pat, NULL); } function in class:pcrecpp::RE
494 RE(const char* pat, const RE_Options& option) { Init(pat, &option); } function in class:pcrecpp::RE
495 RE(const unsigned char* pat) { function in class:pcrecpp::RE
498 RE(const unsigned char* pat, const RE_Options& option) { function in class:pcrecpp::RE
504 RE(const RE& re) { Init(re.pattern_, &re.options_); } function in class:pcrecpp::RE
[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.cpp466 RI = R->arg_begin(), RE = R->arg_end();
467 LI != LE && RI != RE; ++LI, ++RI)
490 BasicBlock::iterator RE = RStart->getParent()->end(); local
513 for (BasicBlock::iterator RI = RStart; RI != RE; ++RI) {
564 assert(LI != LE && RI != RE);
580 assert(RI != RE);
590 assert(RI != RE);
/external/llvm/tools/macho-dump/
H A Dmacho-dump.cpp102 MachO::any_relocation_info RE = Obj.getRelocation(I->getRawDataRefImpl()); local
104 outs() << " (('word-0', " << format("0x%x", RE.r_word0) << "),\n";
105 outs() << " ('word-1', " << format("0x%x", RE.r_word1) << ")),\n";
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp499 void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE, argument
501 Relocations[SectionID].push_back(RE);
504 void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE, argument
511 ExternalSymbolRelocations[SymbolName].push_back(RE);
513 // Copy the RE since we want to modify its addend.
514 RelocationEntry RECopy = RE;
618 const RelocationEntry &RE = Relocs[i]; local
620 if (Sections[RE.SectionID].Address == nullptr)
622 resolveRelocation(RE, Value);

Completed in 374 milliseconds

12