Searched refs:Obj (Results 51 - 75 of 91) sorted by relevance

1234

/external/llvm/tools/lli/
H A DRemoteMemoryManager.h83 void notifyObjectLoaded(ExecutionEngine *EE, const ObjectImage *Obj) override;
H A Dlli.cpp266 void notifyObjectCompiled(const Module *M, const MemoryBuffer *Obj) override {
278 outfile.write(Obj->getBufferStart(), Obj->getBufferSize());
531 ErrorOr<object::ObjectFile *> Obj = local
533 if (!Obj) {
537 EE->addObjectFile(std::unique_ptr<object::ObjectFile>(Obj.get()));
H A DRemoteMemoryManager.cpp81 const ObjectImage *Obj) {
80 notifyObjectLoaded(ExecutionEngine *EE, const ObjectImage *Obj) argument
/external/llvm/lib/Object/
H A DMachOUniversal.cpp91 ErrorOr<Archive *> Obj = Archive::create(std::move(ObjBuffer)); local
92 if (std::error_code EC = Obj.getError())
94 Result.reset(Obj.get());
H A DObject.cpp65 ObjectFile *Obj = ObjOrErr ? ObjOrErr.get() : nullptr; local
66 return wrap(Obj);
H A DCOFFYAML.cpp388 void MappingTraits<COFFYAML::Object>::mapping(IO &IO, COFFYAML::Object &Obj) { argument
389 IO.mapRequired("header", Obj.Header);
390 IO.mapRequired("sections", Obj.Sections);
391 IO.mapRequired("symbols", Obj.Symbols);
/external/llvm/include/llvm/Object/
H A DELFObjectFile.h961 const ObjectFile *Obj = R.getObjectFile();
964 if (const ELF32LEObjectFile *ELFObj = dyn_cast<ELF32LEObjectFile>(Obj))
968 if (const ELF32BEObjectFile *ELFObj = dyn_cast<ELF32BEObjectFile>(Obj))
972 if (const ELF64LEObjectFile *ELFObj = dyn_cast<ELF64LEObjectFile>(Obj))
976 if (const ELF64BEObjectFile *ELFObj = dyn_cast<ELF64BEObjectFile>(Obj))
983 getELFDynamicSymbolIterators(SymbolicFile *Obj) {
984 if (const ELF32LEObjectFile *ELF = dyn_cast<ELF32LEObjectFile>(Obj))
987 if (const ELF64LEObjectFile *ELF = dyn_cast<ELF64LEObjectFile>(Obj))
990 if (const ELF32BEObjectFile *ELF = dyn_cast<ELF32BEObjectFile>(Obj))
993 if (const ELF64BEObjectFile *ELF = cast<ELF64BEObjectFile>(Obj))
1003 GetELFSymbolVersion(const ObjectFile *Obj, const SymbolRef &Sym, StringRef &Version, bool &IsDefault) argument
[all...]
H A DCOFFYAML.h185 static void mapping(IO &IO, COFFYAML::Object &Obj);
/external/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp69 bool ComputeAddress(const Value *Obj, Address &Addr);
142 bool MipsFastISel::ComputeAddress(const Value *Obj, Address &Addr) { argument
147 if (isa<Instruction>(Obj))
149 else if (isa<ConstantExpr>(Obj))
151 Addr.Base.Reg = getRegForValue(Obj);
/external/llvm/lib/MC/MCAnalysis/
H A DMCObjectDisassembler.cpp36 MCObjectDisassembler::MCObjectDisassembler(const ObjectFile &Obj, argument
39 : Obj(Obj), Dis(Dis), MIA(MIA), MOS(nullptr) {}
42 for (const SymbolRef &Symbol : Obj.symbols()) {
91 for (const SectionRef &Section : Obj.sections()) {
185 for (const SymbolRef &Symbol : Obj.symbols()) {
/external/clang/test/CodeGenCXX/
H A Dvtable-layout.cpp51 struct Obj {}; struct in namespace:test0
53 struct Base { virtual const Obj *foo() = 0; };
54 struct Derived : Base { virtual Obj *foo() { return new Obj(); } };
/external/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.h93 ModuleInfo(ObjectFile *Obj, DIContext *DICtx);
/external/pdfium/core/src/fpdftext/
H A Dfpdf_text_int.cpp1361 PDFTEXT_Obj Obj; local
1362 Obj.m_pTextObj = pTextObj;
1363 Obj.m_formMatrix = formMatrix;
1365 m_LineObj.Add(Obj);
1401 m_LineObj.Add(Obj);
1415 m_LineObj.Add(Obj);
1417 m_LineObj.InsertAt(i + 1, Obj);
1423 m_LineObj.InsertAt(0, Obj);
1426 m_LineObj.Add(Obj);
1429 FX_INT32 CPDF_TextPage::PreMarkedContent(PDFTEXT_Obj Obj) argument
1498 ProcessMarkedContent(PDFTEXT_Obj Obj) argument
1578 ProcessTextObject(PDFTEXT_Obj Obj) argument
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFContext.cpp624 DWARFContextInMemory::DWARFContextInMemory(object::ObjectFile *Obj) argument
625 : IsLittleEndian(Obj->isLittleEndian()),
626 AddressSize(Obj->getBytesInAddress()) {
627 for (const SectionRef &Section : Obj->sections()) {
690 if (RelocatedSection == Obj->section_end())
727 if (Obj->isELF()) {
732 object::RelocVisitor V(Obj->getFileFormatName());
/external/clang/test/Parser/
H A Dcxx-template-decl.cpp65 template <typename T, T Obj> class NTP7;
/external/llvm/include/llvm/LTO/
H A DLTOModule.h61 LTOModule(std::unique_ptr<object::IRObjectFile> Obj, TargetMachine *TM);
/external/llvm/tools/llvm-size/
H A Dllvm-size.cpp274 /// @brief Print the size of each section in @p Obj.
277 static void PrintObjectSectionSizes(ObjectFile *Obj) { argument
286 MachOObjectFile *MachO = dyn_cast<MachOObjectFile>(Obj);
299 for (const SectionRef &Section : Obj->sections()) {
338 for (const SectionRef &Section : Obj->sections()) {
367 for (const SectionRef &Section : Obj->sections()) {
/external/llvm/tools/yaml2obj/
H A Dyaml2elf.cpp93 static void zero(T &Obj) { argument
94 memset(&Obj, 0, sizeof(Obj));
/external/llvm/include/llvm/Support/
H A DYAMLTraits.h793 MappingNormalization(IO &i_o, TFinal &Obj) argument
794 : io(i_o), BufPtr(nullptr), Result(Obj) {
796 BufPtr = new (&Buffer) TNorm(io, Obj);
827 MappingNormalizationHeap(IO &i_o, TFinal &Obj) argument
828 : io(i_o), BufPtr(NULL), Result(Obj) {
830 BufPtr = new (&Buffer) TNorm(io, Obj);
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DTest.java26 * Obj is a typical class that implements JSONString. It also
31 class Obj implements JSONString {
36 public Obj(String string, double n, boolean b) {
73 Obj obj = new Obj("A beany object", 42, true);
/external/llvm/lib/Analysis/
H A DLint.cpp261 Value *Obj = findValue(*AI, /*OffsetOk=*/true); local
262 Assert1(!isa<AllocaInst>(Obj),
362 Value *Obj = findValue(V, /*OffsetOk=*/true); local
363 Assert1(!isa<AllocaInst>(Obj),
/external/clang/lib/AST/
H A DExprConstant.cpp1782 static bool HandleLValueDirectBase(EvalInfo &Info, const Expr *E, LValue &Obj, argument
1791 Obj.getLValueOffset() += RL->getBaseClassOffset(Base);
1792 Obj.addDecl(Info, E, Base, /*Virtual*/ false);
1796 static bool HandleLValueBase(EvalInfo &Info, const Expr *E, LValue &Obj, argument
1802 return HandleLValueDirectBase(Info, E, Obj, DerivedDecl, BaseDecl);
1804 SubobjectDesignator &D = Obj.Designator;
1810 if (!CastToDerivedClass(Info, E, Obj, DerivedDecl, D.MostDerivedPathLength))
1816 Obj.getLValueOffset() += Layout.getVBaseClassOffset(BaseDecl);
1817 Obj.addDecl(Info, E, BaseDecl, /*Virtual*/ true);
2105 findSubobject(EvalInfo &Info, const Expr *E, const CompleteObject &Obj,
[all...]
/external/llvm/lib/LTO/
H A DLTOModule.cpp46 LTOModule::LTOModule(std::unique_ptr<object::IRObjectFile> Obj, argument
48 : IRFile(std::move(Obj)), _target(TM) {}
/external/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp115 bool ComputeAddress(const Value *Obj, Address &Addr);
306 bool AArch64FastISel::ComputeAddress(const Value *Obj, Address &Addr) { argument
309 if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
312 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
317 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
322 if (const PointerType *Ty = dyn_cast<PointerType>(Obj->getType()))
396 const AllocaInst *AI = cast<AllocaInst>(Obj);
410 Addr.setReg(getRegForValue(Obj));
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tools.pas215 function QueryInterface(const IID: TGUID; out Obj): HResult; stdcall;
287 function QueryInterface(const IID: TGUID; out Obj): HResult; stdcall;
509 function TList<T>.QueryInterface(const IID: TGUID; out Obj): HResult;
511 if GetInterface(IID, Obj) then
675 out Obj): HResult;
677 if GetInterface(IID, Obj) then

Completed in 719 milliseconds

1234