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

1 2

  /external/clang/lib/ARCMigrate/
PlistReporter.cpp 53 RI = D.range_begin(), RE = D.range_end(); RI != RE; ++RI) {
106 StoredDiagnostic::range_iterator RI = D.range_begin(), RE = D.range_end();
108 if (RI != RE) {
111 for (; RI != RE; ++RI)
  /external/chromium_org/third_party/markdown/extensions/
admonition.py 45 rST suggests the following `types`, but you're free to use whatever you want:
80 import re namespace
99 RE = re.compile(r'(?:^|\n)!!!\ ?([\w\-]+)(?:\ "(.*?)")?')
103 return self.RE.search(block) or \
110 m = self.RE.search(block)
def_list.py 58 import re namespace
64 RE = re.compile(r'(^|\n)[ ]{0,3}:[ ]{1,3}(.*?)(\n|$)')
65 NO_INDENT_RE = re.compile(r'^[ ]{0,3}[^ :]')
68 return bool(self.RE.search(block))
73 m = self.RE.search(raw_block)
  /external/chromium_org/third_party/markdown/
postprocessors.py 47 import re namespace
110 m = re.match(r'^\<\/?([^ >]+)', html)
130 RE = re.compile('%s(\d+)%s' % (util.STX, util.ETX))
136 return self.RE.sub(self.unescape, text)
preprocessors.py 45 import re namespace
87 source = re.sub(r'(?<=\n) +\n', '\n', source)
103 attrs_re = re.compile(attrs_pattern, re.VERBOSE)
104 left_tag_re = re.compile(left_tag_pattern, re.VERBOSE)
223 start = re.sub(r'\smarkdown(=[\'"]?[^> ]*[\'"]?)?',
266 start = re.sub(r'\smarkdown(=[\'"]?[^> ]*[\'"]?)?',
283 start = re.sub(r'\smarkdown(=[\'"]?[^> ]*[\'"]?)?',
308 RE = re.compile(r'^[ ]{0,3}\[([^\]]*)\]:\s*([^ ]*)[ ]*(%s)?$' % TITLE, re.DOTALL
    [all...]
blockprocessors.py 50 import re namespace
177 self.INDENT_RE = re.compile(r'^(([ ]{%s})+)'% self.tab_length)
238 # We're in a tightlist - so we already are at correct parent.
241 # We're in a looselist - so we need to find parent.
251 # No more child levels. If we're short of indent_level,
290 RE = re.compile(r'(^|\n)[ ]{0,3}>[ ]?(.*)')
293 return bool(self.RE.search(block))
297 m = self.RE.search(block)
320 m = self.RE.match(line
    [all...]
  /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/llvm/lib/Target/X86/MCTargetDesc/
X86MachORelocationInfo.cpp 36 any_relocation_info RE = Obj->getRelocation(Rel.getRawDataRefImpl());
37 bool isPCRel = Obj->getAnyRelocationPCRel(RE);
  /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/chromium_org/third_party/cython/src/Cython/Plex/
__init__.py 35 from Regexps import RE, Seq, Alt, Rep1, Empty, Str, Any, AnyBut, AnyChar, Range
Regexps.py 79 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):
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 must be able to match at th
400 re = None variable in class:SwitchCase
    [all...]
  /external/clang/test/Layout/
ms-x86-pack-and-align.cpp 454 struct RE {
494 // CHECK-NEXT: 0 | struct RE
537 // CHECK-X64-NEXT: 0 | struct RE
570 sizeof(RE)+
  /external/clang/test/Sema/
gnu-flags.c 131 // expected-warning@+8 {{redeclaration of already-defined enum 'RE' is a GNU extension}}
134 enum RE {
139 enum RE;
  /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 139 // Implements RE. Currently only needed for death tests.
141 RE::~RE() {
153 // Returns true iff regular expression re matches the entire str.
154 bool RE::FullMatch(const char* str, const RE& re) {
155 if (!re.is_valid_) return false;
158 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
161 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
RegionCode.java 53 static final String RE = "RE";
  /external/llvm/tools/llvm-readobj/
MachODumper.cpp 319 MachO::any_relocation_info RE = Obj->getRelocation(DR);
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/tools/macho-dump/
macho-dump.cpp 102 MachO::any_relocation_info RE = Obj.getRelocation(I->getRawDataRefImpl());
104 outs() << " (('word-0', " << format("0x%x", RE.r_word0) << "),\n";
105 outs() << " ('word-1', " << format("0x%x", RE.r_word1) << ")),\n";
  /external/llvm/utils/unittest/googletest/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/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/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
466 RI = R->arg_begin(), RE = R->arg_end();
467 LI != LE && RI != RE; ++LI, ++RI)
490 BasicBlock::iterator RE = RStart->getParent()->end();
513 for (BasicBlock::iterator RI = RStart; RI != RE; ++RI) {
564 assert(LI != LE && RI != RE);
580 assert(RI != RE);
590 assert(RI != RE);
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest-port.cc 522 // Implements RE. Currently only needed for death tests.
524 RE::~RE() {
536 // Returns true iff regular expression re matches the entire str.
537 bool RE::FullMatch(const char* str, const RE& re) {
538 if (!re.is_valid_) return false;
541 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
544 // Returns true iff regular expression re matches a substring of st
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 499 void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE,
501 Relocations[SectionID].push_back(RE);
504 void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE,
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];
620 if (Sections[RE.SectionID].Address == nullptr)
622 resolveRelocation(RE, Value);
RuntimeDyldMachO.cpp 242 // The target location for the relocation is described by RE.SectionID and
243 // RE.Offset. RE.SectionID can be used to find the SectionEntry. Each
259 // the symbol resides (RE.Addend provides additional information about the
262 void RuntimeDyldMachO::resolveRelocation(const RelocationEntry &RE,
265 const SectionEntry &Section = Sections[RE.SectionID];
266 uint8_t* LocalAddress = Section.Address + RE.Offset;
267 uint64_t FinalAddress = Section.LoadAddress + RE.Offset;
269 dbgs() << "resolveRelocation Section: " << RE.SectionID
273 << " Addend: " << RE.Adden
    [all...]

Completed in 645 milliseconds

1 2