/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 2883 Stmt::EmptyShell Empty; in ReadStmtFromStream() local 2932 S = new (Context) NullStmt(Empty); in ReadStmtFromStream() 2949 S = new (Context) DefaultStmt(Empty); in ReadStmtFromStream() 2953 S = new (Context) LabelStmt(Empty); in ReadStmtFromStream() 2985 S = new (Context) DoStmt(Empty); in ReadStmtFromStream() 2989 S = new (Context) ForStmt(Empty); in ReadStmtFromStream() 2993 S = new (Context) GotoStmt(Empty); in ReadStmtFromStream() 2997 S = new (Context) IndirectGotoStmt(Empty); in ReadStmtFromStream() 3001 S = new (Context) ContinueStmt(Empty); in ReadStmtFromStream() 3005 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() 195 explicit ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts, in ObjCAtTryStmt() argument 197 : 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 | 97 CXXOperatorCallExpr(unsigned NumArgs, bool HasFPFeatures, EmptyShell Empty); 108 EmptyShell Empty); 184 CXXMemberCallExpr(unsigned NumArgs, bool HasFPFeatures, EmptyShell Empty); 194 bool HasFPFeatures, EmptyShell Empty); 243 CUDAKernelCallExpr(unsigned NumArgs, bool HasFPFeatures, EmptyShell Empty); 255 EmptyShell Empty); 297 CXXRewrittenBinaryOperator(EmptyShell Empty) in CXXRewrittenBinaryOperator() argument 298 : Expr(CXXRewrittenBinaryOperatorClass, Empty), SemanticForm() {} in CXXRewrittenBinaryOperator() 445 explicit CXXStaticCastExpr(EmptyShell Empty, unsigned PathSize, in CXXStaticCastExpr() argument 447 : CXXNamedCastExpr(CXXStaticCastExprClass, Empty, PathSize, in CXXStaticCastExpr() [all …]
|
H A D | Expr.h | 1054 FullExpr(StmtClass SC, EmptyShell Empty) in FullExpr() argument 1055 : Expr(SC, Empty) {} in FullExpr() 1111 ConstantExpr(EmptyShell Empty, ConstantResultStorageKind StorageKind); 1191 explicit OpaqueValueExpr(EmptyShell Empty) in OpaqueValueExpr() argument 1192 : Expr(OpaqueValueExprClass, Empty) {} in OpaqueValueExpr() 1301 explicit DeclRefExpr(EmptyShell Empty) : Expr(DeclRefExprClass, Empty) {} in DeclRefExpr() argument 1503 explicit IntegerLiteral(EmptyShell Empty) in IntegerLiteral() argument 1504 : Expr(IntegerLiteralClass, Empty) { } in IntegerLiteral() 1519 static IntegerLiteral *Create(const ASTContext &C, EmptyShell Empty); 1547 explicit FixedPointLiteral(EmptyShell Empty) in FixedPointLiteral() argument [all …]
|
H A D | Stmt.h | 1506 explicit DeclStmt(EmptyShell Empty) : Stmt(DeclStmtClass, Empty) {} 1578 explicit NullStmt(EmptyShell Empty) : Stmt(NullStmtClass, Empty) {} 1618 explicit CompoundStmt(EmptyShell Empty) : Stmt(CompoundStmtClass, Empty) {} 1856 explicit CaseStmt(EmptyShell Empty, bool CaseStmtIsGNURange) 1857 : SwitchCase(CaseStmtClass, Empty) { 1968 explicit DefaultStmt(EmptyShell Empty) 1969 : SwitchCase(DefaultStmtClass, Empty) {} 2049 explicit LabelStmt(EmptyShell Empty) : ValueStmt(LabelStmtClass, Empty) {} 2099 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs) 2100 : ValueStmt(AttributedStmtClass, Empty) { [all …]
|
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
|
H A D | DeclFriend.h | 93 FriendDecl(EmptyShell Empty, unsigned NumFriendTypeTPLists) in FriendDecl() argument 94 : Decl(Decl::Friend, Empty), UnsupportedFriend(false), in FriendDecl()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | MemoryRegionInfo.cpp | 28 bool Empty = Options.empty(); in format() local 31 OS << (Empty ? "no" : "-"); in format() 34 OS << (Empty ? "yes" : Options); in format() 37 OS << (Empty ? "don't know" : "?"); in format()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprCXX.cpp | 284 CXXNewExpr::CXXNewExpr(EmptyShell Empty, bool IsArray, in CXXNewExpr() argument 286 : 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() 630 EmptyShell Empty) { in CreateEmpty() argument 636 return new (Mem) CXXOperatorCallExpr(NumArgs, HasFPFeatures, Empty); in CreateEmpty() [all …]
|
H A D | StmtCXX.cpp | 33 CXXTryStmt *CXXTryStmt::Create(const ASTContext &C, EmptyShell Empty, in Create() argument 37 return new (Mem) CXXTryStmt(Empty, numHandlers); in Create()
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | EvaluationResult.h | 35 Empty, // Initial state. enumerator 47 ResultKind Kind = Empty; 87 bool empty() const { return Kind == Empty; } in empty()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | TypeHashing.h | 184 static codeview::LocallyHashedType Empty; 187 static codeview::LocallyHashedType getEmptyKey() { return Empty; } 204 static codeview::GloballyHashedType Empty; 207 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/Frontend/OpenMP/ |
H A D | OMP.cpp | 58 auto Empty = llvm::make_range(Leafs.end(), Leafs.end()); in getFirstCompositeRange() local 62 return Empty; in getFirstCompositeRange() 67 return Empty; in getFirstCompositeRange()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | FormatVariadic.h | 46 enum class ReplacementType { Empty, Format, Literal }; enumerator 57 ReplacementType Type = ReplacementType::Empty; 87 if (R.Type == ReplacementType::Empty) in format()
|
/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/Support/ |
H A D | Signals.cpp | 83 enum class Status { Empty, Initializing, Initialized, Executing }; 107 RunMe.Flag.store(CallbackAndCookie::Status::Empty); in RunSignalHandlers() 115 auto Expected = CallbackAndCookie::Status::Empty; in insertSignalHandler() 82 enum class Status { Empty, Initializing, Initialized, Executing }; global() enumerator
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | DenseSet.h | 207 detail::DenseSetEmpty Empty; in insert() local 208 return TheMap.try_emplace(V, Empty); in insert() 212 detail::DenseSetEmpty Empty; in insert() local 213 return TheMap.try_emplace(std::move(V), Empty); in insert()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | Mangled.cpp | 423 Empty = 0u, enumerator 449 case Empty: in Decode() 494 MangledEncoding encoding = Empty; in Encode() 510 case Empty: in Encode()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | MsgPackDocument.h | 78 bool isEmpty() const { return !KindAndDoc || getKind() == Type::Empty; } in isEmpty() 289 KindAndDocument KindAndDocs[size_t(Type::Empty) + 1]; 297 for (unsigned T = 0; T != unsigned(Type::Empty) + 1; ++T) in Document() 309 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/libucl/tests/basic/ |
H A D | 8.in | 15 /* Empty */
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
H A D | SampleProfileMatcher.h | 154 T Empty; in freeContainer() local 155 std::swap(C, Empty); in freeContainer()
|