HomeSort by relevance Sort by last modified time
    Searched defs:ObjectFile (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Object/
ObjectFile.cpp 1 //===- ObjectFile.cpp - File format independent object file -----*- C++ -*-===//
10 // This file defines a file format independent ObjectFile class.
14 #include "llvm/Object/ObjectFile.h"
24 void ObjectFile::anchor() { }
26 ObjectFile::ObjectFile(unsigned int Type, MemoryBuffer *source, error_code &ec)
30 ObjectFile *ObjectFile::createObjectFile(MemoryBuffer *Object) {
61 ObjectFile *ObjectFile::createObjectFile(StringRef ObjectPath)
    [all...]
  /external/llvm/bindings/python/llvm/tests/
test_object.py 2 from ..object import ObjectFile
10 return ObjectFile(filename=source)
  /external/llvm/tools/bugpoint/
ToolRunner.h 49 enum FileType { AsmFile, ObjectFile, CFile };
  /external/llvm/bindings/python/llvm/
object.py 18 symbols, and relocations. These are represented by the classes ObjectFile,
24 The only way to use this module is to start by creating an ObjectFile. You can
25 create an ObjectFile by loading a file (specified by its path) or by creating a
51 obj = ObjectFile(filename='/bin/ls')
91 "ObjectFile",
97 class ObjectFile(LLVMObject):
182 Section instances can currently only be created from an ObjectFile
286 assert isinstance(object_file, ObjectFile)
443 library.LLVMDisposeObjectFile.argtypes = [ObjectFile]
445 library.LLVMGetSections.argtypes = [ObjectFile]
    [all...]
  /external/llvm/include/llvm/Object/
ObjectFile.h 1 //===- ObjectFile.h - File format independent object file -------*- C++ -*-===//
10 // This file declares a file format independent ObjectFile class.
28 class ObjectFile;
97 const ObjectFile *OwningObject;
102 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
139 const ObjectFile *OwningObject;
144 SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
182 const ObjectFile *OwningObject;
208 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
249 const ObjectFile *OwningObject
    [all...]

Completed in 471 milliseconds