Home
last modified time | relevance | path

Searched refs:CreateEmpty (Results 1 – 25 of 26) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp2360 S = CompoundStmt::CreateEmpty( in ReadStmtFromStream()
2365 S = CaseStmt::CreateEmpty( in ReadStmtFromStream()
2385 S = IfStmt::CreateEmpty( in ReadStmtFromStream()
2393 S = SwitchStmt::CreateEmpty( in ReadStmtFromStream()
2400 S = WhileStmt::CreateEmpty( in ReadStmtFromStream()
2430 S = ReturnStmt::CreateEmpty( in ReadStmtFromStream()
2462 S = DeclRefExpr::CreateEmpty( in ReadStmtFromStream()
2484 S = StringLiteral::CreateEmpty( in ReadStmtFromStream()
2500 S = ParenListExpr::CreateEmpty( in ReadStmtFromStream()
2528 S = CallExpr::CreateEmpty( in ReadStmtFromStream()
[all …]
H A DASTReader.cpp11692 C = OMPOrderedClause::CreateEmpty(Context, Record.readInt()); in readClause()
11743 C = OMPPrivateClause::CreateEmpty(Context, Record.readInt()); in readClause()
11749 C = OMPLastprivateClause::CreateEmpty(Context, Record.readInt()); in readClause()
11752 C = OMPSharedClause::CreateEmpty(Context, Record.readInt()); in readClause()
11755 C = OMPReductionClause::CreateEmpty(Context, Record.readInt()); in readClause()
11761 C = OMPInReductionClause::CreateEmpty(Context, Record.readInt()); in readClause()
11764 C = OMPLinearClause::CreateEmpty(Context, Record.readInt()); in readClause()
11767 C = OMPAlignedClause::CreateEmpty(Context, Record.readInt()); in readClause()
11770 C = OMPCopyinClause::CreateEmpty(Context, Record.readInt()); in readClause()
11776 C = OMPFlushClause::CreateEmpty(Context, Record.readInt()); in readClause()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h324 static OMPParallelDirective *CreateEmpty(const ASTContext &C,
1228 static OMPForSimdDirective *CreateEmpty(const ASTContext &C,
1297 static OMPSectionsDirective *CreateEmpty(const ASTContext &C,
1417 static OMPSingleDirective *CreateEmpty(const ASTContext &C,
2085 static OMPFlushDirective *CreateEmpty(const ASTContext &C,
2139 static OMPOrderedDirective *CreateEmpty(const ASTContext &C,
2240 static OMPAtomicDirective *CreateEmpty(const ASTContext &C,
2329 static OMPTargetDirective *CreateEmpty(const ASTContext &C,
2703 static OMPTeamsDirective *CreateEmpty(const ASTContext &C,
2821 static OMPCancelDirective *CreateEmpty(const ASTContext &C,
[all …]
H A DExprCXX.h103 static CXXOperatorCallExpr *CreateEmpty(const ASTContext &Ctx,
237 static CUDAKernelCallExpr *CreateEmpty(const ASTContext &Ctx,
349 static CXXStaticCastExpr *CreateEmpty(const ASTContext &Context,
386 static CXXDynamicCastExpr *CreateEmpty(const ASTContext &Context,
429 static CXXReinterpretCastExpr *CreateEmpty(const ASTContext &Context,
465 static CXXConstCastExpr *CreateEmpty(const ASTContext &Context);
503 static UserDefinedLiteral *CreateEmpty(const ASTContext &Ctx,
1607 static CXXTemporaryObjectExpr *CreateEmpty(const ASTContext &Ctx,
2003 static CXXNewExpr *CreateEmpty(const ASTContext &Ctx, bool IsArray,
2889 static UnresolvedLookupExpr *CreateEmpty(const ASTContext &Context,
[all …]
H A DOpenMPClause.h1499 static OMPPrivateClause *CreateEmpty(const ASTContext &C, unsigned N);
1901 static OMPSharedClause *CreateEmpty(const ASTContext &C, unsigned N);
2074 static OMPReductionClause *CreateEmpty(const ASTContext &C, unsigned N);
3041 static OMPCopyinClause *CreateEmpty(const ASTContext &C, unsigned N);
3292 static OMPFlushClause *CreateEmpty(const ASTContext &C, unsigned N);
3390 static OMPDependClause *CreateEmpty(const ASTContext &C, unsigned N,
4209 static OMPMapClause *CreateEmpty(const ASTContext &C, unsigned NumVars,
4927 static OMPToClause *CreateEmpty(const ASTContext &C, unsigned NumVars,
5026 static OMPFromClause *CreateEmpty(const ASTContext &C, unsigned NumVars,
5161 static OMPUseDevicePtrClause *CreateEmpty(const ASTContext &C,
[all …]
H A DStmt.h1266 static CompoundStmt *CreateEmpty(const ASTContext &C, unsigned NumStmts);
1458 static CaseStmt *CreateEmpty(const ASTContext &Ctx, bool CaseStmtIsGNURange);
1666 static AttributedStmt *CreateEmpty(const ASTContext &C, unsigned NumAttrs);
1750 static IfStmt *CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar,
1937 static SwitchStmt *CreateEmpty(const ASTContext &Ctx, bool HasInit,
2107 static WhileStmt *CreateEmpty(const ASTContext &Ctx, bool HasVar);
2474 static ReturnStmt *CreateEmpty(const ASTContext &Ctx, bool HasNRVOCandidate);
H A DExprObjC.h194 static ObjCArrayLiteral *CreateEmpty(const ASTContext &C,
336 static ObjCDictionaryLiteral *CreateEmpty(const ASTContext &C,
1177 static ObjCMessageExpr *CreateEmpty(const ASTContext &Context,
H A DStmtObjC.h189 static ObjCAtTryStmt *CreateEmpty(const ASTContext &Context,
H A DExpr.h1109 static DeclRefExpr *CreateEmpty(const ASTContext &Context, bool HasQualifier,
1645 static StringLiteral *CreateEmpty(const ASTContext &Ctx,
1803 static PredefinedExpr *CreateEmpty(const ASTContext &Ctx,
2148 static OffsetOfExpr *CreateEmpty(const ASTContext &C,
2511 static CallExpr *CreateEmpty(const ASTContext &Ctx, unsigned NumArgs,
3149 static ImplicitCastExpr *CreateEmpty(const ASTContext &Context,
3252 static CStyleCastExpr *CreateEmpty(const ASTContext &Context,
4620 static DesignatedInitExpr *CreateEmpty(const ASTContext &C,
4947 static ParenListExpr *CreateEmpty(const ASTContext &Ctx, unsigned NumExprs);
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp111 OMPSimdDirective *OMPSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPSimdDirective
160 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPForDirective
422 OMPParallelForSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPParallelForSimdDirective
449 OMPParallelSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPParallelSectionsDirective
473 OMPTaskDirective *OMPTaskDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPTaskDirective
715 OMPTargetParallelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPTargetParallelDirective
763 OMPTargetParallelForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPTargetParallelForDirective
1089 OMPDistributeParallelForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPDistributeParallelForDirective
1209 OMPDistributeSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPDistributeSimdDirective
1353 OMPTeamsDistributeDirective::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPTeamsDistributeDirective
[all …]
H A DOpenMPClause.cpp210 OMPOrderedClause *OMPOrderedClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPOrderedClause
265 OMPPrivateClause *OMPPrivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPPrivateClause
298 OMPFirstprivateClause *OMPFirstprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPFirstprivateClause
349 OMPLastprivateClause *OMPLastprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPLastprivateClause
423 OMPLinearClause *OMPLinearClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPLinearClause
443 OMPAlignedClause *OMPAlignedClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPAlignedClause
526 OMPCopyprivateClause *OMPCopyprivateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPCopyprivateClause
579 OMPReductionClause *OMPReductionClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPReductionClause
695 OMPInReductionClause *OMPInReductionClause::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OMPInReductionClause
997 OMPUseDevicePtrClause *OMPUseDevicePtrClause::CreateEmpty( in CreateEmpty() function in OMPUseDevicePtrClause
[all …]
H A DExprCXX.cpp202 CXXNewExpr *CXXNewExpr::CreateEmpty(const ASTContext &Ctx, bool IsArray, in CreateEmpty() function in CXXNewExpr
357 UnresolvedLookupExpr *UnresolvedLookupExpr::CreateEmpty( in CreateEmpty() function in UnresolvedLookupExpr
492 DependentScopeDeclRefExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty() function in DependentScopeDeclRefExpr
629 CXXMemberCallExpr *CXXMemberCallExpr::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() function in CXXMemberCallExpr
707 CXXStaticCastExpr *CXXStaticCastExpr::CreateEmpty(const ASTContext &C, in CreateEmpty() function in CXXStaticCastExpr
804 CXXConstCastExpr *CXXConstCastExpr::CreateEmpty(const ASTContext &C) { in CreateEmpty() function in CXXConstCastExpr
999 CXXConstructExpr *CXXConstructExpr::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() function in CXXConstructExpr
1291 CXXUnresolvedConstructExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty() function in CXXUnresolvedConstructExpr
1371 CXXDependentScopeMemberExpr *CXXDependentScopeMemberExpr::CreateEmpty( in CreateEmpty() function in CXXDependentScopeMemberExpr
1461 UnresolvedMemberExpr *UnresolvedMemberExpr::CreateEmpty( in CreateEmpty() function in UnresolvedMemberExpr
[all …]
H A DStmt.cpp339 CompoundStmt *CompoundStmt::CreateEmpty(const ASTContext &C, in CreateEmpty() function in CompoundStmt
361 AttributedStmt *AttributedStmt::CreateEmpty(const ASTContext &C, in CreateEmpty() function in AttributedStmt
855 IfStmt *IfStmt::CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar, in CreateEmpty() function in IfStmt
957 SwitchStmt *SwitchStmt::CreateEmpty(const ASTContext &Ctx, bool HasInit, in CreateEmpty() function in SwitchStmt
1014 WhileStmt *WhileStmt::CreateEmpty(const ASTContext &Ctx, bool HasVar) { in CreateEmpty() function in WhileStmt
1072 ReturnStmt *ReturnStmt::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() function in ReturnStmt
1091 CaseStmt *CaseStmt::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() function in CaseStmt
H A DExprObjC.cpp53 ObjCArrayLiteral *ObjCArrayLiteral::CreateEmpty(const ASTContext &C, in CreateEmpty() function in ObjCArrayLiteral
105 ObjCDictionaryLiteral::CreateEmpty(const ASTContext &C, unsigned NumElements, in CreateEmpty() function in ObjCDictionaryLiteral
264 ObjCMessageExpr *ObjCMessageExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty() function in ObjCMessageExpr
H A DStmtObjC.cpp58 ObjCAtTryStmt *ObjCAtTryStmt::CreateEmpty(const ASTContext &Context, in CreateEmpty() function in ObjCAtTryStmt
H A DExpr.cpp450 DeclRefExpr *DeclRefExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty() function in DeclRefExpr
506 PredefinedExpr *PredefinedExpr::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() function in PredefinedExpr
994 StringLiteral *StringLiteral::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() function in StringLiteral
1305 CallExpr *CallExpr::CreateEmpty(const ASTContext &Ctx, unsigned NumArgs, in CreateEmpty() function in CallExpr
1460 OffsetOfExpr *OffsetOfExpr::CreateEmpty(const ASTContext &C, in CreateEmpty() function in OffsetOfExpr
1858 ImplicitCastExpr *ImplicitCastExpr::CreateEmpty(const ASTContext &C, in CreateEmpty() function in ImplicitCastExpr
1880 CStyleCastExpr *CStyleCastExpr::CreateEmpty(const ASTContext &C, in CreateEmpty() function in CStyleCastExpr
3919 DesignatedInitExpr *DesignatedInitExpr::CreateEmpty(const ASTContext &C, in CreateEmpty() function in DesignatedInitExpr
4060 ParenListExpr *ParenListExpr::CreateEmpty(const ASTContext &Ctx, in CreateEmpty() function in ParenListExpr
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDeclCXX.cpp629 auto NL = ApplyDebugLocation::CreateEmpty(*this); in GenerateCXXGlobalInitFunc()
688 auto NL = ApplyDebugLocation::CreateEmpty(*this); in GenerateCXXGlobalDtorsFunc()
H A DCGOpenMPRuntimeNVPTX.cpp2129 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitGenericVarsProlog()
2135 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitGenericVarsProlog()
2391 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitGenericVarsEpilog()
2594 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitNonSPMDParallelCall()
2607 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitNonSPMDParallelCall()
2612 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitNonSPMDParallelCall()
3227 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitInterWarpCopyFunction()
3343 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitInterWarpCopyFunction()
3969 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitReduction()
H A DCGDebugInfo.h732 static ApplyDebugLocation CreateEmpty(CodeGenFunction &CGF) { in CreateEmpty() function
H A DCGStmt.cpp659 auto NL = ApplyDebugLocation::CreateEmpty(*this); in EmitIfStmt()
668 auto NL = ApplyDebugLocation::CreateEmpty(*this); in EmitIfStmt()
H A DCGVTables.cpp260 auto NL = ApplyDebugLocation::CreateEmpty(*this); in StartThunk()
H A DCGOpenMPRuntime.cpp2583 auto NL = ApplyDebugLocation::CreateEmpty(DtorCGF); in emitThreadPrivateVarDefinition()
2708 auto NL = ApplyDebugLocation::CreateEmpty(CtorCGF); in emitDeclareTargetVarDefinition()
2746 auto NL = ApplyDebugLocation::CreateEmpty(DtorCGF); in emitDeclareTargetVarDefinition()
2828 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitOMPIfClause()
2832 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitOMPIfClause()
H A DCGBlocks.cpp1612 auto NL = ApplyDebugLocation::CreateEmpty(*this); in GenerateBlockFunction()
H A DMicrosoftCXXABI.cpp3917 auto NL = ApplyDebugLocation::CreateEmpty(CGF); in getAddrOfCXXCtorClosure()
H A DCGExprScalar.cpp3880 auto NL = ApplyDebugLocation::CreateEmpty(CGF); in VisitBinLAnd()

12