HomeSort by relevance Sort by last modified time
    Searched refs:Designator (Results 1 - 9 of 9) sorted by null

  /external/clang/include/clang/Sema/
Designator.h 1 //===--- Designator.h - Initialization Designator ---------------*- C++ -*-===//
27 /// Designator - A designator in a C99 designated initializer.
31 /// these. An example of a designator are things like this:
37 class Designator {
126 static Designator getField(const IdentifierInfo *II, SourceLocation DotLoc,
128 Designator D;
136 static Designator getArray(Expr *Index,
138 Designator D
    [all...]
  /external/clang/lib/Parse/
ParseInit.cpp 17 #include "clang/Sema/Designator.h"
25 /// of a designator. If we can tell it is impossible that it is a designator,
32 case tok::period: // designator: '.' identifier
35 case tok::l_square: { // designator: array-designator
69 // whether this is a C99 designator or a lambda.
91 // token. If it's an '=', this is a designator. Otherwise, it's a
93 // GNU designator syntax, which allows one to omit the '=', but is
103 // must be a designator
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 201 /// relevant diagnostic and set the designator as invalid.
204 /// Update this designator to refer to the first element within this array.
215 /// Update this designator to refer to the given base or member of this
230 /// Update this designator to refer to the given complex component.
698 SubobjectDesignator Designator;
704 SubobjectDesignator &getLValueDesignator() { return Designator; }
705 const SubobjectDesignator &getLValueDesignator() const { return Designator;}
708 if (Designator.Invalid)
711 V = APValue(Base, Offset, Designator.Entries,
712 Designator.IsOnePastTheEnd, CallIndex)
    [all...]
Expr.cpp     [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 21 #include "clang/Sema/Designator.h"
    [all...]
TreeTransform.h 28 #include "clang/Sema/Designator.h"
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 657 typedef DesignatedInitExpr::Designator Designator;
667 SmallVector<Designator, 4> Designators;
676 Designators.push_back(Designator(Field->getIdentifier(), DotLoc,
688 Designators.push_back(Designator(Name, DotLoc, FieldLoc));
698 Designators.push_back(Designator(Index, LBracketLoc, RBracketLoc));
710 Designators.push_back(Designator(Index, LBracketLoc, EllipsisLoc,
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 288 milliseconds