HomeSort by relevance Sort by last modified time
    Searched defs:Sentinel (Results 1 - 13 of 13) sorted by null

  /external/llvm/tools/dsymutil/
NonRelocatableStringpool.h 30 : CurrentEndOffset(0), Sentinel(0), Last(&Sentinel) {
49 return getNextEntry(&Sentinel);
63 MapTy::MapEntryTy Sentinel, *Last;
  /external/v8/test/mjsunit/es6/
generators-iteration.js 89 function Sentinel() {}
90 assertThrows(function () { iter.throw(new Sentinel); }, Sentinel);
414 function Sentinel() {}
425 assertThrows(function() { iter.throw(new Sentinel); }, Sentinel);
432 assertThrows(function() { iter.throw(new Sentinel); }, Sentinel);
440 var exn = new Sentinel;
450 var exn = new Sentinel;
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
SymbolRewriter.h 116 mutable ilist_half_node<SymbolRewriter::RewriteDescriptor> Sentinel;
120 // the list. Because the sentinel is relative to this instance, use a
128 // NodeTy, which becomes the sentinel. Dereferencing the sentinel is
131 return static_cast<SymbolRewriter::RewriteDescriptor *>(&Sentinel);
  /external/llvm/include/llvm/Analysis/
IVUsers.h 97 // The sentinel is relative to this instance, so we use a non-static
105 // NodeTy, which becomes the sentinel. Dereferencing the sentinel is
108 return static_cast<IVStrideUse*>(&Sentinel);
117 mutable ilist_node<IVStrideUse> Sentinel;
  /libcore/luni/src/main/java/java/lang/ref/
FinalizerReference.java 86 // Alloate a new sentinel, this creates a FinalizerReference.
87 Sentinel sentinel; local
88 // Keep looping until we safely enqueue our sentinel FinalizerReference.
92 sentinel = new Sentinel();
93 } while (!enqueueSentinelReference(sentinel));
94 sentinel.awaitFinalization(timeout);
97 private static boolean enqueueSentinelReference(Sentinel sentinel) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 51 mutable ilist_half_node<MachineBasicBlock> Sentinel;
54 return static_cast<MachineBasicBlock*>(&Sentinel);
SlotIndexes.h 75 mutable ilist_half_node<IndexListEntry> Sentinel;
78 return static_cast<IndexListEntry*>(&Sentinel);
MachineBasicBlock.h 42 mutable ilist_half_node<MachineInstr> Sentinel;
50 return static_cast<MachineInstr*>(&Sentinel);
    [all...]
SelectionDAG.h 85 mutable ilist_half_node<SDNode> Sentinel;
88 return static_cast<SDNode*>(&Sentinel);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 321 return static_cast<clang::ento::BugReport *>(&Sentinel);
332 mutable ilist_half_node<clang::ento::BugReport> Sentinel;
  /external/llvm/include/llvm/IR/
Module.h 43 return static_cast<NamedMDNode*>(&Sentinel);
54 mutable ilist_node<NamedMDNode> Sentinel;
  /external/llvm/include/llvm/ADT/
ilist.h 70 /// that provides default sentinel implementations for common operations.
72 /// ilist_sentinel_traits implements a lazy dynamic sentinel allocation
73 /// strategy. The sentinel is stored in the prev field of ilist's Head.
77 /// createSentinel - create the dynamic sentinel
80 /// destroySentinel - deallocate the dynamic sentinel
89 /// initialized or assigned a fresh sentinel
90 /// @return the sentinel
101 /// noteHead - stash the sentinel into its default location
102 static void noteHead(NodeTy *NewHead, NodeTy *Sentinel) {
103 ilist_traits<NodeTy>::setPrev(NewHead, Sentinel);
    [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 154 return &Sentinel;
163 mutable Token Sentinel;
    [all...]

Completed in 334 milliseconds