Home
last modified time | relevance | path

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

12345678910

/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp2769 Stmt::EmptyShell Empty; in ReadStmtFromStream() local
2818 S = new (Context) NullStmt(Empty); in ReadStmtFromStream()
2834 S = new (Context) DefaultStmt(Empty); in ReadStmtFromStream()
2838 S = new (Context) LabelStmt(Empty); in ReadStmtFromStream()
2869 S = new (Context) DoStmt(Empty); in ReadStmtFromStream()
2873 S = new (Context) ForStmt(Empty); in ReadStmtFromStream()
2877 S = new (Context) GotoStmt(Empty); in ReadStmtFromStream()
2881 S = new (Context) IndirectGotoStmt(Empty); in ReadStmtFromStream()
2885 S = new (Context) ContinueStmt(Empty); in ReadStmtFromStream()
2889 S = new (Context) BreakStmt(Empty); in ReadStmtFromStream()
[all …]
H A DPCHContainerOperations.cpp46 llvm::SmallVector<char, 0> Empty; in HandleTranslationUnit() local
47 Buffer->Data = std::move(Empty); in HandleTranslationUnit()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.robertl/
H A Deb109.C10 struct Empty struct
13 Empty(int=0) {}
14 bool operator<(const Empty&) const { return true;}
16 inline ostream& operator<<(ostream& os, const Empty&) { return os;}
17 inline istream& operator>>(istream& is, Empty& ) { return is;}
67 Graph<std::string, Empty> V(true); // ERROR - no bool constructor in main()
/openbsd-src/gnu/llvm/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()
194 explicit ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts, in ObjCAtTryStmt() argument
196 : Stmt(ObjCAtTryStmtClass, Empty), NumCatchStmts(NumCatchStmts), in ObjCAtTryStmt()
316 explicit ObjCAtSynchronizedStmt(EmptyShell Empty) : in ObjCAtSynchronizedStmt() argument
317 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 DExprObjC.h61 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()
333 explicit ObjCDictionaryLiteral(EmptyShell Empty, unsigned NumElements, in ObjCDictionaryLiteral() argument
335 : Expr(ObjCDictionaryLiteralClass, Empty), NumElements(NumElements), in ObjCDictionaryLiteral()
[all …]
H A DExpr.h1025 FullExpr(StmtClass SC, EmptyShell Empty) in FullExpr() argument
1026 : Expr(SC, Empty) {} in FullExpr()
1084 ConstantExpr(EmptyShell Empty, ResultStorageKind StorageKind);
1164 explicit OpaqueValueExpr(EmptyShell Empty) in OpaqueValueExpr() argument
1165 : Expr(OpaqueValueExprClass, Empty) {} in OpaqueValueExpr()
1274 explicit DeclRefExpr(EmptyShell Empty) : Expr(DeclRefExprClass, Empty) {} in DeclRefExpr() argument
1509 explicit IntegerLiteral(EmptyShell Empty) in IntegerLiteral() argument
1510 : Expr(IntegerLiteralClass, Empty) { } in IntegerLiteral()
1525 static IntegerLiteral *Create(const ASTContext &C, EmptyShell Empty);
1553 explicit FixedPointLiteral(EmptyShell Empty) in FixedPointLiteral() argument
[all …]
H A DStmt.h1320 explicit DeclStmt(EmptyShell Empty) : Stmt(DeclStmtClass, Empty) {} in DeclStmt() argument
1392 explicit NullStmt(EmptyShell Empty) : Stmt(NullStmtClass, Empty) {} in NullStmt() argument
1432 explicit CompoundStmt(EmptyShell Empty) : Stmt(CompoundStmtClass, Empty) {} in CompoundStmt() argument
1663 explicit CaseStmt(EmptyShell Empty, bool CaseStmtIsGNURange) in CaseStmt() argument
1664 : SwitchCase(CaseStmtClass, Empty) { in CaseStmt()
1775 explicit DefaultStmt(EmptyShell Empty) in DefaultStmt() argument
1776 : SwitchCase(DefaultStmtClass, Empty) {} in DefaultStmt()
1856 explicit LabelStmt(EmptyShell Empty) : ValueStmt(LabelStmtClass, Empty) {} in LabelStmt() argument
1906 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs) in AttributedStmt() argument
1907 : ValueStmt(AttributedStmtClass, Empty) { in AttributedStmt()
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/usr.bin/perl/dist/Thread-Queue/t/
H A D01_basic.t55 is($q->pending(), 0, 'Empty queue');
62 is($q->pending(), 0, 'Empty queue');
72 is($q->pending(), 0, 'Empty queue');
78 is($q->pending(), 0, 'Empty queue');
103 is($q->pending(), 0, 'Empty queue');
122 is($q->pending(), 0, 'Empty queue');
128 is($q->pending(), 0, 'Empty queue');
H A D10_timed.t44 is($q->pending(), 0, 'Empty queue');
50 is($q->pending(), 0, 'Empty queue');
55 is($q->pending(), 0, 'Empty queue in thread');
58 is($q->pending(), 0, 'Empty queue in thread');
64 is($q->pending(), 0, 'Empty queue');
H A D06_insert.t79 is_deeply(\@x, [1..3], 'Empty queue insert');
85 is_deeply(\@x, [1..3], 'Empty queue insert');
91 is_deeply(\@x, [1..3], 'Empty queue insert');
100 is_deeply(\@x, [1,'foo',2,3], 'Empty queue insert');
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DRDFLiveness.h64 LiveMapType(const PhysicalRegisterInfo &pri) : Empty(pri) {}
67 return Map.emplace(B, Empty).first->second;
71 RegisterAggr Empty;
81 MDF(g.getDF()), LiveMap(g.getPRI()), Empty(), NoRegs(g.getPRI()) {}
113 return F == RealUseMap.end() ? Empty : F->second;
131 const RefMap Empty;
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DExprConcepts.cpp58 ConceptSpecializationExpr::ConceptSpecializationExpr(EmptyShell Empty) in ConceptSpecializationExpr() argument
59 : Expr(ConceptSpecializationExprClass, Empty) {} in ConceptSpecializationExpr()
169 RequiresExpr::RequiresExpr(ASTContext &C, EmptyShell Empty, in RequiresExpr() argument
172 : Expr(RequiresExprClass, Empty), NumLocalParameters(NumLocalParameters), in RequiresExpr()
190 RequiresExpr::Create(ASTContext &C, EmptyShell Empty, in Create() argument
196 return new (Mem) RequiresExpr(C, Empty, NumLocalParameters, NumRequirements); in Create()
H A DExprCXX.cpp235 CXXNewExpr::CXXNewExpr(EmptyShell Empty, bool IsArray, in CXXNewExpr() argument
237 : Expr(CXXNewExprClass, Empty) { in CXXNewExpr()
364 UnresolvedLookupExpr::UnresolvedLookupExpr(EmptyShell Empty, in UnresolvedLookupExpr() argument
367 : OverloadExpr(UnresolvedLookupExprClass, Empty, NumResults, in UnresolvedLookupExpr()
452 OverloadExpr::OverloadExpr(StmtClass SC, EmptyShell Empty, unsigned NumResults, in OverloadExpr() argument
454 : Expr(SC, Empty) { in OverloadExpr()
554 EmptyShell Empty) in CXXOperatorCallExpr() argument
556 HasFPFeatures, Empty) {} in CXXOperatorCallExpr()
577 EmptyShell Empty) { in CreateEmpty() argument
583 return new (Mem) CXXOperatorCallExpr(NumArgs, HasFPFeatures, Empty); in CreateEmpty()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_ilist_test.cpp25 TEST(IList, Empty) { in TEST() argument
29 EXPECT_TRUE(list.Empty()); in TEST()
43 EXPECT_FALSE(list.Empty()); in TEST()
52 EXPECT_TRUE(list.Empty()); in TEST()
81 EXPECT_TRUE(list.Empty()); in TEST()
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-local/yaml-roundtrip/
H A Dsequence.tml1 === Empty sequence
59 # Empty Values and Premature EOF
72 # Empty Quote Line
/openbsd-src/regress/usr.bin/mandoc/man/IP/
H A Dempty.out_ascii11 Empty IP is deleted:
17 Empty IP is deleted, RS does not cause additional spacing:
H A Dempty.out_html5 <p class="Pp">Empty IP is deleted:</p>
12 <p class="Pp">Empty IP is deleted, RS does not cause additional spacing:</p>
/openbsd-src/gnu/llvm/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; }
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DProfileList.h42 const bool Empty; variable
51 bool isEmpty() const { return Empty; } in isEmpty()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/abi/
H A Dempty4.C9 struct Empty {}; struct
11 struct Inter : Empty {};
/openbsd-src/gnu/usr.bin/perl/t/mro/
H A Disarev.t105 undef *Empty::;
108 {package Zilch::Empty} # autovivify it
109 *Empty:: = *Zilch::;
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DMangled.cpp404 Empty = 0u, enumerator
430 case Empty: in Decode()
475 MangledEncoding encoding = Empty; in Encode()
491 case Empty: in Encode()

12345678910