Searched defs:target_triple (Results 1 - 5 of 5) sorted by relevance

/external/lldb/source/Commands/
H A DCommandObjectArgs.cpp104 ConstString target_triple; local
/external/lldb/source/API/
H A DSBDebugger.cpp520 const char *target_triple,
535 target_triple,
554 target_triple,
566 const char *target_triple)
575 target_triple,
586 m_opaque_sp.get(), filename, target_triple, target_sp.get());
519 CreateTarget(const char *filename, const char *target_triple, const char *platform_name, bool add_dependent_modules, lldb::SBError& sb_error) argument
565 CreateTargetWithFileAndTargetTriple(const char *filename, const char *target_triple) argument
/external/lldb/source/Symbol/
H A DClangASTContext.cpp268 ClangASTContext::ClangASTContext (const char *target_triple) : argument
285 if (target_triple && target_triple[0])
286 SetTargetTriple (target_triple);
328 ClangASTContext::SetTargetTriple (const char *target_triple) argument
331 m_target_triple.assign(target_triple);
520 // target_triple should be something like "x86_64-apple-macosx"
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp903 llvm::Triple &target_triple = target_arch.GetTriple(); local
904 if (target_triple.getVendorName().size() == 0)
906 target_triple.setVendor (remote_triple.getVendor());
908 if (target_triple.getOSName().size() == 0)
910 target_triple.setOS (remote_triple.getOS());
912 if (target_triple.getEnvironmentName().size() == 0)
913 target_triple.setEnvironment (remote_triple.getEnvironment());
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli417 (** [target_triple m] is the target specifier for the module [m], something like
419 val target_triple: llmodule -> string var
421 (** [target_triple triple m] changes the target specifier for the module [m] to

Completed in 533 milliseconds