Home
last modified time | relevance | path

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

/external/deqp/modules/glshared/
DglsBuiltinPrecisionTests.cpp1154 typedef Tuple4< ExprP<Arg0>, ExprP<Arg1>, ExprP<Arg2>, ExprP<Arg3> > ArgExprs; typedef
1219 typedef typename Sig::ArgExprs ArgExprs; typedef in deqp::gls::BuiltinPrecisionTests::Func
1291 typedef typename ApplyFunc::ArgExprs ArgExprs; typedef in deqp::gls::BuiltinPrecisionTests::Apply
1302 const ArgExprs& args) in Apply()
1333 ArgExprs m_args;
1363 const typename Func<Sig>::ArgExprs& args) in createApply()
1426 typedef typename ApplyFunc::ArgExprs ArgExprs; typedef in deqp::gls::BuiltinPrecisionTests::ApplyVar
1461 typedef typename DerivedFunc::ArgExprs ArgExprs; typedef in deqp::gls::BuiltinPrecisionTests::DerivedFunc
1542 virtual ExprP<Ret> doExpand (ExpandContext& ctx, const ArgExprs& args_) const = 0;
1564 ArgExprs args; in initialize()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderBuiltinPrecisionTests.cpp1478 typedef Tuple4< ExprP<Arg0>, ExprP<Arg1>, ExprP<Arg2>, ExprP<Arg3> > ArgExprs; typedef
1544 typedef typename Sig::ArgExprs ArgExprs; typedef in vkt::shaderexecutor::Func
1630 typedef typename ApplyFunc::ArgExprs ArgExprs; typedef in vkt::shaderexecutor::Apply
1641 const ArgExprs& args) in Apply()
1672 ArgExprs m_args;
1702 const typename Func<Sig>::ArgExprs& args) in createApply()
1765 typedef typename ApplyFunc::ArgExprs ArgExprs; typedef in vkt::shaderexecutor::ApplyVar
1811 typedef typename DerivedFunc::ArgExprs ArgExprs; typedef in vkt::shaderexecutor::DerivedFunc
1892 virtual ExprP<Ret> doExpand (ExpandContext& ctx, const ArgExprs& args_) const = 0;
1914 ArgExprs args; in initialize()
[all …]
/external/clang/lib/Parse/
DParseExpr.cpp1557 ExprVector ArgExprs; in ParsePostfixExpressionSuffix() local
1568 if (ParseExpressionList(ArgExprs, CommaLocs, [&] { in ParsePostfixExpressionSuffix()
1569 Actions.CodeCompleteCall(getCurScope(), LHS.get(), ArgExprs); in ParsePostfixExpressionSuffix()
1574 for (auto &E : ArgExprs) in ParsePostfixExpressionSuffix()
1587 for (auto &E : ArgExprs) in ParsePostfixExpressionSuffix()
1599 assert((ArgExprs.size() == 0 || in ParsePostfixExpressionSuffix()
1600 ArgExprs.size()-1 == CommaLocs.size())&& in ParsePostfixExpressionSuffix()
1603 ArgExprs, Tok.getLocation(), in ParsePostfixExpressionSuffix()
2393 ExprVector ArgExprs; in ParseParenExpression() local
2396 if (!ParseSimpleExpressionList(ArgExprs, CommaLocs)) { in ParseParenExpression()
[all …]
DParseDecl.cpp278 ArgsVector ArgExprs; in ParseAttributeArgsCommon() local
294 ArgExprs.push_back(ParseIdentifierLoc()); in ParseAttributeArgsCommon()
297 if (!ArgExprs.empty() ? Tok.is(tok::comma) : Tok.isNot(tok::r_paren)) { in ParseAttributeArgsCommon()
299 if (!ArgExprs.empty()) in ParseAttributeArgsCommon()
315 ArgExprs.push_back(ArgExpr.get()); in ParseAttributeArgsCommon()
324 ArgExprs.data(), ArgExprs.size(), Syntax); in ParseAttributeArgsCommon()
330 return static_cast<unsigned>(ArgExprs.size()); in ParseAttributeArgsCommon()
2533 ArgsVector ArgExprs; in ParseAlignmentSpecifier() local
2534 ArgExprs.push_back(ArgExpr.get()); in ParseAlignmentSpecifier()
2535 Attrs.addNew(KWName, KWLoc, nullptr, KWLoc, ArgExprs.data(), 1, in ParseAlignmentSpecifier()
DParseDeclCXX.cpp3314 ExprVector ArgExprs; in ParseMemInitializer() local
3316 if (Tok.isNot(tok::r_paren) && ParseExpressionList(ArgExprs, CommaLocs)) { in ParseMemInitializer()
3328 T.getOpenLocation(), ArgExprs, in ParseMemInitializer()
/external/clang/lib/Sema/
DSemaPseudoObject.cpp1516 SmallVector<Expr*, 4> ArgExprs; in buildSet() local
1517 ArgExprs.append(CallArgs.begin(), CallArgs.end()); in buildSet()
1518 ArgExprs.push_back(op); in buildSet()
1520 RefExpr->getSourceRange().getBegin(), ArgExprs, in buildSet()
DSemaExpr.cpp1395 ArrayRef<Expr *> ArgExprs) { in ActOnGenericSelectionExpr() argument
1397 assert(NumAssocs == ArgExprs.size()); in ActOnGenericSelectionExpr()
1410 ArgExprs); in ActOnGenericSelectionExpr()
5039 MultiExprArg ArgExprs) { in rewriteBuiltinFunctionDecl() argument
5045 !FT || FT->isVariadic() || ArgExprs.size() != FT->getNumParams()) in rewriteBuiltinFunctionDecl()
5055 Expr *Arg = Sema->DefaultFunctionArrayLvalueConversion(ArgExprs[i++]).get(); in rewriteBuiltinFunctionDecl()
5116 MultiExprArg ArgExprs, SourceLocation RParenLoc, in ActOnCallExpr() argument
5123 if (checkArgsForPlaceholders(*this, ArgExprs)) in ActOnCallExpr()
5129 if (!ArgExprs.empty()) { in ActOnCallExpr()
5133 SourceRange(ArgExprs.front()->getLocStart(), in ActOnCallExpr()
[all …]
DSemaCodeComplete.cpp4048 SmallVector<Expr *, 12> ArgExprs(1, UME->getBase()); in CodeCompleteCall() local
4049 ArgExprs.append(Args.begin(), Args.end()); in CodeCompleteCall()
4052 AddFunctionCandidates(Decls, ArgExprs, CandidateSet, TemplateArgs, in CodeCompleteCall()
4081 SmallVector<Expr *, 12> ArgExprs(1, NakedFn); in CodeCompleteCall() local
4082 ArgExprs.append(Args.begin(), Args.end()); in CodeCompleteCall()
4083 AddFunctionCandidates(R.asUnresolvedSet(), ArgExprs, CandidateSet, in CodeCompleteCall()
DSemaExprCXX.cpp4380 SmallVector<Expr *, 2> ArgExprs; in evaluateTypeTrait() local
4381 ArgExprs.reserve(Args.size() - 1); in evaluateTypeTrait()
4392 ArgExprs.push_back(&E); in evaluateTypeTrait()
4402 InitializationSequence Init(S, To, InitKind, ArgExprs); in evaluateTypeTrait()
4406 ExprResult Result = Init.Perform(S, To, InitKind, ArgExprs); in evaluateTypeTrait()
/external/clang/include/clang/Sema/
DSema.h3882 ArrayRef<Expr *> ArgExprs);
4001 MultiExprArg ArgExprs, SourceLocation RParenLoc,