HomeSort by: relevance | last modified time | path
    Searched defs:InitListExpr (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 2187 InitListExpr::InitListExpr(const ASTContext &C, SourceLocation lbraceloc,
2198 void InitListExpr::reserveInits(const ASTContext &C, unsigned NumInits) {
2203 void InitListExpr::resizeInits(const ASTContext &C, unsigned NumInits) {
2207 Expr *InitListExpr::updateInit(const ASTContext &C, unsigned Init, Expr *expr) {
2219 void InitListExpr::setArrayFiller(Expr *filler) {
2229 bool InitListExpr::isStringLiteralInit() const {
2243 bool InitListExpr::isTransparent() const {
2246 // A glvalue InitListExpr is always just sugar.
2266 bool InitListExpr::isIdiomaticZeroInitializer(const LangOptions &LangOpts) const
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
ItaniumDemangle.h 96 X(InitListExpr) \
1906 class InitListExpr : public Node {
1910 InitListExpr(const Node *Ty_, NodeArray Inits_)
4738 return make<InitListExpr>(nullptr, popTrailingNodeArray(InitsBegin));
4994 return make<InitListExpr>(Ty, popTrailingNodeArray(InitsBegin));
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 4669 /// InitListExpr describes an initializer list, which can be used to
4688 /// subobjects are made explicit with nested InitListExpr nodes and
4712 class InitListExpr : public Expr {
4723 llvm::PointerIntPair<InitListExpr *, 1, bool> AltForm;
4735 InitListExpr(const ASTContext &C, SourceLocation lbraceloc,
4739 explicit InitListExpr(EmptyShell Empty)
4778 /// Mark the semantic form of the InitListExpr as error when the semantic
4812 return const_cast<InitListExpr *>(this)->getArrayFiller();
4830 return const_cast<InitListExpr *>(this)->getInitializedFieldInUnion();
4840 // Explicit InitListExpr's originate from source code (and have valid sourc
    [all...]

Completed in 34 milliseconds