Home
last modified time | relevance | path

Searched refs:ArgExprs (Results 1 – 9 of 9) sorted by relevance

/external/deqp/modules/glshared/
DglsBuiltinPrecisionTests.cpp1123 typedef Tuple4< ExprP<Arg0>, ExprP<Arg1>, ExprP<Arg2>, ExprP<Arg3> > ArgExprs; typedef
1188 typedef typename Sig::ArgExprs ArgExprs; typedef in deqp::gls::BuiltinPrecisionTests::Func
1260 typedef typename ApplyFunc::ArgExprs ArgExprs; typedef in deqp::gls::BuiltinPrecisionTests::Apply
1271 const ArgExprs& args) in Apply()
1302 ArgExprs m_args;
1332 const typename Func<Sig>::ArgExprs& args) in createApply()
1395 typedef typename ApplyFunc::ArgExprs ArgExprs; typedef in deqp::gls::BuiltinPrecisionTests::ApplyVar
1430 typedef typename DerivedFunc::ArgExprs ArgExprs; typedef in deqp::gls::BuiltinPrecisionTests::DerivedFunc
1511 virtual ExprP<Ret> doExpand (ExpandContext& ctx, const ArgExprs& args_) const = 0;
1533 ArgExprs args; in initialize()
[all …]
/external/clang/lib/Parse/
DParseExpr.cpp1447 ExprVector ArgExprs; in ParsePostfixExpressionSuffix() local
1458 if (ParseExpressionList(ArgExprs, CommaLocs, [&] { in ParsePostfixExpressionSuffix()
1459 Actions.CodeCompleteCall(getCurScope(), LHS.get(), ArgExprs); in ParsePostfixExpressionSuffix()
1464 for (auto &E : ArgExprs) in ParsePostfixExpressionSuffix()
1477 assert((ArgExprs.size() == 0 || in ParsePostfixExpressionSuffix()
1478 ArgExprs.size()-1 == CommaLocs.size())&& in ParsePostfixExpressionSuffix()
1481 ArgExprs, Tok.getLocation(), in ParsePostfixExpressionSuffix()
2259 ExprVector ArgExprs; in ParseParenExpression() local
2262 if (!ParseSimpleExpressionList(ArgExprs, CommaLocs)) { in ParseParenExpression()
2265 if (ArgExprs.size() == 1 && isFoldOperator(Tok.getKind()) && in ParseParenExpression()
[all …]
DParseDecl.cpp276 ArgsVector ArgExprs; in ParseAttributeArgsCommon() local
292 ArgExprs.push_back(ParseIdentifierLoc()); in ParseAttributeArgsCommon()
295 if (!ArgExprs.empty() ? Tok.is(tok::comma) : Tok.isNot(tok::r_paren)) { in ParseAttributeArgsCommon()
297 if (!ArgExprs.empty()) in ParseAttributeArgsCommon()
313 ArgExprs.push_back(ArgExpr.get()); in ParseAttributeArgsCommon()
322 ArgExprs.data(), ArgExprs.size(), Syntax); in ParseAttributeArgsCommon()
328 return static_cast<unsigned>(ArgExprs.size()); in ParseAttributeArgsCommon()
2414 ArgsVector ArgExprs; in ParseAlignmentSpecifier() local
2415 ArgExprs.push_back(ArgExpr.get()); in ParseAlignmentSpecifier()
2416 Attrs.addNew(KWName, KWLoc, nullptr, KWLoc, ArgExprs.data(), 1, in ParseAlignmentSpecifier()
DParseDeclCXX.cpp3215 ExprVector ArgExprs; in ParseMemInitializer() local
3217 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) { in ParseMemInitializer()
3229 T.getOpenLocation(), ArgExprs, in ParseMemInitializer()
/external/clang/lib/Sema/
DSemaPseudoObject.cpp1453 MultiExprArg ArgExprs; in buildGet() local
1455 RefExpr->getSourceRange().getBegin(), ArgExprs, in buildGet()
1483 SmallVector<Expr*, 1> ArgExprs; in buildSet() local
1484 ArgExprs.push_back(op); in buildSet()
1486 RefExpr->getSourceRange().getBegin(), ArgExprs, in buildSet()
DSemaExpr.cpp1303 ArrayRef<Expr *> ArgExprs) { in ActOnGenericSelectionExpr() argument
1305 assert(NumAssocs == ArgExprs.size()); in ActOnGenericSelectionExpr()
1318 ArgExprs); in ActOnGenericSelectionExpr()
4624 MultiExprArg ArgExprs) { in rewriteBuiltinFunctionDecl() argument
4630 !FT || FT->isVariadic() || ArgExprs.size() != FT->getNumParams()) in rewriteBuiltinFunctionDecl()
4640 Expr *Arg = Sema->DefaultFunctionArrayLvalueConversion(ArgExprs[i++]).get(); in rewriteBuiltinFunctionDecl()
4693 MultiExprArg ArgExprs, SourceLocation RParenLoc, in ActOnCallExpr() argument
4700 if (checkArgsForPlaceholders(*this, ArgExprs)) in ActOnCallExpr()
4706 if (!ArgExprs.empty()) { in ActOnCallExpr()
4710 SourceRange(ArgExprs[0]->getLocStart(), in ActOnCallExpr()
[all …]
DSemaExprCXX.cpp3795 SmallVector<Expr *, 2> ArgExprs; in evaluateTypeTrait() local
3796 ArgExprs.reserve(Args.size() - 1); in evaluateTypeTrait()
3807 ArgExprs.push_back(&E); in evaluateTypeTrait()
3817 InitializationSequence Init(S, To, InitKind, ArgExprs); in evaluateTypeTrait()
3821 ExprResult Result = Init.Perform(S, To, InitKind, ArgExprs); in evaluateTypeTrait()
DSemaCodeComplete.cpp3966 SmallVector<Expr *, 12> ArgExprs(1, UME->getBase()); in CodeCompleteCall() local
3967 ArgExprs.append(Args.begin(), Args.end()); in CodeCompleteCall()
3970 AddFunctionCandidates(Decls, ArgExprs, CandidateSet, TemplateArgs, in CodeCompleteCall()
3999 SmallVector<Expr *, 12> ArgExprs(1, NakedFn); in CodeCompleteCall() local
4000 ArgExprs.append(Args.begin(), Args.end()); in CodeCompleteCall()
4001 AddFunctionCandidates(R.asUnresolvedSet(), ArgExprs, CandidateSet, in CodeCompleteCall()
/external/clang/include/clang/Sema/
DSema.h3546 ArrayRef<Expr *> ArgExprs);
3660 MultiExprArg ArgExprs, SourceLocation RParenLoc,