HomeSort by: relevance | last modified time | path
    Searched refs:CXXNewExprBits (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprCXX.cpp 198 CXXNewExprBits.IsGlobalNew = IsGlobalNew;
199 CXXNewExprBits.IsArray = ArraySize.hasValue();
200 CXXNewExprBits.ShouldPassAlignment = ShouldPassAlignment;
201 CXXNewExprBits.UsualArrayDeleteWantsSize = UsualArrayDeleteWantsSize;
202 CXXNewExprBits.StoredInitializationStyle =
205 CXXNewExprBits.IsParenTypeId = IsParenTypeId;
206 CXXNewExprBits.NumPlacementArgs = PlacementArgs.size();
237 CXXNewExprBits.IsArray = IsArray;
238 CXXNewExprBits.NumPlacementArgs = NumPlacementArgs;
239 CXXNewExprBits.IsParenTypeId = IsParenTypeId
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprCXX.h 2262 bool isArray() const { return CXXNewExprBits.IsArray; }
2276 return CXXNewExprBits.NumPlacementArgs;
2292 bool isParenTypeId() const { return CXXNewExprBits.IsParenTypeId; }
2298 bool isGlobalNew() const { return CXXNewExprBits.IsGlobalNew; }
2302 return CXXNewExprBits.StoredInitializationStyle > 0;
2307 if (CXXNewExprBits.StoredInitializationStyle == 0)
2310 CXXNewExprBits.StoredInitializationStyle - 1);
2332 bool passAlignment() const { return CXXNewExprBits.ShouldPassAlignment; }
2338 return CXXNewExprBits.UsualArrayDeleteWantsSize;
Stmt.h 1054 CXXNewExprBitfields CXXNewExprBits;
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 1864 E->CXXNewExprBits.IsGlobalNew = Record.readInt();
1865 E->CXXNewExprBits.ShouldPassAlignment = Record.readInt();
1866 E->CXXNewExprBits.UsualArrayDeleteWantsSize = Record.readInt();
1867 E->CXXNewExprBits.StoredInitializationStyle = Record.readInt();
ASTWriterStmt.cpp 1777 Record.push_back(E->CXXNewExprBits.StoredInitializationStyle);

Completed in 24 milliseconds