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

1 2

  /external/markdown/markdown/extensions/
def_list.py 22 import markdown, re namespace
29 RE = re.compile(r'(^|\n)[ ]{0,3}:[ ]{1,3}(.*?)(\n|$)')
32 return bool(self.RE.search(block))
36 m = self.RE.search(block)
  /external/clang/lib/ARCMigrate/
PlistReporter.cpp 112 RI = D.range_begin(), RE = D.range_end(); RI != RE; ++RI) {
177 StoredDiagnostic::range_iterator RI = D.range_begin(), RE = D.range_end();
179 if (RI != RE) {
182 for (; RI != RE; ++RI)
  /external/markdown/markdown/
preprocessors.py 10 import re namespace
194 RE = re.compile(r'^(\ ?\ ?\ ?)\[([^\]]*)\]:\s*([^ ]*)(.*)$', re.DOTALL)
199 m = self.RE.match(line)
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...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachORelocationInfo.cpp 36 RelocationEntry RE = Obj->getRelocation(Rel.getRawDataRefImpl());
37 bool isPCRel = Obj->getAnyRelocationPCRel(RE);
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
RegionCode.java 46 static final String RE = "RE";
  /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/sdch/open-vcdiff/src/gtest/
gtest-port.cc 50 // Implements RE. Currently only needed for death tests.
52 RE::~RE() {
57 // Returns true iff str contains regular expression re.
58 bool RE::PartialMatch(const char* str, const RE& re) {
59 if (!re.is_valid_) return false;
62 return regexec(&re.regex_, str, 1, &match, 0) == 0;
65 // Initializes an RE from its string representation
    [all...]
  /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/testing/gtest/src/
gtest-port.cc 138 // Implements RE. Currently only needed for death tests.
140 RE::~RE() {
152 // Returns true iff regular expression re matches the entire str.
153 bool RE::FullMatch(const char* str, const RE& re) {
154 if (!re.is_valid_) return false;
157 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
160 // 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/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...]
RuntimeDyld.cpp 335 void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE,
337 Relocations[SectionID].push_back(RE);
340 void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE,
348 ExternalSymbolRelocations[SymbolName].push_back(RE);
350 // Copy the RE since we want to modify its addend.
351 RelocationEntry RECopy = RE;
448 const RelocationEntry &RE = Relocs[i];
450 if (Sections[RE.SectionID].Address == 0)
452 resolveRelocation(RE, Value);
  /external/llvm/tools/llvm-readobj/
MachODumper.cpp 352 macho::RelocationEntry RE = Obj->getRelocation(DR);
353 bool IsScattered = Obj->isRelocationScattered(RE);
358 W.printNumber("PCRel", Obj->getAnyRelocationPCRel(RE));
359 W.printNumber("Length", Obj->getAnyRelocationLength(RE));
363 W.printNumber("Extern", Obj->getPlainRelocationExternal(RE));
364 W.printNumber("Type", RelocName, Obj->getAnyRelocationType(RE));
370 << " " << Obj->getAnyRelocationPCRel(RE)
371 << " " << Obj->getAnyRelocationLength(RE);
375 OS << " " << Obj->getPlainRelocationExternal(RE);
  /external/llvm/tools/macho-dump/
macho-dump.cpp 102 macho::RelocationEntry RE = Obj.getRelocation(I->getRawDataRefImpl());
104 outs() << " (('word-0', " << format("0x%x", RE.Word0) << "),\n";
105 outs() << " ('word-1', " << format("0x%x", RE.Word1) << ")),\n";
  /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...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-port.cc 138 // Implements RE. Currently only needed for death tests.
140 RE::~RE() {
152 // Returns true iff regular expression re matches the entire str.
153 bool RE::FullMatch(const char* str, const RE& re) {
154 if (!re.is_valid_) return false;
157 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
160 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
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/tools/llvm-diff/
DifferenceEngine.cpp 84 // If R is out of bounds, we're done after this in any case.
86 // If L is also out of bounds, we're done immediately.
173 /// Unifies two instructions, given that they're known not to have
468 RI = R->arg_begin(), RE = R->arg_end();
469 LI != LE && RI != RE; ++LI, ++RI)
492 BasicBlock::iterator RE = RStart->getParent()->end();
515 for (BasicBlock::iterator RI = RStart; RI != RE; ++RI) {
566 assert(LI != LE && RI != RE);
582 assert(RI != RE);
592 assert(RI != RE);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 662 // From here on out we're working with named functions.
776 BasicBlock::InstListType::reverse_iterator RE = InstList.rend();
777 do { ++RI; } while (RI != RE && isa<DbgInfoIntrinsic>(&*RI));
778 if (RI == RE)
892 /// the memory instruction that we're computing this address for.
896 /// AddrMode - This is the addressing mode that we're building up. This is
    [all...]
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-port.h 128 // RE - a simple regular expression class using the POSIX
625 // Defines RE.
629 class RE {
631 // Constructs an RE from a string.
633 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT
637 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT
640 RE(const char* regex) { Init(regex); } // NOLINT
641 ~RE();
646 // FullMatch(str, re) returns true iff regular expression re matche
    [all...]

Completed in 1525 milliseconds

1 2