Searched defs:Triple (Results 26 - 28 of 28) sorted by relevance

12

/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1852 bool BitcodeReader::ParseModuleTriple(std::string &Triple) { argument
1880 Triple = S;
1888 bool BitcodeReader::ParseTriple(std::string &Triple) { argument
1914 return ParseModuleTriple(Triple);
3104 std::string Triple("");
3105 if (R->ParseTriple(Triple))
3110 return Triple;
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp4347 const llvm::Triple &Triple = CGM.getTarget().getTriple(); local
4348 if (Triple.getOS() == llvm::Triple::IOS &&
4349 (Triple.getArch() == llvm::Triple::x86 ||
4350 Triple.getArch() == llvm::Triple::x86_64))
/external/llvm/lib/IR/
H A DCore.cpp108 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple) { argument
109 unwrap(M)->setDataLayout(Triple);
117 void LLVMSetTarget(LLVMModuleRef M, const char *Triple) { argument
118 unwrap(M)->setTargetTriple(Triple);

Completed in 439 milliseconds

12