HomeSort by: relevance | last modified time | path
    Searched refs:isSentinel (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ilist_node_base.h 45 bool isSentinel() const { return PrevAndSentinel.getInt(); }
46 bool isKnownSentinel() const { return isSentinel(); }
ilist_node.h 99 bool isSentinel() const {
101 "Use ilist_sentinel_tracking<true> to enable isSentinel()");
102 return node_base_type::isSentinel();
124 /// isSentinel() function. The same option must be passed to the intrusive
ilist_iterator.h 175 bool isEnd() const { return NodePtr ? NodePtr->isSentinel() : false; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugRnglists.h 41 bool isSentinel() const { return EntryKind == dwarf::DW_RLE_end_of_list; }
DWARFListTable.h 242 if (Entry.isSentinel())
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 101 assert((isSentinel() || canHandle(I)) && "Inst can't be handled!");
104 bool isSentinel() const {
331 if (LHS.isSentinel() || RHS.isSentinel())
432 assert(!Result || (LHS.isSentinel() && LHS.Inst == RHS.Inst) ||
449 assert((isSentinel() || canHandle(I)) && "Inst can't be handled!");
452 bool isSentinel() const {
499 if (LHS.isSentinel() || RHS.isSentinel())
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFAcceleratorTable.cpp 425 static bool isSentinel(const DWARFDebugNames::AttributeEncoding &AE) {
433 static bool isSentinel(const DWARFDebugNames::Abbrev &Abbr) {
464 if (isSentinel(*AttrEncOr))
520 if (isSentinel(*AbbrevOr))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
Local.cpp 1207 static bool isSentinel(PHINode *PN) {
1235 if (isSentinel(LHS) || isSentinel(RHS))
1244 assert(!Result || (isSentinel(LHS) && LHS == RHS) ||

Completed in 22 milliseconds