Searched refs:std (Results 176 - 200 of 5602) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolCompilandEnv.cpp20 std::string PDBSymbolCompilandEnv::getValue() const {
23 return std::string();
24 return std::string(Value.Value.String);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DSlotMapping.h33 std::vector<GlobalValue *> GlobalValues;
34 std::map<unsigned, TrackingMDNodeRef> MetadataNodes;
36 std::map<unsigned, Type *> Types;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DPluginLoader.h23 void operator=(const std::string &Filename);
25 static std::string& getPlugin(unsigned num);
30 static cl::opt<PluginLoader, false, cl::parser<std::string> >
H A DTrigramIndex.h42 void insert(std::string Regex);
58 std::vector<unsigned> Counts;
64 std::unordered_map<unsigned, SmallVector<size_t, 4>> Index{256};
H A DChrono.h31 /// clock other than the system_clock, use std::chrono directly.
32 template <typename D = std::chrono::nanoseconds>
33 using TimePoint = std::chrono::time_point<std::chrono::system_clock, D>;
35 /// Convert a TimePoint to std::time_t
36 inline std::time_t toTimeT(TimePoint<> TP) {
37 using namespace std::chrono;
42 /// Convert a std::time_t to a TimePoint
43 inline TimePoint<std::chrono::seconds>
44 toTimePoint(std
[all...]
H A DMSVCErrorWorkarounds.h26 // std::future implementation which requires default constructible types.
31 MSVCPError(MSVCPError &&Other) : Error(std::move(Other)) {}
34 Error::operator=(std::move(Other));
38 MSVCPError(Error Err) : Error(std::move(Err)) {}
42 // std::future implementation, which requires default constructible types.
50 MSVCPExpected(MSVCPExpected &&Other) : Expected<T>(std::move(Other)) {}
53 Expected<T>::operator=(std::move(Other));
57 MSVCPExpected(Error Err) : Expected<T>(std::move(Err)) {}
62 typename std::enable_if<std
60 MSVCPExpected( OtherT &&Val, typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * = nullptr) argument
67 MSVCPExpected( Expected<OtherT> &&Other, typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * = nullptr) argument
74 MSVCPExpected( Expected<OtherT> &&Other, typename std::enable_if<!std::is_convertible<OtherT, T>::value>::type * = nullptr) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.h21 std::unique_ptr<MCAsmBackend> TAB,
22 std::unique_ptr<MCObjectWriter> OW,
23 std::unique_ptr<MCCodeEmitter> Emitter,
H A DAArch64WinCOFFStreamer.h22 MCContext &Context, std::unique_ptr<MCAsmBackend> TAB,
23 std::unique_ptr<MCObjectWriter> OW, std::unique_ptr<MCCodeEmitter> Emitter,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUELFStreamer.h26 std::unique_ptr<MCAsmBackend> MAB,
27 std::unique_ptr<MCObjectWriter> OW,
28 std::unique_ptr<MCCodeEmitter> Emitter,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxdump/
H A DError.cpp22 class cxxdump_error_category : public std::error_category {
25 std::string message(int ev) const override {
41 const std::error_category &cxxdump_category() {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMWinCOFFStreamer.cpp20 ARMWinCOFFStreamer(MCContext &C, std::unique_ptr<MCAsmBackend> AB,
21 std::unique_ptr<MCCodeEmitter> CE,
22 std::unique_ptr<MCObjectWriter> OW)
23 : MCWinCOFFStreamer(C, std::move(AB), std::move(CE), std::move(OW)) {}
41 MCContext &Context, std::unique_ptr<MCAsmBackend> &&MAB,
42 std::unique_ptr<MCObjectWriter> &&OW,
43 std::unique_ptr<MCCodeEmitter> &&Emitter, bool RelaxAll,
45 auto *S = new ARMWinCOFFStreamer(Context, std
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCNaCl.h26 std::unique_ptr<MCAsmBackend> TAB,
27 std::unique_ptr<MCObjectWriter> OW,
28 std::unique_ptr<MCCodeEmitter> Emitter,
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/
H A DTargetOptionsCommandFlags.h21 std::string getCPUStr();
22 std::vector<std::string> getMAttrs();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86WinCOFFStreamer.cpp23 X86WinCOFFStreamer(MCContext &C, std::unique_ptr<MCAsmBackend> AB,
24 std::unique_ptr<MCCodeEmitter> CE,
25 std::unique_ptr<MCObjectWriter> OW)
26 : MCWinCOFFStreamer(C, std::move(AB), std::move(CE), std::move(OW)) {}
64 std::unique_ptr<MCAsmBackend> &&AB,
65 std::unique_ptr<MCObjectWriter> &&OW,
66 std::unique_ptr<MCCodeEmitter> &&CE,
70 new X86WinCOFFStreamer(C, std
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Index/
H A DIndexingAction.h36 std::unique_ptr<ASTConsumer> createIndexingASTConsumer(
37 std::shared_ptr<IndexDataConsumer> DataConsumer,
38 const IndexingOptions &Opts, std::shared_ptr<Preprocessor> PP,
39 std::function<bool(const Decl *)> ShouldSkipFunctionBody);
41 inline std::unique_ptr<ASTConsumer> createIndexingASTConsumer(
42 std::shared_ptr<IndexDataConsumer> DataConsumer,
43 const IndexingOptions &Opts, std::shared_ptr<Preprocessor> PP) {
45 std::move(DataConsumer), Opts, std::move(PP),
50 std
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.h65 std::vector<SUnit*> SUnits;
66 std::map<unsigned, unsigned> NodeNum2Index;
67 std::vector<SUnit*> TopReadySUs;
68 std::vector<SUnit*> ScheduledSUnits;
78 std::vector<unsigned> InternalAdditionnalPressure;
80 std::vector<unsigned> LiveInPressure;
81 std::vector<unsigned> LiveOutPressure;
87 std::set<unsigned> LiveInRegs;
88 std::set<unsigned> LiveOutRegs;
93 std
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DAllTUsExecution.cpp36 std::unique_lock<std::mutex> LockGuard(Mutex);
40 std::vector<std::pair<llvm::StringRef, llvm::StringRef>>
52 std::mutex Mutex;
57 llvm::cl::opt<std::string>
65 std::shared_ptr<PCHContainerOperations> PCHContainerOps)
71 std::shared_ptr<PCHContainerOperations> PCHContainerOps)
72 : OptionsParser(std::move(Options)),
79 std
77 execute( llvm::ArrayRef< std::pair<std::unique_ptr<FrontendActionFactory>, ArgumentsAdjuster>> Actions) argument
[all...]
/freebsd-11-stable/usr.bin/dtc/
H A Dfdt.hh68 typedef void (device_tree::* tree_read_fn_ptr)(const std::string &, FILE *);
72 typedef std::shared_ptr<property> property_ptr;
76 typedef std::unique_ptr<node> node_ptr;
80 typedef std::unordered_map<std::string, property_ptr> define_map;
84 typedef std::unordered_set<std::string> string_set;
94 std::string label;
99 std::string string_data;
205 property_value(std
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/
H A DFileArchive.cpp43 FileArchive(std::unique_ptr<MemoryBuffer> mb, const Registry &reg,
45 : ArchiveLibraryFile(path), _mb(std::shared_ptr<MemoryBuffer>(mb.release())),
68 std::unique_ptr<File> result;
73 _filesReturned.push_back(std::move(result));
80 std::error_code
81 parseAllMembers(std::vector<std::unique_ptr<File>> &result) override {
82 if (std::error_code ec = parse())
87 std::unique_ptr<File> file;
88 if (std
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DCommonOptionsParser.h107 const std::vector<std::string> &getSourcePathList() const {
125 std::unique_ptr<CompilationDatabase> Compilations;
126 std::vector<std::string> SourcePathList;
133 std::unique_ptr<CompilationDatabase> Compilations)
134 : Compilations(std::move(Compilations)) {}
138 std::vector<CompileCommand>
141 std::vector<std
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OrcError/
H A DOrcError.cpp27 class OrcErrorCategory : public std::error_category {
31 std::string message(int condition) const override {
78 std::error_code orcError(OrcErrorCode ErrCode) {
79 typedef std::underlying_type<OrcErrorCode>::type UT;
80 return std::error_code(static_cast<UT>(ErrCode), *OrcErrCat);
84 DuplicateDefinition::DuplicateDefinition(std::string SymbolName)
85 : SymbolName(std::move(SymbolName)) {}
87 std::error_code DuplicateDefinition::convertToErrorCode() const {
95 const std::string &DuplicateDefinition::getSymbolName() const {
99 JITSymbolNotFound::JITSymbolNotFound(std
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIO.cpp26 long GetEpoch(const std::string &Path) {
33 Unit FileToVector(const std::string &Path, size_t MaxSize, bool ExitOnError) {
34 std::ifstream T(Path, std::ios::binary);
45 FileLen = std::min(FileLen, MaxSize);
53 std::string FileToString(const std::string &Path) {
54 std::ifstream T(Path, std::ios::binary);
55 return std
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/Common/
H A DErrorHandler.cpp31 static std::mutex mu;
90 handleAllErrors(std::move(e),
115 std::string ErrorHandler::getLocation(const Twine &msg) {
119 static std::regex regexes[] = {
120 std::regex(
123 std::regex(
125 std::regex(R"(^undefined symbol:.*\n>>> referenced by (.*):)"),
126 std::regex(
128 std::regex(
130 std
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DPassManager.h30 void add(std::unique_ptr<Pass> pass) {
31 _passes.push_back(std::move(pass));
35 for (std::unique_ptr<Pass> &pass : _passes)
43 std::vector<std::unique_ptr<Pass>> _passes;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DTaskPool.cpp24 void AddTask(std::function<void()> &&task_fn);
33 std::queue<std::function<void()>> m_tasks;
34 std::mutex m_tasks_mutex;
45 void TaskPool::AddTaskImpl(std::function<void()> &&task_fn) {
46 TaskPoolImpl::GetInstance().AddTask(std::move(task_fn));
52 // std::thread::hardware_concurrency may return 0 if the value is not well
55 std::max(1u, std::thread::hardware_concurrency());
59 void TaskPoolImpl::AddTask(std
[all...]

Completed in 141 milliseconds

1234567891011>>