Lines Matching +full:per +full:- +full:context
1 //===- DWARFLinkerGlobalData.h ----------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
25 const Twine &Warning, StringRef Context, const DWARFDie *DIE)>;
70 /// per compile unit, which is why this is a std::map.
89 /// Returns global per-thread allocator.
107 void warn(const Twine &Warning, StringRef Context,
110 (WarningHandler)(Warning, Context, DIE);
114 void warn(Error Warning, StringRef Context, const DWARFDie *DIE = nullptr) {
116 warn(Info.message(), Context, DIE);
121 void error(const Twine &Err, StringRef Context,
124 (ErrorHandler)(Err, Context, DIE);
128 void error(Error Err, StringRef Context, const DWARFDie *DIE = nullptr) {
130 error(Info.message(), Context, DIE);
136 this->TargetTriple = TargetTriple; in setTargetTriple()