Searched refs:NumOpts (Results 1 – 5 of 5) sorted by relevance
85 AllowedRegVector() : NumOpts(0), Opts(nullptr) {} in AllowedRegVector()88 : NumOpts(OptVec.size()), Opts(new unsigned[NumOpts]) { in AllowedRegVector()93 : NumOpts(Other.NumOpts), Opts(new unsigned[NumOpts]) { in AllowedRegVector()94 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get()); in AllowedRegVector()98 : NumOpts(std::move(Other.NumOpts)), Opts(std::move(Other.Opts)) {} in AllowedRegVector()101 NumOpts = Other.NumOpts;102 Opts.reset(new unsigned[NumOpts]);103 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get());108 NumOpts = std::move(Other.NumOpts);113 unsigned size() const { return NumOpts; } in size()[all …]
1118 unsigned NumOpts = getNumOptions(); in printGenericOptionDiff() local1119 for (unsigned i = 0; i != NumOpts; ++i) { in printGenericOptionDiff()1127 for (unsigned j = 0; j != NumOpts; ++j) { in printGenericOptionDiff()
1593 unsigned NumOpts = getNumOptions(); in printGenericOptionDiff() local1594 for (unsigned i = 0; i != NumOpts; ++i) { in printGenericOptionDiff()1602 for (unsigned j = 0; j != NumOpts; ++j) { in printGenericOptionDiff()
1618 unsigned NumOpts = getNumOptions(); in printGenericOptionDiff() local1619 for (unsigned i = 0; i != NumOpts; ++i) { in printGenericOptionDiff()1627 for (unsigned j = 0; j != NumOpts; ++j) { in printGenericOptionDiff()
1468 if (unsigned NumOpts = options::extra.size()) in allSymbolsReadHook() local1469 cl::ParseCommandLineOptions(NumOpts, &options::extra[0]); in allSymbolsReadHook()