HomeSort by relevance Sort by last modified time
    Searched defs:AggSlot (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/CodeGen/
CGClass.cpp 412 AggValueSlot AggSlot =
418 CGF.EmitAggExpr(BaseInit->getInit(), AggSlot);
    [all...]
CGExpr.cpp 112 /// If this is an aggregate expression, AggSlot indicates where the
115 AggValueSlot aggSlot,
123 if (!ignoreResult && aggSlot.isIgnored())
124 aggSlot = CreateAggTemp(E->getType(), "agg-temp");
125 EmitAggExpr(E, aggSlot);
126 return aggSlot.asRValue();
134 AggValueSlot AggSlot = AggValueSlot::ignored();
137 AggSlot = CreateAggTemp(E->getType(), "agg.tmp");
138 return EmitAnyExpr(E, AggSlot);
303 AggValueSlot AggSlot = AggValueSlot::ignored()
    [all...]

Completed in 455 milliseconds