HomeSort by: relevance | last modified time | path
    Searched refs:AuxTarget (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Basic/
Builtins.cpp 43 const TargetInfo *AuxTarget) {
46 if (AuxTarget)
47 AuxTSRecords = AuxTarget->getTargetBuiltins();
103 // Step #3: Register target-specific builtins for AuxTarget.
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Builtins.h 74 /// \param AuxTarget Target info to incorporate builtins from. May be nullptr.
75 void InitializeTarget(const TargetInfo &Target, const TargetInfo *AuxTarget);
218 /// Return true if builtin ID belongs to AuxTarget.
224 /// for AuxTarget).
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Preprocessor.cpp 196 const TargetInfo *AuxTarget) {
201 assert((!this->AuxTarget || this->AuxTarget == AuxTarget) &&
203 this->AuxTarget = AuxTarget;
206 BuiltinInfo->InitializeTarget(Target, AuxTarget);
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
CompilerInstance.h 84 IntrusiveRefCntPtr<TargetInfo> AuxTarget;
377 /// @name AuxTarget Info
380 TargetInfo *getAuxTarget() const { return AuxTarget.get(); }
382 /// Replace the current AuxTarget.
385 // Create Target and AuxTarget based on current options
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Preprocessor.h 138 const TargetInfo *AuxTarget = nullptr;
899 /// \param AuxTarget is owned by the caller and must remain valid for
902 const TargetInfo *AuxTarget = nullptr);
924 const TargetInfo *getAuxTargetInfo() const { return AuxTarget; }
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 1267 const TargetInfo *AuxTarget) {
1273 this->AuxTarget = AuxTarget;
1694 return AuxTarget->getLongDoubleFormat();
1698 return AuxTarget->getFloat128Format();
2107 Width = AuxTarget->getHalfWidth();
2108 Align = AuxTarget->getHalfAlign();
2121 (Target->getLongDoubleWidth() != AuxTarget->getLongDoubleWidth() ||
2122 Target->getLongDoubleAlign() != AuxTarget->getLongDoubleAlign())) {
2123 Width = AuxTarget->getLongDoubleWidth()
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTContext.h 603 const TargetInfo *AuxTarget = nullptr;
694 const TargetInfo *getAuxTargetInfo() const { return AuxTarget; }
3005 const TargetInfo *AuxTarget = nullptr);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
CompilerInstance.cpp 98 void CompilerInstance::setAuxTarget(TargetInfo *Value) { AuxTarget = Value; }
107 // Check whether AuxTarget exists, if not, then create TargetInfo for the

Completed in 39 milliseconds