Searched refs:Args (Results 276 - 300 of 703) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp23 #include "lldb/Utility/Args.h"
165 bool DoExecute(Args &args, CommandReturnObject &result) override {
211 bool DoExecute(Args &args, CommandReturnObject &result) override {
252 bool DoExecute(Args &args, CommandReturnObject &result) override {
286 bool DoExecute(Args &args, CommandReturnObject &result) override {
337 bool DoExecute(Args &args, CommandReturnObject &result) override {
404 bool DoExecute(Args &args, CommandReturnObject &result) override {
440 bool DoExecute(Args &args, CommandReturnObject &result) override {
489 bool DoExecute(Args &args, CommandReturnObject &result) override {
543 bool DoExecute(Args
[all...]
H A DCommandObjectQuit.cpp62 bool CommandObjectQuit::DoExecute(Args &command, CommandReturnObject &result) {
H A DCommandObjectReproducer.cpp113 bool DoExecute(Args &command, CommandReturnObject &result) override {
196 bool DoExecute(Args &command, CommandReturnObject &result) override {
245 bool DoExecute(Args &command, CommandReturnObject &result) override {
329 bool DoExecute(Args &command, CommandReturnObject &result) override {
H A DCommandObjectLog.cpp15 #include "lldb/Utility/Args.h"
149 bool DoExecute(Args &args, CommandReturnObject &result) override {
223 bool DoExecute(Args &args, CommandReturnObject &result) override {
282 bool DoExecute(Args &args, CommandReturnObject &result) override {
314 bool DoExecute(Args &args, CommandReturnObject &result) override {
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp1369 const std::vector<std::unique_ptr<Argument>> &Args,
1457 for (const auto &arg : llvm::reverse(Args)) {
1485 for (const auto &arg : Args) {
2107 std::vector<Record *> Args = Attr->getValueAsListOfDefs("Args"); local
2108 if (Args.empty())
2111 if (Args[0]->getSuperClasses().back().first->getName() != "TypeArgument")
2165 std::vector<Record *> Args = A->getValueAsListOfDefs("Args"); local
2166 if (Args
1368 writePrettyPrintFunction(Record &R, const std::vector<std::unique_ptr<Argument>> &Args, raw_ostream &OS) argument
2186 std::vector<Record *> Args = Attr->getValueAsListOfDefs("Args"); local
2212 std::vector<Record *> Args = A->getValueAsListOfDefs("Args"); local
2269 std::vector<std::unique_ptr<Argument>> Args; local
2508 std::vector<std::unique_ptr<Argument>> Args; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp333 Arg *OptTable::ParseOneArg(const ArgList &Args, unsigned &Index, argument
337 const char *Str = Args.getArgString(Index);
376 if (Arg *A = Opt.accept(Args, Index, ArgSize))
397 InputArgList Args(ArgArr.begin(), ArgArr.end());
405 if (Args.getArgString(Index) == nullptr) {
410 StringRef Str = Args.getArgString(Index);
417 Arg *A = ParseOneArg(Args, Index, FlagsToInclude, FlagsToExclude);
429 Args.append(A);
432 return Args;
H A DArgList.cpp34 Args.push_back(A);
41 R.first = std::min<unsigned>(R.first, Args.size() - 1);
42 R.second = Args.size();
51 Arg **ArgsBegin = Args.data();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp424 std::vector<uint64_t> Args; local
432 Args.push_back(CI->getZExtValue());
434 return ConstCSInfo[Args];
517 ArrayRef<uint64_t> Args);
527 std::string getGlobalName(VTableSlot Slot, ArrayRef<uint64_t> Args,
535 void exportGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args, StringRef Name,
537 void exportConstant(VTableSlot Slot, ArrayRef<uint64_t> Args, StringRef Name,
542 Constant *importGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args,
544 Constant *importConstant(VTableSlot Slot, ArrayRef<uint64_t> Args,
556 VTableSlot Slot, ArrayRef<uint64_t> Args);
1176 tryEvaluateFunctionsWithArgs( MutableArrayRef<VirtualCallTarget> TargetsForSlot, ArrayRef<uint64_t> Args) argument
1237 getGlobalName(VTableSlot Slot, ArrayRef<uint64_t> Args, StringRef Name) argument
1254 exportGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args, StringRef Name, Constant *C) argument
1261 exportConstant(VTableSlot Slot, ArrayRef<uint64_t> Args, StringRef Name, uint32_t Const, uint32_t &Storage) argument
1274 importGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args, StringRef Name) argument
1283 importConstant(VTableSlot Slot, ArrayRef<uint64_t> Args, StringRef Name, IntegerType *IntTy, uint32_t Storage) argument
1333 tryUniqueRetValOpt( unsigned BitWidth, MutableArrayRef<VirtualCallTarget> TargetsForSlot, CallSiteInfo &CSInfo, WholeProgramDevirtResolution::ByArg *Res, VTableSlot Slot, ArrayRef<uint64_t> Args) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/
H A Dfilesystem_common.h104 template <class... Args>
105 string format_string(const char* fmt, Args const&... args) {
166 template <class... Args>
167 T report(const error_code& m_ec, const char* msg, Args const&... args) const {
187 template <class... Args>
188 T report(errc const& err, const char* msg, Args const&... args) const {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DDiagnosticInfo.cpp347 Args.emplace_back(S);
351 Args.push_back(std::move(A));
359 FirstExtraArgIndex = Args.size();
366 make_range(Args.begin(), FirstExtraArgIndex == -1
367 ? Args.end()
368 : Args.begin() + FirstExtraArgIndex))
H A DAutoUpgrade.cpp633 auto Args = F->getFunctionType()->params(); local
634 Type *Tys[] = {F->getFunctionType()->getReturnType(), Args[1]};
647 auto Args = F->getFunctionType()->params(); local
648 Type* ObjectPtr[1] = {Args[1]};
661 auto Args = F->getFunctionType()->params(); local
662 Type* ObjectPtr[1] = {Args[IsLifetimeEnd ? 1 : 2]};
671 auto Args = F->getFunctionType()->params(); local
672 Type* ObjectPtr[1] = {Args[0]};
694 auto Args = F->getFunctionType()->params(); local
695 Type *Tys[] = { Args[
716 auto Args = F->getFunctionType()->params(); local
1099 Value *Args[] = { CI.getArgOperand(0) , CI.getArgOperand(1), local
1834 Value *Args[] = { CI->getArgOperand(0), CI->getArgOperand(3) }; local
2007 SmallVector<Value *, 4> Args; local
3309 Value *Args[] = { CI->getArgOperand(0) , CI->getArgOperand(1), local
3337 Value *Args[] = { CI->getArgOperand(0) , CI->getArgOperand(1), local
3373 Value *Args[] = { CI->getArgOperand(0), CI->getArgOperand(1), local
3403 Value *Args[] = { CI->getArgOperand(0), CI->getArgOperand(1), local
3426 Value *Args[] = { CI->getArgOperand(0), CI->getArgOperand(1), local
3520 SmallVector<Value *, 2> Args; local
3531 SmallVector<Value *, 2> Args; local
3723 Value *Args[4] = {CI->getArgOperand(0), CI->getArgOperand(1), local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptions.cpp896 static std::vector<char *> GetArgvForParsing(const Args &args) {
900 for (const Args::ArgEntry &entry : args)
906 // Given a permuted argument, find it's position in the original Args vector.
907 static Args::const_iterator FindOriginalIter(const char *arg,
908 const Args &original) {
910 original, [arg](const Args::ArgEntry &D) { return D.c_str() == arg; });
913 // Given a permuted argument, find it's index in the original Args vector.
914 static size_t FindOriginalIndex(const char *arg, const Args &original) {
918 // Construct a new Args object, consisting of the entries from the original
920 static Args ReconstituteArgsAfterParsin
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DParser.h83 /// \param Args The argument list for the matcher.
91 ArrayRef<ParserValue> Args,
139 ArrayRef<ParserValue> Args,
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp471 std::vector<ParserValue> Args; local
485 if (!Args.empty()) {
497 Args.size() + 1);
507 Args.push_back(ArgValue);
532 *Ctor, MatcherRange, BindID, Args, Error);
641 ArrayRef<ParserValue> Args, Diagnostics *Error) {
643 return Registry::constructMatcher(Ctor, NameRange, Args, Error);
645 return Registry::constructBoundMatcher(Ctor, NameRange, BindID, Args,
639 actOnMatcherExpression( MatcherCtor Ctor, SourceRange NameRange, StringRef BindID, ArrayRef<ParserValue> Args, Diagnostics *Error) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp206 Value *Args[] = {getOrCreateIdent(SrcLocStr, BarrierLocFlags), local
218 Args);
254 Value *Args[] = {Ident, getOrCreateThreadID(Ident), CancelKind}; local
256 getOrCreateRuntimeFunction(OMPRTL___kmpc_cancel), Args);
317 Value *Args[] = { local
321 getOrCreateRuntimeFunction(OMPRTL___kmpc_push_num_threads), Args); local
326 Value *Args[] = { local
330 Args); local
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DEntryExitInstrumenter.cpp52 Value *Args[] = {ConstantExpr::getBitCast(&CurFn, Type::getInt8PtrTy(C)), local
56 CallInst::Create(Fn, ArrayRef<Value *>(Args), "", InsertionPt);
H A DEscapeEnumerator.cpp86 SmallVector<Value *, 16> Args; local
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h78 ArrayRef<const Value *> Args = ArrayRef<const Value *>(),
103 ArrayRef<Value *> Args, FastMathFlags FMF,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.h95 ArrayRef<const Value *> Args = ArrayRef<const Value *>(),
113 ArrayRef<Value*> Args, FastMathFlags FMF, unsigned VF);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DVerifier.h43 template <typename... Tys> void CheckFailed(Tys &&... Args);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DProcess.inc144 /// Perform wildcard expansion of Arg, or just push it into Args if it doesn't
147 SmallVectorImpl<const char *> &Args,
156 Args.push_back(Arg.data());
173 Args.push_back(Arg.data());
191 Args.push_back(Saver.save(StringRef(Dir)).data());
231 windows::GetCommandLineArguments(SmallVectorImpl<const char *> &Args,
246 EC = WildcardExpand(Arg, Args, Saver);
251 SmallVector<char, MAX_PATH> Arg0(Args[0], Args[0] + strlen(Args[
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkSerializer.cpp26 ArrayRef<Argument> Args) {
32 io.mapOptional("Args", Args);
68 Remark->Hotness, Remark->Args);
71 Remark->FunctionName, Remark->Hotness, Remark->Args);
23 mapRemarkHeader(yaml::IO &io, T PassName, T RemarkName, Optional<RemarkLocation> RL, T FunctionName, Optional<uint64_t> Hotness, ArrayRef<Argument> Args) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIAnnotateControlFlow.cpp241 Value *Args[] = { Cond, Broken }; local
242 return CallInst::Create(IfBreak, Args, "", Insert);
250 Value *Args[] = { Cond, Broken }; local
251 return CallInst::Create(IfBreak, Args, "", Insert);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObject.h21 #include "lldb/Utility/Args.h"
220 bool ParseOptions(Args &args, CommandReturnObject &result);
273 virtual const char *GetRepeatCommand(Args &current_command_args,
310 bool ParseOptionsAndNotify(Args &args, CommandReturnObject &result,
389 virtual bool DoExecute(Args &command, CommandReturnObject &result) = 0;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetTransformInfo.h94 ArrayRef<const Value *> Args = ArrayRef<const Value *>(),

Completed in 308 milliseconds

<<11121314151617181920>>