/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/range/ |
H A D | primitives.d | 238 @property bool empty() { return _front >= 3; } in empty() function 454 alias C = Select!(wcCond, wchar, char); variable 576 @property bool empty() const { return end; } in empty() function 591 static struct PutC(C) in PutC() argument 596 static struct PutS(C) in PutS() argument 601 static struct PutSS(C) in PutSS() argument 653 enum empty = false; member
|
H A D | package.d | 568 enum bool empty = false; member 572 @property bool empty() in empty() function 959 enum bool empty = false; member 963 @property bool empty() in empty() function 1430 enum bool empty = false; member 1432 @property bool empty() in empty() function 1684 @property bool empty() in empty() function 1963 @property bool empty() in empty() function 2339 @property bool empty() const { return !_n; } in empty() function 2438 @property bool empty() { return _arr.empty; } in empty() function [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/range/ |
H A D | primitives.d | 246 @property bool empty() { return _front >= 3; } in empty() function 548 alias C = Select!(wcCond, wchar, char); variable 716 @property bool empty() const { return end; } in empty() function 731 static struct PutC(C) in PutC() argument 736 static struct PutS(C) in PutS() argument 741 static struct PutSS(C) in PutSS() argument 793 enum empty = false; member
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/ |
H A D | setops.d | 155 auto C = [ 4, 5, 6 ]; variable 275 enum empty = false; in FwdRangeWrapper() local 318 enum empty = false; in InpRangeWrapper() local 339 auto C = [ 4, 5, 6 ]; variable 374 bool empty = true; member
|
H A D | iteration.d | 270 enum empty = false; member 324 enum empty = false; in _Cache() local 563 enum bool empty = false; in MapResult() local 824 enum empty = false; member 1357 enum bool empty = false; in FilterResult() local 1693 enum bool empty = false; // Propagate infiniteness. variable 1698 @property bool empty() in empty() function 1799 const C[] a4 = [new const C()]; variable 1861 @property bool empty() in empty() function 1928 @property bool empty() { return r.empty && !openChunk; } in empty() function [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/ |
H A D | setops.d | 157 auto C = [ 4, 5, 6 ]; variable 277 enum empty = false; in FwdRangeWrapper() local 320 enum empty = false; in InpRangeWrapper() local 341 auto C = [ 4, 5, 6 ]; variable 376 bool empty = true; member 519 auto C = [ "x", "y", "z" ]; variable 539 auto C = cartesianProduct(A[], A[], A[]); variable 1068 @property bool empty() { return r1.empty; } in empty() function 1170 @property bool empty() in empty() function 1383 @property bool empty() { return r1.empty && r2.empty; } in empty() function
|
H A D | iteration.d | 303 enum empty = false; member 349 enum empty = false; in _Cache() local 581 enum bool empty = false; in MapResult() local 1170 enum bool empty = false; in FilterResult() local 1482 enum bool empty = false; // Propagate infiniteness. variable 1487 @property bool empty() in empty() function 1590 const C[] a4 = [new const C()]; variable 1618 @property bool empty() in empty() function 1676 @property bool empty() { return r.empty; } in empty() function 1751 @property bool empty() { return groupNum == size_t.max; } in empty() function [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | ASTUnresolvedSet.h | 44 ASTUnresolvedSet(ASTContext &C, unsigned N) : Decls(C, N) {} in ASTUnresolvedSet() 55 void addDecl(ASTContext &C, NamedDecl *D, AccessSpecifier AS) { in addDecl() 76 bool empty() const { return Decls.empty(); } in empty() function 79 void reserve(ASTContext &C, unsigned N) { in reserve() 83 void append(ASTContext &C, iterator I, iterator E) { in append() 99 ASTUnresolvedSet &get(ASTContext &C) const { in get() 105 void reserve(ASTContext &C, unsigned N) { Impl.reserve(C, N); } in reserve() 107 void addLazyDecl(ASTContext &C, uintptr_t ID, AccessSpecifier AS) { in addLazyDecl()
|
H A D | ASTVector.h | 60 ASTVector(const ASTContext &C, unsigned N) : Capacity(nullptr, false) { in ASTVector() 108 bool empty() const { return Begin == End; } in empty() function 162 void push_back(const_reference Elt, const ASTContext &C) { in push_back() 173 void reserve(const ASTContext &C, unsigned N) { in reserve() 184 void append(const ASTContext &C, in_iter in_start, in_iter in_end) { in append() 202 void append(const ASTContext &C, size_type NumInputs, const T &Elt) { in append() 219 iterator insert(const ASTContext &C, iterator I, const T &Elt) { in insert() 240 iterator insert(const ASTContext &C, iterator I, size_type NumToInsert, in insert() 289 iterator insert(const ASTContext &C, iterator I, ItTy From, ItTy To) { in insert() 341 void resize(const ASTContext &C, unsigned N, const T &NV) { in resize() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/ |
H A D | StringView.h | 82 bool consumeFront(char C) { in consumeFront() 96 bool startsWith(char C) const { return !empty() && *begin() == C; } in startsWith() 109 bool empty() const { return First == Last; } in empty() function
|
H A D | RustDemangle.h | 28 bool empty() const { return Name.empty(); } in empty() function 103 void print(char C) { in print()
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
H A D | SequenceToOffsetTable.h | 30 static inline void printStrLitEscChar(raw_ostream &OS, char C) { in printStrLitEscChar() 71 static inline void printChar(raw_ostream &OS, char C) { in printChar() 139 bool empty() const { return Seqs.empty(); } in empty() function 187 for (auto C : I.first) { in emitStringLiteralDef() local
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | string.d | 2553 enum bool empty = false; member 2557 @property bool empty() in empty() function 2909 alias C = Unqual!(ElementEncodingType!(typeof(str))); variable 3174 alias C = ElementEncodingType!Range; variable 3244 alias C = dchar; // because strings auto-decode variable 3246 alias C = C1; // and ranges do not variable 3397 alias C = dchar; // because strings auto-decode variable 3399 alias C = C1; // and ranges do not variable 3497 alias C = Unqual!(ElementEncodingType!Range); variable 3668 alias C = Unqual!(ElementEncodingType!Range); variable [all …]
|
H A D | utf.d | 1540 @property bool empty() { return idx == s.length; } in empty() function 1657 @property bool empty() { return idx == s.length; } in empty() function 1721 @property bool empty() { return idx == s.length; } in empty() function 2896 alias C = Unqual!(ElementEncodingType!S); variable 3318 @property bool empty() const { return str.length == 0; } in empty() function 3528 bool empty() pure nothrow @nogc { return data.empty; } in empty() function 3544 bool empty() pure nothrow @nogc { return data.empty; } in empty() function 3560 bool empty() pure nothrow @nogc { return data.empty; } in empty() function 3575 bool empty() pure nothrow @nogc { return data.empty; } in empty() function 3594 bool empty() pure nothrow @nogc { return data.empty; } in empty() function [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/ |
H A D | ValueList.h | 54 BitcodeReaderValueList(LLVMContext &C, size_t RefsUpperBound) in BitcodeReaderValueList() 90 bool empty() const { return ValuePtrs.empty(); } in empty() function
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Support/ |
H A D | BumpVector.h | 66 explicit BumpVector(BumpVectorContext &C, unsigned N) { in BumpVector() 105 bool empty() const { return Begin == End; } in empty() function 159 void push_back(const_reference Elt, BumpVectorContext &C) { in push_back() 173 BumpVectorContext &C) { in insert() 188 void reserve(BumpVectorContext &C, unsigned N) { in reserve() 225 void BumpVector<T>::grow(BumpVectorContext &C, size_t MinSize) { in grow()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
H A D | string.d | 269 struct C struct 2778 enum bool empty = false; member 2782 @property bool empty() in empty() function 3271 alias C = Unqual!(ElementEncodingType!(typeof(str))); variable 3717 alias C = ElementEncodingType!Range; variable 3787 alias C = dchar; // because strings auto-decode variable 3789 alias C = C1; // and ranges do not variable 3938 alias C = dchar; // because strings auto-decode variable 3940 alias C = C1; // and ranges do not variable 4038 alias C = Unqual!(ElementEncodingType!Range); variable [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/ |
H A D | CloneDetection.h | 107 bool empty() const { return size() == 0; } in empty() function 185 static void constrainClones(std::vector<CloneGroup> &CloneGroups, T C) { in constrainClones() 195 static void constrainClones(std::vector<CloneGroup> &CloneGroups, T1 C, in constrainClones() 213 for (const auto &C : Sequences) { in findClones() local
|
H A D | CFG.h | 158 explicit CFGConstructor(CXXConstructExpr *CE, const ConstructionContext *C) in CFGConstructor() 197 explicit CFGCXXRecordTypedCall(Expr *E, const ConstructionContext *C) in CFGCXXRecordTypedCall() 583 ElementList(BumpVectorContext &C) : Impl(C, 4) {} in ElementList() 591 void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); } in push_back() 594 BumpVectorContext &C) { in insert() 616 bool empty() const { return Impl.empty(); } in empty() function 860 explicit CFGBlock(unsigned blockid, BumpVectorContext &C, CFG *parent) in CFGBlock() 918 bool empty() const { return Elements.empty(); } in empty() function 1095 void appendStmt(Stmt *statement, BumpVectorContext &C) { in appendStmt() 1100 BumpVectorContext &C) { in appendConstructor() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
H A D | ConstantPools.cpp | 41 const MCConstantExpr *C = dyn_cast<MCConstantExpr>(Value); in addEntry() local 57 bool ConstantPool::empty() { return Entries.empty(); } in empty() function in ConstantPool
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
H A D | LazyCallGraph.h | 283 bool empty() { in empty() function 503 bool isChildOf(const SCC &C) const { return C.isParentOf(*this); } in isChildOf() 509 bool isDescendantOf(const SCC &C) const { return C.isAncestorOf(*this); } in isDescendantOf() 612 iterator find(SCC &C) const { in find() 966 if (SCC *C = lookupSCC(N)) in lookupRefSCC() local 1092 Constant *C = Worklist.pop_back_val(); in visitReferences() local
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/ |
H A D | package.d | 379 const(C)[] pat; variable 622 @property bool empty() const { return _nMatch == 0 || _f >= _b; } in foreach() function 827 @property bool empty() const { return _captures._nMatch == 0; } in length() function 1593 @property bool empty() function 1712 @property bool empty(){ return r.empty; } function
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
H A D | StringRef.h | 152 bool empty() const { return Length == 0; } in empty() function 466 bool contains(char C) const { return find_first_of(C) != npos; } in contains() 478 bool contains_lower(char C) const { return find_lower(C) != npos; } in contains_lower() 486 size_t count(char C) const { in count()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
H A D | X86DomainReassignment.cpp | 331 bool empty() const { return Edges.empty(); } in empty() function in __anoncbde8b740111::Closure 429 void X86DomainReassignment::visitRegister(Closure &C, Register Reg, in visitRegister() 452 void X86DomainReassignment::encloseInstr(Closure &C, MachineInstr *MI) { in encloseInstr() 477 double X86DomainReassignment::calculateCost(const Closure &C, in calculateCost() 488 bool X86DomainReassignment::isReassignmentProfitable(const Closure &C, in isReassignmentProfitable() 493 void X86DomainReassignment::reassign(const Closure &C, RegDomain Domain) const { in reassign() argument 543 void X86DomainReassignment::buildClosure(Closure &C, Register Reg) { in buildClosure() 763 Closure C(ClosureID++, {MaskDomain}); in runOnMachineFunction() local
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | RawCommentList.cpp | 93 char C = Buffer[I - 1]; in onlyWhitespaceOnLineBefore() local 337 bool RawCommentList::empty() const { return OrderedComments.empty(); } in empty() function in RawCommentList 339 unsigned RawCommentList::getCommentBeginLine(RawComment *C, FileID File, in getCommentBeginLine()
|