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

1 2 3 4 5 6

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
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...]
RuntimeDyldMachO.h 41 bool resolveI386Relocation(const RelocationEntry &RE, uint64_t Value);
42 bool resolveX86_64Relocation(const RelocationEntry &RE, uint64_t Value);
43 bool resolveARMRelocation(const RelocationEntry &RE, uint64_t Value);
44 bool resolveAArch64Relocation(const RelocationEntry &RE, uint64_t Value);
97 void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override;
  /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/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/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/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 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...]
  /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...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 303 const MachO::any_relocation_info &RE,
305 bool IsScattered = O->isRelocationScattered(RE);
312 uint32_t Val = O->getPlainRelocationSymbolNum(RE);
351 bool isExtern = O->getPlainRelocationExternal(RE);
352 uint64_t Val = O->getPlainRelocationSymbolNum(RE);
369 getPlainRelocationAddress(const MachO::any_relocation_info &RE) {
370 return RE.r_word0;
374 getScatteredRelocationAddress(const MachO::any_relocation_info &RE) {
375 return RE.r_word0 & 0xffffff;
379 const MachO::any_relocation_info &RE) {
    [all...]
  /cts/suite/audio_quality/test/
TaskSequentialTest.cpp 52 const android::String8 RE(".*");
53 std::list<TaskCase::IndexPair>* indices = mTestCase->findAllIndices(RE);
  /external/chromium_org/tools/memory_inspector/memory_inspector/backends/android/
memdump_parser.py 9 import re namespace
44 RE = (r'^([0-9a-f]+)-([0-9a-f]+)\s+'
51 map_re = re.compile(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/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/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_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); \
308 ::testing::internal::RE::PartialMatch(".*", (regex)); \
  /external/llvm/utils/unittest/googletest/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); \
295 ::testing::internal::RE::PartialMatch(".*", (regex)); \
  /external/mesa3d/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/protobuf/gtest/include/gtest/internal/
gtest-death-test-internal.h 77 static bool Create(const char* statement, const RE* regex,
137 virtual bool Create(const char* statement, const RE* regex,
144 virtual bool Create(const char* statement, const RE* regex,
157 const ::testing::internal::RE& gtest_regex = (regex); \
263 ::testing::internal::RE::PartialMatch(".*", (regex)); \
  /ndk/sources/third_party/googletest/googletest/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/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)

Completed in 1667 milliseconds

1 2 3 4 5 6