| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 3002 Stmt::EmptyShell Empty; in ReadStmtFromStream() local 3051 S = new (Context) NullStmt(Empty); in ReadStmtFromStream() 3068 S = new (Context) DefaultStmt(Empty); in ReadStmtFromStream() 3072 S = new (Context) LabelStmt(Empty); in ReadStmtFromStream() 3104 S = new (Context) DoStmt(Empty); in ReadStmtFromStream() 3108 S = new (Context) ForStmt(Empty); in ReadStmtFromStream() 3112 S = new (Context) GotoStmt(Empty); in ReadStmtFromStream() 3116 S = new (Context) IndirectGotoStmt(Empty); in ReadStmtFromStream() 3120 S = new (Context) ContinueStmt(Empty); in ReadStmtFromStream() 3124 S = new (Context) BreakStmt(Empty); in ReadStmtFromStream() [all …]
|
| H A D | PCHContainerOperations.cpp | 44 llvm::SmallVector<char, 0> Empty; in HandleTranslationUnit() local 45 Buffer->Data = std::move(Empty); in HandleTranslationUnit()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtObjC.h | 31 explicit ObjCForCollectionStmt(EmptyShell Empty) : in ObjCForCollectionStmt() argument 32 Stmt(ObjCForCollectionStmtClass, Empty) { } in ObjCForCollectionStmt() 90 explicit ObjCAtCatchStmt(EmptyShell Empty) : in ObjCAtCatchStmt() argument 91 Stmt(ObjCAtCatchStmtClass, Empty) { } in ObjCAtCatchStmt() 136 explicit ObjCAtFinallyStmt(EmptyShell Empty) : in ObjCAtFinallyStmt() argument 137 Stmt(ObjCAtFinallyStmtClass, Empty) { } in ObjCAtFinallyStmt() 196 explicit ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts, in ObjCAtTryStmt() argument 198 : Stmt(ObjCAtTryStmtClass, Empty), NumCatchStmts(NumCatchStmts), in ObjCAtTryStmt() 317 explicit ObjCAtSynchronizedStmt(EmptyShell Empty) : in ObjCAtSynchronizedStmt() argument 318 Stmt(ObjCAtSynchronizedStmtClass, Empty) { } in ObjCAtSynchronizedStmt() [all …]
|
| H A D | ExprCXX.h | 99 CXXOperatorCallExpr(unsigned NumArgs, bool HasFPFeatures, EmptyShell Empty); 110 EmptyShell Empty); 186 CXXMemberCallExpr(unsigned NumArgs, bool HasFPFeatures, EmptyShell Empty); 196 bool HasFPFeatures, EmptyShell Empty); 245 CUDAKernelCallExpr(unsigned NumArgs, bool HasFPFeatures, EmptyShell Empty); 257 EmptyShell Empty); 299 CXXRewrittenBinaryOperator(EmptyShell Empty) in CXXRewrittenBinaryOperator() argument 300 : Expr(CXXRewrittenBinaryOperatorClass, Empty), SemanticForm() {} in CXXRewrittenBinaryOperator() 447 explicit CXXStaticCastExpr(EmptyShell Empty, unsigned PathSize, in CXXStaticCastExpr() argument 449 : CXXNamedCastExpr(CXXStaticCastExprClass, Empty, PathSize, in CXXStaticCastExpr() [all …]
|
| H A D | ExprObjC.h | 61 explicit ObjCStringLiteral(EmptyShell Empty) in ObjCStringLiteral() argument 62 : Expr(ObjCStringLiteralClass, Empty) {} in ObjCStringLiteral() 97 explicit ObjCBoolLiteralExpr(EmptyShell Empty) in ObjCBoolLiteralExpr() argument 98 : Expr(ObjCBoolLiteralExprClass, Empty) {} in ObjCBoolLiteralExpr() 140 explicit ObjCBoxedExpr(EmptyShell Empty) in ObjCBoxedExpr() argument 141 : Expr(ObjCBoxedExprClass, Empty) {} in ObjCBoxedExpr() 200 explicit ObjCArrayLiteral(EmptyShell Empty, unsigned NumElements) in ObjCArrayLiteral() argument 201 : Expr(ObjCArrayLiteralClass, Empty), NumElements(NumElements) {} in ObjCArrayLiteral() 332 explicit ObjCDictionaryLiteral(EmptyShell Empty, unsigned NumElements, in ObjCDictionaryLiteral() argument 334 : Expr(ObjCDictionaryLiteralClass, Empty), NumElements(NumElements), in ObjCDictionaryLiteral() [all …]
|
| H A D | Expr.h | 1057 FullExpr(StmtClass SC, EmptyShell Empty) in FullExpr() argument 1058 : Expr(SC, Empty) {} in FullExpr() 1114 ConstantExpr(EmptyShell Empty, ConstantResultStorageKind StorageKind); 1194 explicit OpaqueValueExpr(EmptyShell Empty) in OpaqueValueExpr() argument 1195 : Expr(OpaqueValueExprClass, Empty) {} in OpaqueValueExpr() 1304 explicit DeclRefExpr(EmptyShell Empty) : Expr(DeclRefExprClass, Empty) {} in DeclRefExpr() argument 1512 explicit IntegerLiteral(EmptyShell Empty) in IntegerLiteral() argument 1513 : Expr(IntegerLiteralClass, Empty) { } in IntegerLiteral() 1528 static IntegerLiteral *Create(const ASTContext &C, EmptyShell Empty); 1556 explicit FixedPointLiteral(EmptyShell Empty) in FixedPointLiteral() argument [all …]
|
| H A D | Stmt.h | 1631 explicit DeclStmt(EmptyShell Empty) : Stmt(DeclStmtClass, Empty) {} 1703 explicit NullStmt(EmptyShell Empty) : Stmt(NullStmtClass, Empty) {} 1743 explicit CompoundStmt(EmptyShell Empty) : Stmt(CompoundStmtClass, Empty) {} 1977 explicit CaseStmt(EmptyShell Empty, bool CaseStmtIsGNURange) 1978 : SwitchCase(CaseStmtClass, Empty) { 2089 explicit DefaultStmt(EmptyShell Empty) 2090 : SwitchCase(DefaultStmtClass, Empty) {} 2170 explicit LabelStmt(EmptyShell Empty) : ValueStmt(LabelStmtClass, Empty) {} 2220 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs) 2221 : ValueStmt(AttributedStmtClass, Empty) { [all …]
|
| H A D | StmtSYCL.h | 51 SYCLKernelCallStmt(EmptyShell Empty) : Stmt(SYCLKernelCallStmtClass, Empty) {} in SYCLKernelCallStmt() argument
|
| H A D | StmtCXX.h | 40 CXXCatchStmt(EmptyShell Empty) in CXXCatchStmt() argument 80 CXXTryStmt(EmptyShell Empty, unsigned numHandlers) in CXXTryStmt() argument 90 static CXXTryStmt *Create(const ASTContext &C, EmptyShell Empty, 151 CXXForRangeStmt(EmptyShell Empty) : Stmt(CXXForRangeStmtClass, Empty) { } in CXXForRangeStmt() argument
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | MemoryRegionInfo.cpp | 29 bool Empty = Options.empty(); in format() local 32 OS << (Empty ? "no" : "-"); in format() 35 OS << (Empty ? "yes" : Options); in format() 38 OS << (Empty ? "don't know" : "?"); in format()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConcepts.cpp | 52 ConceptSpecializationExpr::ConceptSpecializationExpr(EmptyShell Empty) in ConceptSpecializationExpr() argument 53 : Expr(ConceptSpecializationExprClass, Empty) {} in ConceptSpecializationExpr() 160 RequiresExpr::RequiresExpr(ASTContext &C, EmptyShell Empty, in RequiresExpr() argument 163 : Expr(RequiresExprClass, Empty), NumLocalParameters(NumLocalParameters), in RequiresExpr() 181 RequiresExpr::Create(ASTContext &C, EmptyShell Empty, in Create() argument 187 return new (Mem) RequiresExpr(C, Empty, NumLocalParameters, NumRequirements); in Create()
|
| H A D | ExprCXX.cpp | 285 CXXNewExpr::CXXNewExpr(EmptyShell Empty, bool IsArray, in CXXNewExpr() argument 287 : Expr(CXXNewExprClass, Empty) { in CXXNewExpr() 414 UnresolvedLookupExpr::UnresolvedLookupExpr(EmptyShell Empty, in UnresolvedLookupExpr() argument 417 : OverloadExpr(UnresolvedLookupExprClass, Empty, NumResults, in UnresolvedLookupExpr() 505 OverloadExpr::OverloadExpr(StmtClass SC, EmptyShell Empty, unsigned NumResults, in OverloadExpr() argument 507 : Expr(SC, Empty) { in OverloadExpr() 607 EmptyShell Empty) in CXXOperatorCallExpr() argument 609 HasFPFeatures, Empty) {} in CXXOperatorCallExpr() 632 EmptyShell Empty) { in CreateEmpty() argument 640 return new (Mem) CXXOperatorCallExpr(NumArgs, HasFPFeatures, Empty); in CreateEmpty() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | EvaluationResult.h | 35 Empty, // Initial state. enumerator 47 ResultKind Kind = Empty; 82 bool empty() const { return Kind == Empty; } in empty()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeHashing.h | 186 LLVM_ABI static codeview::LocallyHashedType Empty; 189 static codeview::LocallyHashedType getEmptyKey() { return Empty; } 206 LLVM_ABI static codeview::GloballyHashedType Empty; 209 static codeview::GloballyHashedType getEmptyKey() { return Empty; }
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | ProfileList.h | 42 const bool Empty; variable 51 bool isEmpty() const { return Empty; } in isEmpty()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | RDFLiveness.h | 64 MDF(g.getDF()), LiveMap(g.getPRI()), Empty(), NoRegs(g.getPRI()) {} 99 return F == RealUseMap.end() ? Empty : F->second; 117 const RefMap Empty;
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeHashing.cpp | 17 LocallyHashedType DenseMapInfo<LocallyHashedType>::Empty{0, {}}; 25 GloballyHashedType DenseMapInfo<GloballyHashedType>::Empty{EmptyHash};
|
| /freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
| H A D | OMP.cpp | 60 auto Empty = llvm::make_range(Leafs.end(), Leafs.end()); in getFirstCompositeRange() local 64 return Empty; in getFirstCompositeRange() 69 return Empty; in getFirstCompositeRange()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | DenseSet.h | 220 detail::DenseSetEmpty Empty; in insert() local 221 return TheMap.try_emplace(V, Empty); in insert() 225 detail::DenseSetEmpty Empty; in insert() local 226 return TheMap.try_emplace(std::move(V), Empty); in insert()
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | Mangled.cpp | 459 Empty = 0u, enumerator 486 case Empty: in Decode() 531 MangledEncoding encoding = Empty; in Encode() 547 case Empty: in Encode()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | MsgPackDocument.h | 79 bool isEmpty() const { return !KindAndDoc || getKind() == Type::Empty; } in isEmpty() 290 KindAndDocument KindAndDocs[size_t(Type::Empty) + 1]; 298 for (unsigned T = 0; T != unsigned(Type::Empty) + 1; ++T) in Document() 310 auto N = DocNode(&KindAndDocs[size_t(Type::Empty)]); in getEmptyNode()
|
| /freebsd/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | arm,pl172.txt | 23 - clock-ranges: Empty property indicating that child nodes can inherit 37 - ranges: Empty property indicating that child nodes can inherit 40 - clock-ranges: Empty property indicating that child nodes can inherit
|
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | PGOCtxProfReader.cpp | 312 yaml::EmptyContext Empty; local 319 yaml::yamlize(Out, Guid, true, Empty); 324 yaml::yamlize(Out, *TotalRootEntryCount, true, Empty); 333 yaml::yamlize(Out, V, true, Empty);
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Signals.cpp | 82 enum class Status { Empty, Initializing, Initialized, Executing }; enumerator 106 RunMe.Flag.store(CallbackAndCookie::Status::Empty); in RunSignalHandlers() 114 auto Expected = CallbackAndCookie::Status::Empty; in insertSignalHandler()
|
| /freebsd/sys/arm/conf/ |
| H A D | GENERIC.hints | 1 # Empty device.hints
|