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

1 2 3 4 5 6 7

  /external/pcre/dist/
pcrecpp_unittest.cc 47 using pcrecpp::RE;
71 RE pattern("ruby:\\d+");
80 RE pattern("ruby:(\\d+)");
94 RE line_matcher(".*\n");
116 RE newre(buf);
133 CHECK(RE("([0-9a-fA-F]+)[uUlL]*").FullMatch(#value, Hex(&v))); \
135 CHECK(RE("([0-9a-fA-FxX]+)[uUlL]*").FullMatch("0x" #value, CRadix(&v))); \
159 CHECK(RE("([0-7]+)[uUlL]*").FullMatch(#value, Octal(&v))); \
161 CHECK(RE("([0-9a-fA-FxX]+)[uUlL]*").FullMatch("0" #value, CRadix(&v))); \
185 CHECK(RE("(-?[0-9]+)[uUlL]*").FullMatch(#value, &v));
    [all...]
pcre_scanner.h 73 // Return true iff the start of the remaining input matches "re"
74 bool LookingAt(const RE& re) const;
77 // a. the start of the remaining input matches "re",
82 bool Consume(const RE& re,
83 const Arg& arg0 = RE::no_arg,
84 const Arg& arg1 = RE::no_arg,
85 const Arg& arg2 = RE::no_arg
90 // a prefix of the input matches this RE, it is automaticall
    [all...]
pcre_scanner.cc 73 void Scanner::SetSkipExpression(const char* re) {
75 if (re != NULL) {
76 skip_ = new RE(re);
87 void Scanner::Skip(const char* re) {
89 if (re != NULL) {
90 skip_ = new RE(re);
127 bool Scanner::LookingAt(const RE& re) const
    [all...]
pcrecpp.h 36 // C++ interface to the pcre regular-expression library. RE supports
64 // pcrecpp::RE re("h.*o");
65 // re.FullMatch("hello");
68 // pcrecpp::RE re("e");
69 // !re.FullMatch("hello");
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 objec
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFI386.h 66 RelocationEntry RE(SectionID, Offset, RelType, 0, -1, 0, 0, 0, false, 0);
67 addRelocationForSymbol(RE, TargetName);
79 RelocationEntry RE =
82 addRelocationForSection(RE, TargetSectionID);
86 RelocationEntry RE =
88 addRelocationForSection(RE, TargetSectionID);
92 RelocationEntry RE = RelocationEntry(SectionID, Offset, RelType,
94 addRelocationForSection(RE, TargetSectionID);
106 void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override {
107 const auto Section = Sections[RE.SectionID]
    [all...]
RuntimeDyldMachOX86_64.h 50 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
51 RE.Addend = memcpyAddend(RE);
53 getRelocationValueRef(Obj, RelI, RE, ObjSectionToID));
56 if (!IsExtern && RE.IsPCRel)
57 makeValueAddendPCRel(Value, RelI, 1 << RE.Size);
59 if (RE.RelType == MachO::X86_64_RELOC_GOT ||
60 RE.RelType == MachO::X86_64_RELOC_GOT_LOAD)
61 processGOTRelocation(RE, Value, Stubs);
63 RE.Addend = Value.Offset
    [all...]
RuntimeDyldMachOARM.h 36 int64_t decodeAddend(const RelocationEntry &RE) const {
37 const SectionEntry &Section = Sections[RE.SectionID];
38 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset);
40 switch (RE.RelType) {
42 return memcpyAddend(RE);
73 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
74 RE.Addend = decodeAddend(RE);
76 getRelocationValueRef(Obj, RelI, RE, ObjSectionToID));
78 if (RE.IsPCRel
    [all...]
RuntimeDyldMachOI386.h 54 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
55 RE.Addend = memcpyAddend(RE);
57 getRelocationValueRef(Obj, RelI, RE, ObjSectionToID));
64 // if (IsExtern && RE.IsPCRel) {
69 if (RE.IsPCRel)
70 makeValueAddendPCRel(Value, RelI, 1 << RE.Size);
72 RE.Addend = Value.Offset;
75 addRelocationForSymbol(RE, Value.SymbolName);
77 addRelocationForSection(RE, Value.SectionID)
    [all...]
RuntimeDyldMachOAArch64.h 35 int64_t decodeAddend(const RelocationEntry &RE) const {
36 const SectionEntry &Section = Sections[RE.SectionID];
37 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset);
38 unsigned NumBytes = 1 << RE.Size;
41 switch (RE.RelType) {
58 switch (RE.RelType) {
273 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
274 RE.Addend = decodeAddend(RE);
276 assert((ExplicitAddend == 0 || RE.Addend == 0) && "Relocation has "
    [all...]
RuntimeDyldCOFFX86_64.h 43 // The target location for the relocation is described by RE.SectionID and
44 // RE.Offset. RE.SectionID can be used to find the SectionEntry. Each
60 // the symbol resides (RE.Addend provides additional information about the
63 void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override {
64 const SectionEntry &Section = Sections[RE.SectionID];
65 uint8_t *Target = Section.getAddressWithOffset(RE.Offset);
67 switch (RE.RelType) {
75 uint64_t FinalAddress = Section.getLoadAddressWithOffset(RE.Offset);
78 uint64_t Delta = 4 + (RE.RelType - COFF::IMAGE_REL_AMD64_REL32)
    [all...]
  /build/kati/testcase/
var_append.mk 4 RE=
12 RE+=$(foo) $(bar)
21 echo "$(RE)"
26 echo "$(flavor RE)"
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 46 int64_t RuntimeDyldMachO::memcpyAddend(const RelocationEntry &RE) const {
47 unsigned NumBytes = 1 << RE.Size;
48 uint8_t *Src = Sections[RE.SectionID].getAddress() + RE.Offset;
59 MachO::any_relocation_info RE =
63 uint32_t RelocType = Obj.getAnyRelocationType(RE);
64 bool IsPCRel = Obj.getAnyRelocationPCRel(RE);
65 unsigned Size = Obj.getAnyRelocationLength(RE);
71 unsigned SymbolBaseAddr = Obj.getScatteredRelocationValue(RE);
91 const RelocationEntry &RE, ObjSectionToIDMap &ObjSectionToID)
    [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;
  /hardware/bsp/intel/peripheral/libupm/examples/python/
buzzer.py 29 chords = [upmBuzzer.DO, upmBuzzer.RE, upmBuzzer.MI, upmBuzzer.FA,
36 # Play sound (DO, RE, MI, etc.), pausing for 0.1 seconds between notes
  /hardware/bsp/intel/peripheral/libupm/src/buzzer/
buzzer.h 30 #define RE 2930 // 294 Hz
  /external/google-breakpad/src/testing/gtest/test/
gtest-port_test.cc 373 // Defines StringTypes as the list of all string types that class RE
384 // Tests RE's implicit constructors.
386 const RE empty(TypeParam(""));
389 const RE simple(TypeParam("hello"));
392 const RE normal(TypeParam(".*(\\w+)"));
396 // Tests that RE's constructors reject invalid regular expressions.
399 const RE invalid(TypeParam("?"));
403 // Tests RE::FullMatch().
405 const RE empty(TypeParam(""));
406 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty))
    [all...]
  /external/gtest/test/
gtest-port_test.cc 403 // Defines StringTypes as the list of all string types that class RE
414 // Tests RE's implicit constructors.
416 const RE empty(TypeParam(""));
419 const RE simple(TypeParam("hello"));
422 const RE normal(TypeParam(".*(\\w+)"));
426 // Tests that RE's constructors reject invalid regular expressions.
429 const RE invalid(TypeParam("?"));
433 // Tests RE::FullMatch().
435 const RE empty(TypeParam(""));
436 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty))
    [all...]
  /external/protobuf/gtest/test/
gtest-port_test.cc 180 // Defines StringTypes as the list of all string types that class RE
191 // Tests RE's implicit constructors.
193 const RE empty(TypeParam(""));
196 const RE simple(TypeParam("hello"));
199 const RE normal(TypeParam(".*(\\w+)"));
203 // Tests that RE's constructors reject invalid regular expressions.
206 const RE invalid(TypeParam("?"));
210 // Tests RE::FullMatch().
212 const RE empty(TypeParam(""));
213 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty))
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/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...]
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
buzzer-sound.cxx 34 int chord[] = { DO, RE, MI, FA, SOL, LA, SI, DO, SI };
41 // play sound (DO, RE, MI, etc...), pausing for 0.1 seconds between notes
  /cts/suite/audio_quality/test/
TaskSequentialTest.cpp 52 const android::String8 RE(".*");
53 std::list<TaskCase::IndexPair>* indices = mTestCase->findAllIndices(RE);
  /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...]

Completed in 1489 milliseconds

1 2 3 4 5 6 7