Searched defs:UseGlobal (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Parse/
H A DParseExprCXX.cpp2184 /// been already parsed. If the :: was present, "UseGlobal" is true and "Start"
2209 Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) { argument
2314 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
2395 /// '::' has been already parsed. If the '::' was present, "UseGlobal" is true
2403 Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) { argument
2431 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.take());
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp947 /// \param UseGlobal True if 'new' was prefixed with '::'.
956 Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, argument
1010 return BuildCXXNew(StartLoc, UseGlobal,
1043 Sema::BuildCXXNew(SourceLocation StartLoc, bool UseGlobal, argument
1300 UseGlobal, AllocType, ArraySize, PlaceArgs,
1431 return Owned(new (Context) CXXNewExpr(Context, UseGlobal, OperatorNew,
1495 bool UseGlobal, QualType AllocType,
1502 // 1) If UseGlobal is true, only look in the global scope. Else, also look
1533 if (AllocElemType->isRecordType() && !UseGlobal) {
1573 if (AllocElemType->isRecordType() && !UseGlobal) {
1494 FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, bool UseGlobal, QualType AllocType, bool IsArray, Expr **PlaceArgs, unsigned NumPlaceArgs, FunctionDecl *&OperatorNew, FunctionDecl *&OperatorDelete) argument
2044 ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal, bool ArrayForm, Expr *ExE) argument
[all...]
H A DTreeTransform.h1975 bool UseGlobal,
1985 return getSema().BuildCXXNew(StartLoc, UseGlobal,
1974 RebuildCXXNewExpr(SourceLocation StartLoc, bool UseGlobal, SourceLocation PlacementLParen, MultiExprArg PlacementArgs, SourceLocation PlacementRParen, SourceRange TypeIdParens, QualType AllocatedType, TypeSourceInfo *AllocatedTypeInfo, Expr *ArraySize, SourceRange DirectInitRange, Expr *Initializer) argument

Completed in 230 milliseconds