Searched defs:RE (Results 1 - 25 of 58) sorted by path

123

/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp947 RetEffect RE = RetEffect::MakeNoRetHard(); local
957 RE = S->getRetEffect();
961 S = getPersistentSummary(RE, RecEffect, DefEffect);
2649 ExplodedNode *Pred, RetEffect RE, RefVal X,
2798 // RetEffect RE = RetEffect::MakeNotOwned(RetEffect::ObjC);
2958 RetEffect RE = Summ.getRetEffect(); local
2959 if (RE.getKind() == RetEffect::NoRetHard) {
3056 RetEffect RE = Summ.getRetEffect(); local
3058 if (RE.getKind() == RetEffect::OwnedWhenTrackedReceiver) {
3060 RE
3507 RetEffect RE = RetEffect::MakeNoRet(); local
3523 checkReturnWithRetEffect(const ReturnStmt *S, CheckerContext &C, ExplodedNode *Pred, RetEffect RE, RefVal X, SymbolRef Sym, ProgramStateRef state) const argument
[all...]
/external/clang/test/Layout/
H A Dms-x86-pack-and-align.cpp438 struct RE { struct
478 // CHECK-NEXT: 0 | struct RE
519 // CHECK-X64-NEXT: 0 | struct RE
799 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/fmtlib/test/gtest/
H A Dgtest.h256 // RE - a simple regular expression class using the POSIX
2029 // Defines RE.
2033 class GTEST_API_ RE { class in namespace:std::tr1
2037 RE(const RE& other) { Init(other.pattern()); } function in class:std::tr1::RE
2039 // Constructs an RE from a string.
2040 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:std::tr1::RE
2044 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:std::tr1::RE
2048 RE(const char* regex) { Init(regex); } // NOLINT function in class:std::tr1::RE
2049 ~RE();
[all...]
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-port.h152 // RE - a simple regular expression class using the POSIX
829 // Defines RE.
833 class GTEST_API_ RE { class in namespace:testing::internal
837 RE(const RE& other) { Init(other.pattern()); } function in class:testing::internal::RE
839 // Constructs an RE from a string.
840 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
844 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
848 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
849 ~RE();
[all...]
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-port.cc138 // Implements RE. Currently only needed for death tests.
140 RE::~RE() {
153 bool RE::FullMatch(const char* str, const RE& re) {
162 bool RE::PartialMatch(const char* str, const RE& re) {
169 // Initializes an RE from its string representation.
170 void RE::Init(const char* regex) {
398 // Implements the RE clas
[all...]
/external/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h224 // RE - a simple regular expression class using the POSIX
1186 // Defines RE.
1190 class GTEST_API_ RE { class in namespace:testing::internal
1194 RE(const RE& other) { Init(other.pattern()); } function in class:testing::internal::RE
1196 // Constructs an RE from a string.
1197 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
1201 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
1205 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
1206 ~RE();
[all...]
/external/googletest/googletest/src/
H A Dgtest-port.cc562 // Implements RE. Currently only needed for death tests.
564 RE::~RE() {
577 bool RE::FullMatch(const char* str, const RE& re) {
586 bool RE::PartialMatch(const char* str, const RE& re) {
593 // Initializes an RE from its string representation.
594 void RE::Init(const char* regex) {
822 // Implements the RE clas
[all...]
/external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
H A DRegionCode.java53 static final String RE = "RE"; field in class:RegionCode
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-port.h224 // RE - a simple regular expression class using the POSIX
1152 // Defines RE.
1156 class GTEST_API_ RE { class in namespace:testing::internal
1160 RE(const RE& other) { Init(other.pattern()); } function in class:testing::internal::RE
1162 // Constructs an RE from a string.
1163 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
1167 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT function in class:testing::internal::RE
1171 RE(const char* regex) { Init(regex); } // NOLINT function in class:testing::internal::RE
1172 ~RE();
[all...]
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-port.cc562 // Implements RE. Currently only needed for death tests.
564 RE::~RE() {
577 bool RE::FullMatch(const char* str, const RE& re) {
586 bool RE::PartialMatch(const char* str, const RE& re) {
593 // Initializes an RE from its string representation.
594 void RE::Init(const char* regex) {
822 // Implements the RE clas
[all...]
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp2030 BasicBlock::InstListType::reverse_iterator RE = InstList.rend(); local
2031 do { ++RI; } while (RI != RE && isa<DbgInfoIntrinsic>(&*RI));
2032 if (RI == RE)
H A DMachinePipeliner.cpp1311 SmallVectorImpl<DFAPacketizer *>::iterator RE = Resources.end(); local
1313 while (RI != RE) {
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp772 void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE, argument
774 Relocations[SectionID].push_back(RE);
777 void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE, argument
784 ExternalSymbolRelocations[SymbolName].push_back(RE);
786 // Copy the RE since we want to modify its addend.
787 RelocationEntry RECopy = RE;
894 const RelocationEntry &RE = Relocs[i]; local
896 if (Sections[RE.SectionID].getAddress() == nullptr)
898 resolveRelocation(RE, Value);
H A DRuntimeDyldELF.cpp1077 // The target location for the relocation is described by RE.SectionID and
1078 // RE.Offset. RE.SectionID can be used to find the SectionEntry. Each
1094 // the symbol resides (RE.Addend provides additional information about the
1097 void RuntimeDyldELF::resolveRelocation(const RelocationEntry &RE, argument
1099 const SectionEntry &Section = Sections[RE.SectionID];
1100 return resolveRelocation(Section, RE.Offset, Value, RE.RelType, RE.Addend,
1101 RE
1759 RelocationEntry RE = computeGOTOffsetRE(SectionID, GOTOffset, Value.Offset, ELF::R_X86_64_64); local
[all...]
H A DRuntimeDyldMachO.cpp46 int64_t RuntimeDyldMachO::memcpyAddend(const RelocationEntry &RE) const {
47 unsigned NumBytes = 1 << RE.Size;
48 uint8_t *Src = Sections[RE.SectionID].getAddress() + RE.Offset;
60 MachO::any_relocation_info RE = local
64 uint32_t RelocType = Obj.getAnyRelocationType(RE);
65 bool IsPCRel = Obj.getAnyRelocationPCRel(RE);
66 unsigned Size = Obj.getAnyRelocationLength(RE);
72 unsigned SymbolBaseAddr = Obj.getScatteredRelocationValue(RE);
97 const RelocationEntry &RE, ObjSectionToIDMa
95 getRelocationValueRef( const ObjectFile &BaseTObj, const relocation_iterator &RI, const RelocationEntry &RE, ObjSectionToIDMap &ObjSectionToID) argument
146 dumpRelocationToResolve(const RelocationEntry &RE, uint64_t Value) const argument
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFI386.h89 RelocationEntry RE(SectionID, Offset, RelType, 0, -1, 0, 0, 0, false, 0);
90 addRelocationForSymbol(RE, TargetName);
105 RelocationEntry RE = variable
108 addRelocationForSection(RE, TargetSectionID);
112 RelocationEntry RE = variable
114 addRelocationForSection(RE, TargetSectionID);
118 RelocationEntry RE = RelocationEntry(SectionID, Offset, RelType, variable
120 addRelocationForSection(RE, TargetSectionID);
132 void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override {
133 const auto Section = Sections[RE
[all...]
H A DRuntimeDyldCOFFThumb.h86 RelocationEntry RE(SectionID, Offset, RelType, 0, -1, 0, 0, 0, false, 0);
87 addRelocationForSymbol(RE, TargetName);
102 RelocationEntry RE = variable
105 addRelocationForSection(RE, TargetSectionID);
109 RelocationEntry RE = variable
111 addRelocationForSection(RE, TargetSectionID);
115 RelocationEntry RE = RelocationEntry(SectionID, Offset, RelType, variable
117 addRelocationForSection(RE, TargetSectionID);
121 RelocationEntry RE = variable
124 addRelocationForSection(RE, TargetSectionI
130 RelocationEntry RE = variable
[all...]
H A DRuntimeDyldMachOAArch64.h35 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) {
278 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
279 RE.Addend = decodeAddend(RE);
281 assert((ExplicitAddend == 0 || RE
385 processGOTRelocation(const RelocationEntry &RE, RelocationValueRef &Value, StubMap &Stubs) argument
426 MachO::any_relocation_info RE = local
[all...]
H A DRuntimeDyldMachOARM.h37 int64_t decodeAddend(const RelocationEntry &RE) const {
38 const SectionEntry &Section = Sections[RE.SectionID];
39 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset);
41 switch (RE.RelType) {
43 return memcpyAddend(RE);
91 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
92 RE.Addend = decodeAddend(RE);
94 if (auto ValueOrErr = getRelocationValueRef(Obj, RelI, RE, ObjSectionToID))
99 if (RE
187 processBranchRelocation(const RelocationEntry &RE, const RelocationValueRef &Value, StubMap &Stubs) argument
223 MachO::any_relocation_info RE = local
[all...]
H A DRuntimeDyldMachOI386.h68 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
69 RE.Addend = memcpyAddend(RE);
71 if (auto ValueOrErr = getRelocationValueRef(Obj, RelI, RE, ObjSectionToID))
81 // if (IsExtern && RE.IsPCRel) {
86 if (RE.IsPCRel)
87 makeValueAddendPCRel(Value, RelI, 1 << RE.Size);
89 RE.Addend = Value.Offset;
92 addRelocationForSymbol(RE, Value.SymbolName);
94 addRelocationForSection(RE, Valu
149 MachO::any_relocation_info RE = local
[all...]
H A DRuntimeDyldMachOX86_64.h51 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
52 RE.Addend = memcpyAddend(RE);
54 if (auto ValueOrErr = getRelocationValueRef(Obj, RelI, RE, ObjSectionToID))
60 if (!IsExtern && RE.IsPCRel)
61 makeValueAddendPCRel(Value, RelI, 1 << RE.Size);
73 if (RE.RelType == MachO::X86_64_RELOC_GOT ||
74 RE.RelType == MachO::X86_64_RELOC_GOT_LOAD)
75 processGOTRelocation(RE, Value, Stubs);
77 RE
130 processGOTRelocation(const RelocationEntry &RE, RelocationValueRef &Value, StubMap &Stubs) argument
164 MachO::any_relocation_info RE = local
[all...]
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp120 getPlainRelocationAddress(const MachO::any_relocation_info &RE) { argument
121 return RE.r_word0;
125 getScatteredRelocationAddress(const MachO::any_relocation_info &RE) { argument
126 return RE.r_word0 & 0xffffff;
130 const MachO::any_relocation_info &RE) {
132 return (RE.r_word1 >> 24) & 1;
133 return (RE.r_word1 >> 7) & 1;
138 const MachO::any_relocation_info &RE) {
139 return (RE.r_word0 >> 30) & 1;
143 const MachO::any_relocation_info &RE) {
129 getPlainRelocationPCRel(const MachOObjectFile *O, const MachO::any_relocation_info &RE) argument
137 getScatteredRelocationPCRel(const MachOObjectFile *O, const MachO::any_relocation_info &RE) argument
142 getPlainRelocationLength(const MachOObjectFile *O, const MachO::any_relocation_info &RE) argument
150 getScatteredRelocationLength(const MachO::any_relocation_info &RE) argument
154 getPlainRelocationType(const MachOObjectFile *O, const MachO::any_relocation_info &RE) argument
748 MachO::any_relocation_info RE = getRelocation(Rel); local
754 MachO::any_relocation_info RE = getRelocation(Rel); local
779 MachO::any_relocation_info RE = getRelocation(Rel); local
893 MachO::any_relocation_info RE = getRelocation(Rel); local
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonVLIWPacketizer.cpp226 MachineBasicBlock::iterator RE = RB; local
227 while (RE != End && !HII->isSchedulingBoundary(*RE, &MB, MF))
228 ++RE;
230 if (RE != End)
231 ++RE;
232 // If RB == End, then RE == End.
234 Packetizer.PacketizeMIs(&MB, RB, RE);
236 Begin = RE;
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp5145 // If the definition is in this basic block, RE points to the definition;
5146 // otherwise, RE is the rend of the basic block.
5149 RE = CmpInstr.getParent() == MI->getParent() local
5153 for (; RI != RE; ++RI) {

Completed in 678 milliseconds

123