Searched defs:FieldLoc (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGExprAgg.cpp850 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0); local
853 EmitInitializationToLValue(E->getInit(0), FieldLoc);
856 EmitNullInitializationToLValue(FieldLoc);
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp648 SourceLocation FieldLoc local
651 FieldLoc));
660 SourceLocation FieldLoc local
662 Designators.push_back(Designator(Name, DotLoc, FieldLoc));
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp348 SVal FieldLoc = state->getLValue(FD, thisVal); local
350 state = state->bindLoc(FieldLoc, InitVal);
/external/clang/include/clang/AST/
H A DExpr.h3545 unsigned FieldLoc; member in struct:clang::StringLiteral::OffsetOfExpr::CallExpr::DesignatedInitExpr::FieldDesignator
3589 SourceLocation FieldLoc)
3593 Field.FieldLoc = FieldLoc.getRawEncoding();
3642 return SourceLocation::getFromRawEncoding(Field.FieldLoc);
3588 Designator(const IdentifierInfo *FieldName, SourceLocation DotLoc, SourceLocation FieldLoc) argument
/external/clang/lib/Sema/
H A DSemaDecl.cpp8290 bool Sema::VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName, argument
8301 if (RequireCompleteType(FieldLoc, FieldTy, diag::err_field_incomplete))
8304 return Diag(FieldLoc, diag::err_not_integral_type_bitfield)
8306 return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield)
8326 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
8330 return Diag(FieldLoc, diag::err_bitfield_has_negative_width)
8332 return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width)
8341 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)
8345 return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_size)
8350 Diag(FieldLoc, dia
[all...]

Completed in 1445 milliseconds