Home
last modified time | relevance | path

Searched refs:Empty (Results 1 – 25 of 174) sorted by relevance

1234567

/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2883 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 DPCHContainerOperations.cpp44 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 DStmtObjC.h31 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 DExprCXX.h97 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 DExpr.h1054 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 DStmt.h1506 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 DStmtCXX.h40 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 DDeclFriend.h93 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 DMemoryRegionInfo.cpp28 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 DExprCXX.cpp284 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 DStmtCXX.cpp33 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 DEvaluationResult.h35 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 DTypeHashing.h184 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 DProfileList.h42 const bool Empty; variable
51 bool isEmpty() const { return Empty; } in isEmpty()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFLiveness.h64 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 DOMP.cpp58 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 DFormatVariadic.h46 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 DTypeHashing.cpp17 LocallyHashedType DenseMapInfo<LocallyHashedType>::Empty{0, {}};
25 GloballyHashedType DenseMapInfo<GloballyHashedType>::Empty{EmptyHash};
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSignals.cpp83 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 DDenseSet.h207 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 DMangled.cpp423 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 DMsgPackDocument.h78 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 Darm,pl172.txt23 - 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 D8.in15 /* Empty */
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DSampleProfileMatcher.h154 T Empty; in freeContainer() local
155 std::swap(C, Empty); in freeContainer()

1234567