HomeSort by relevance Sort by last modified time
    Searched refs:ModuleID (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/Archive/
ArchiveInternals.h 81 const std::string& ModuleID,
Archive.cpp 243 const std::string& ModuleID,
249 MemoryBuffer::getMemBufferCopy(StringRef(BufPtr, Length),ModuleID.c_str()));
  /external/llvm/include/llvm/
Module.h 203 std::string ModuleID; ///< Human readable identifier for the module
216 explicit Module(StringRef ModuleID, LLVMContext& C);
226 const std::string &getModuleIdentifier() const { return ModuleID; }
258 void setModuleIdentifier(StringRef ID) { ModuleID = ID; }
  /external/llvm/lib/VMCore/
Module.cpp 46 : Context(C), Materializer(NULL), ModuleID(MID) {
Core.cpp 83 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) {
84 return wrap(new Module(ModuleID, getGlobalContext()));
87 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
89 return wrap(new Module(ModuleID, *unwrap(C)));
    [all...]
  /external/llvm/include/llvm-c/
Core.h 426 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
434 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 123 CAMLprim LLVMModuleRef llvm_create_module(LLVMContextRef C, value ModuleID) {
124 return LLVMModuleCreateWithNameInContext(String_val(ModuleID), C);
    [all...]

Completed in 244 milliseconds