Searched refs:Second (Results 26 - 50 of 65) sorted by relevance

123

/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp193 Second = ICK_Identity;
214 if (GetConversionRank(Second) > Rank)
215 Rank = GetConversionRank(Second);
257 if (Second == ICK_Pointer_Conversion && FromType->isAnyPointerType())
325 switch (Second) {
490 if (Second != ICK_Identity) {
494 OS << GetImplicitConversionName(Second);
523 if (Before.First || Before.Second || Before.Third) {
531 if (After.First || After.Second || After.Third) {
1370 ICS.Standard.Second
[all...]
H A DSemaStmt.cpp1545 void CheckForLoopConditionalStatement(Sema &S, Expr *Second, argument
1548 if (!Second) return;
1551 Second->getBeginLoc()))
1558 DE.Visit(Second);
1571 if (DeclMatcher(S, Decls, Second).FoundDeclInUse() ||
1779 Stmt *First, ConditionResult Second,
1782 if (Second.isInvalid())
1802 CheckBreakContinueBinding(Second.get().second);
1805 if (!Second.get().first)
1806 CheckForLoopConditionalStatement(*this, Second
1778 ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc, Stmt *First, ConditionResult Second, FullExprArg third, SourceLocation RParenLoc, Stmt *Body) argument
[all...]
H A DSemaConcept.cpp726 auto Second = fromConstraintExpr(S, D, E[1]);
727 if (!Second)
730 Conjunction.emplace(S.Context, std::move(*First), std::move(*Second),
H A DTreeTransform.h2737 Expr *Second);
11101 ExprResult Second;
11103 Second = getDerived().TransformExpr(E->getArg(1));
11104 if (Second.isInvalid())
11111 (E->getNumArgs() != 2 || Second.get() == E->getArg(1)))
11124 Second.get());
14181 Expr *Second) {
14183 bool isPostIncDec = Second && (Op == OO_PlusPlus || Op == OO_MinusMinus);
14189 First, Second);
14196 if (Second
14177 RebuildCXXOperatorCallExpr(OverloadedOperatorKind Op, SourceLocation OpLoc, Expr *OrigCallee, Expr *First, Expr *Second) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp246 AnyArgExpr Second) const;
250 const Stmt *Second) const;
437 AnyArgExpr Second) const {
454 SVal secondVal = state->getSVal(Second.Expression, LCtx);
471 emitOverlapBug(C, stateTrue, First.Expression, Second.Expression);
498 std::swap(First, Second);
537 emitOverlapBug(C, stateTrue, First.Expression, Second.Expression);
547 const Stmt *First, const Stmt *Second) const {
560 report->addRange(Second->getSourceRange());
/freebsd-13-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h3276 auto Second(T& x, Rank1) -> decltype(get<1>(x)) { // NOLINT
3280 auto Second(T& x, Rank0) -> decltype((x.second)) { // NOLINT
3294 typename T::second_type& Second(T& x, Rank0) { // NOLINT
3298 const typename T::second_type& Second(const T& x, Rank0) {
3409 second_matcher_.Matches(pair_getters::Second(a_pair, Rank0()));
3419 if (!second_matcher_.MatchAndExplain(pair_getters::Second(a_pair, Rank0()),
3934 // of type Second, BoundSecondMatcher<Tuple2Matcher, Second>(tm,
3942 template <typename Tuple2Matcher, typename Second>
3945 BoundSecondMatcher(const Tuple2Matcher& tm, const Second
4916 typedef typename RhsStlContainer::value_type Second; typedef
[all...]
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Ddirective-for-escape.mk58 # Second try to cover the code for nested '{}' in for_var_len.
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCasting.h146 template <typename First, typename Second, typename... Rest, typename Y>
148 return isa<First>(Val) || isa<Second, Rest...>(Val);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DGVNExpression.h163 void swapOperands(unsigned First, unsigned Second) { argument
164 std::swap(Operands[First], Operands[Second]);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h231 std::unique_ptr<ASTReaderListener> Second; member in class:clang::ChainedASTReaderListener
234 /// Takes ownership of \p First and \p Second.
236 std::unique_ptr<ASTReaderListener> Second)
237 : First(std::move(First)), Second(std::move(Second)) {}
240 std::unique_ptr<ASTReaderListener> takeSecond() { return std::move(Second); }
235 ChainedASTReaderListener(std::unique_ptr<ASTReaderListener> First, std::unique_ptr<ASTReaderListener> Second) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSILoadStoreOptimizer.cpp2075 auto Second = Next; local
2077 if ((*First).Order > (*Second).Order)
2078 std::swap(First, Second);
2080 CombineInfo &Paired = *Second;
2152 if (I == Second)
2155 MergeList.erase(Second);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.h146 /// Second variant of isProfitableToIfCvt. This one
416 const MachineInstr &Second) const;
H A DHexagonLoopIdiomRecognition.cpp1170 ValueSeq &Second = IsE ? Early : Late; local
1171 Second.insert(Cycle[I]);
1176 Second.insert(V);
1429 // Second, the types of the shifted value and the shift amount
H A DHexagonInstrInfo.cpp2984 const MachineInstr &Second) const {
2985 if (Second.mayStore() && First.getOpcode() == Hexagon::S2_allocframe) {
2986 const MachineOperand &Op = Second.getOperand(0);
2992 if (mayBeNewStore(Second)) {
2996 Second.getOperand(Second.getNumOperands() - 1);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp466 const auto &First = Check.first->Members, &Second = Check.second->Members; local
475 for (unsigned K = 0; K < Second.size(); ++K)
476 OS.indent(Depth + 2) << *Pointers[Second[K]].PointerValue << "\n";
1427 // Second try: Is -Dist - (BackedgeTakenCount * Step) > 0 ?
/freebsd-13-stable/contrib/ntp/ntpd/
H A Drefclock_ripencc.c382 unsigned char *Hour, unsigned char *Minute, unsigned char *Second,
3139 unsigned char *Second,
3153 *Second = rpt->buf[13];
5012 Second, local
5043 &Second,
5071 Day, Month, Year, Hour, Minute, Second, (long)(FracSec*1.e9));
3133 rpt_0x8FAD( TSIPPKT *rpt, unsigned short *COUNT, double *FracSec, unsigned char *Hour, unsigned char *Minute, unsigned char *Second, unsigned char *Day, unsigned char *Month, unsigned short *Year, unsigned char *Status, unsigned char *Flags ) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp4254 APFloat &&Second)
4256 Floats(new APFloat[2]{std::move(First), std::move(Second)}) {
4784 APFloat Second = Arg.Floats[1];
4786 Second = scalbn(Second, -Exp, RM);
4787 return DoubleAPFloat(semPPCDoubleDouble, std::move(First), std::move(Second));
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp152 Second->ReadFullVersionInformation(FullVersion);
157 Second->ReadModuleName(ModuleName);
162 Second->ReadModuleMapFile(ModuleMapPath);
171 Second->ReadLanguageOptions(LangOpts, Complain,
180 Second->ReadTargetOptions(TargetOpts, Complain,
187 Second->ReadDiagnosticOptions(DiagOpts, Complain);
194 Second->ReadFileSystemOptions(FSOpts, Complain);
202 Second->ReadHeaderSearchOptions(HSOpts, SpecificModuleCachePath,
211 Second->ReadPreprocessorOptions(PPOpts, Complain, SuggestedPredefines);
217 Second
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h1757 template<typename First, typename Second>
1759 size_t operator()(const std::pair<First, Second> &P) const {
1760 return std::hash<First>()(P.first) * 31 + std::hash<Second>()(P.second);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp930 AsmToken const &Second = Lexer.getTok(); local
937 if (String.lower() == "vwhist256" && Second.is(AsmToken::Colon) &&
944 assert(Second.is(AsmToken::Colon));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp1624 Second =
1626 return std::make_pair(First, Second);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DGnu.cpp1811 std::pair<StringRef, StringRef> Second = First.second.split('.'); local
1819 StringRef MinorStr = Second.first;
1820 if (Second.second.empty()) {
1841 StringRef PatchText = Second.second;
/freebsd-13-stable/sys/dev/aac/
H A Daacreg.h425 u_int32_t Second:6; /* 0-59 */ member in struct:aac_container_creation
/freebsd-13-stable/sys/dev/aacraid/
H A Daacraid_reg.h382 u_int32_t Second:6; /* 0-59 */ member in struct:aac_container_creation
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp3123 // First to Second.
3126 const MemoryAccess *Second) const {
3127 if (First == Second)
3143 if (ChainDef == Second)
3160 Second);

Completed in 619 milliseconds

123