Searched defs:exprs (Results 1 - 17 of 17) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DMediaQuery.cpp78 MediaQuery::MediaQuery(Restrictor r, const String& mediaType, PassOwnPtr<Vector<OwnPtr<MediaQueryExp> > > exprs) argument
81 , m_expressions(exprs)
/external/clang/lib/ARCMigrate/
H A DTransforms.cpp302 void trans::collectRemovables(Stmt *S, ExprSet &exprs) { argument
303 RemovablesCollector(exprs).TraverseStmt(S);
/external/valgrind/main/coregrind/m_debuginfo/
H A Dstorage.c115 void ML_(ppDiCfSI) ( XArray* /* of CfiExpr */ exprs, DiCfSI* si ) argument
133 ML_(ppCfiExpr)(exprs, _off); \
166 ML_(ppCfiExpr)(exprs, si->cfa_off);
H A Ddebuginfo.c1994 /* Evaluate the CfiExpr rooted at ix in exprs given the context eec.
1999 UWord evalCfiExpr ( XArray* exprs, Int ix, argument
2006 e = VG_(indexXA)( exprs, ix );
2009 wL = evalCfiExpr( exprs, e->Cex.Binop.ixL, eec, ok );
2011 wR = evalCfiExpr( exprs, e->Cex.Binop.ixR, eec, ok );
2055 a = evalCfiExpr( exprs, e->Cex.Deref.ixAddr, eec, ok );
2070 ML_(ppCfiExpr)( exprs, ix );
H A Dreaddwarf.c1956 All expressions are stored in exprs in the containing
1972 static void ppRegRule ( XArray* exprs, RegRule* rrule ) argument
1974 vg_assert(exprs);
1982 ML_(ppCfiExpr)( exprs, rrule->arg );
2022 XArray* exprs; member in struct:__anon13577
2036 vg_assert(ctx->exprs);
2038 ML_(ppCfiExpr)( ctx->exprs, ctxs->cfa_expr_ix );
2043 ppRegRule(ctx->exprs, &ctxs->reg[i]);
2058 ctx->exprs = NULL;
2137 src = ctx->exprs;
[all...]
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp97 MultiExprArg constraints, MultiExprArg exprs,
103 Expr **Exprs = exprs.data();
130 // Check that the output exprs are valid lvalues.
94 ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, bool IsVolatile, unsigned NumOutputs, unsigned NumInputs, IdentifierInfo **Names, MultiExprArg constraints, MultiExprArg exprs, Expr *asmString, MultiExprArg clobbers, SourceLocation RParenLoc) argument
H A DSemaExprCXX.cpp788 MultiExprArg exprs,
798 return BuildCXXTypeConstructExpr(TInfo, LParenLoc, exprs, RParenLoc);
808 MultiExprArg exprs,
813 if (Ty->isDependentType() || CallExpr::hasAnyTypeDependentArguments(exprs)) {
816 exprs,
820 unsigned NumExprs = exprs.size();
821 Expr **Exprs = exprs.data();
864 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, exprs);
786 ActOnCXXTypeConstructExpr(ParsedType TypeRep, SourceLocation LParenLoc, MultiExprArg exprs, SourceLocation RParenLoc) argument
806 BuildCXXTypeConstructExpr(TypeSourceInfo *TInfo, SourceLocation LParenLoc, MultiExprArg exprs, SourceLocation RParenLoc) argument
H A DSemaChecking.cpp1503 SmallVector<Expr*, 32> exprs; local
1506 exprs.push_back(TheCall->getArg(i));
1510 return Owned(new (Context) ShuffleVectorExpr(Context, exprs, resType,
H A DSemaExpr.cpp4530 Expr **exprs; local
4534 exprs = PE->getExprs();
4538 exprs = &subExpr;
4559 ExprResult Literal = DefaultLvalueConversion(exprs[0]);
4572 initExprs.append(exprs, exprs + numExprs);
4581 ExprResult Literal = DefaultLvalueConversion(exprs[0]);
4589 initExprs.append(exprs, exprs + numExprs);
/external/clang/lib/AST/
H A DStmt.cpp63 llvm::errs() << " " << sum << " stmts/exprs total.\n";
653 Expr **exprs, StringLiteral *asmstr,
665 std::copy(exprs, exprs + NumExprs, Exprs);
650 GCCAsmStmt(ASTContext &C, SourceLocation asmloc, bool issimple, bool isvolatile, unsigned numoutputs, unsigned numinputs, IdentifierInfo **names, StringLiteral **constraints, Expr **exprs, StringLiteral *asmstr, unsigned numclobbers, StringLiteral **clobbers, SourceLocation rparenloc) argument
H A DExpr.cpp1127 ArrayRef<Expr*> exprs,
1131 sizeof(Expr*) * exprs.size());
1133 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs,
1147 ArrayRef<OffsetOfNode> comps, ArrayRef<Expr*> exprs,
1155 NumComps(comps.size()), NumExprs(exprs.size())
1161 for (unsigned i = 0; i != exprs.size(); ++i) {
1162 if (exprs[i]->isTypeDependent() || exprs[i]->isValueDependent())
1164 if (exprs[i]->containsUnexpandedParameterPack())
1167 setIndexExpr(i, exprs[
1123 Create(ASTContext &C, QualType type, SourceLocation OperatorLoc, TypeSourceInfo *tsi, ArrayRef<OffsetOfNode> comps, ArrayRef<Expr*> exprs, SourceLocation RParenLoc) argument
1145 OffsetOfExpr(ASTContext &C, QualType type, SourceLocation OperatorLoc, TypeSourceInfo *tsi, ArrayRef<OffsetOfNode> comps, ArrayRef<Expr*> exprs, SourceLocation RParenLoc) argument
3661 ParenListExpr(ASTContext& C, SourceLocation lparenloc, ArrayRef<Expr*> exprs, SourceLocation rparenloc) argument
[all...]
/external/v8/tools/gcmole/
H A Dgcmole.cc654 clang::Expr* exprs[2] = {expr->getBase(), expr->getIdx()}; local
655 return Par(expr, 2, exprs, env);
673 clang::Expr* exprs[2] = {lhs, rhs}; local
677 return Seq(expr, 2, exprs, env);
688 return Par(expr, 2, exprs, env);
692 return Par(expr, 2, exprs, env);
777 clang::Expr** exprs,
782 props.SetEffect(i, VisitExpr(exprs[i], env));
792 clang::Expr** exprs,
797 out = ExprEffect::MergeSeq(out, VisitExpr(exprs[
775 Par(clang::Expr* parent, int n, clang::Expr** exprs, const Environment& env) argument
790 Seq(clang::Stmt* parent, int n, clang::Expr** exprs, const Environment& env) argument
[all...]
/external/v8/src/
H A Dhydrogen.cc2437 void HGraphBuilder::VisitExpressions(ZoneList<Expression*>* exprs) { argument
2438 for (int i = 0; i < exprs->length(); ++i) {
2439 CHECK_ALIVE(VisitForValue(exprs->at(i)));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.metadata_2.0.0.v20100601.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 590 milliseconds