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

  /libcore/luni/src/main/java/java/lang/ref/
FinalizerReference.java 86 Sentinel sentinel = new Sentinel(); local
87 enqueueSentinelReference(sentinel);
88 sentinel.awaitFinalization();
91 private static void enqueueSentinelReference(Sentinel sentinel) {
97 if (r.referent == sentinel) {
98 FinalizerReference<Sentinel> sentinelReference = (FinalizerReference<Sentinel>) r
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
SentinelLinkedList.h 42 enum SentinelTag { Sentinel };
62 : m_headSentinel(Sentinel)
63 , m_tailSentinel(Sentinel)
  /external/llvm/include/llvm/
Module.h 41 return static_cast<Function*>(&Sentinel);
50 mutable ilist_node<Function> Sentinel;
57 return static_cast<GlobalVariable*>(&Sentinel);
65 mutable ilist_node<GlobalVariable> Sentinel;
72 return static_cast<GlobalAlias*>(&Sentinel);
80 mutable ilist_node<GlobalAlias> Sentinel;
88 return static_cast<NamedMDNode*>(&Sentinel);
98 mutable ilist_node<NamedMDNode> Sentinel;
Function.h 40 return static_cast<BasicBlock*>(&Sentinel);
50 mutable ilist_half_node<BasicBlock> Sentinel;
57 return static_cast<Argument*>(&Sentinel);
67 mutable ilist_half_node<Argument> Sentinel;
BasicBlock.h 34 // The sentinel is relative to this instance, so we use a non-static
42 // NodeTy, which becomes the sentinel. Dereferencing the sentinel is
45 return static_cast<Instruction*>(&Sentinel);
53 mutable ilist_half_node<Instruction> Sentinel;
  /external/llvm/include/llvm/Support/
Recycler.h 45 mutable RecyclerStruct Sentinel;
47 return &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;
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 265 return static_cast<clang::ento::BugReport *>(&Sentinel);
276 mutable ilist_half_node<clang::ento::BugReport> Sentinel;
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 46 mutable ilist_half_node<MachineBasicBlock> Sentinel;
49 return static_cast<MachineBasicBlock*>(&Sentinel);
SlotIndexes.h 60 mutable ilist_half_node<IndexListEntry> Sentinel;
63 return static_cast<IndexListEntry*>(&Sentinel);
MachineBasicBlock.h 36 mutable ilist_half_node<MachineInstr> Sentinel;
44 return static_cast<MachineInstr*>(&Sentinel);
SelectionDAG.h 42 mutable ilist_half_node<SDNode> Sentinel;
45 return static_cast<SDNode*>(&Sentinel);
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
mock.py 58 'sentinel',
72 class Sentinel(object):
80 sentinel = Sentinel() variable
82 DEFAULT = sentinel.DEFAULT
  /external/llvm/include/llvm/ADT/
ilist.h 69 /// that provides default sentinel implementations for common operations.
71 /// ilist_sentinel_traits implements a lazy dynamic sentinel allocation
72 /// strategy. The sentinel is stored in the prev field of ilist's Head.
76 /// createSentinel - create the dynamic sentinel
79 /// destroySentinel - deallocate the dynamic sentinel
88 /// initialized or assigned a fresh sentinel
89 /// @return the sentinel
100 /// noteHead - stash the sentinel into its default location
101 static void noteHead(NodeTy *NewHead, NodeTy *Sentinel) {
102 ilist_traits<NodeTy>::setPrev(NewHead, Sentinel);
    [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 140 return &Sentinel;
149 mutable Token Sentinel;
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp     [all...]

Completed in 908 milliseconds