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

  /external/llvm/include/llvm/Support/
Recycler.h 46 mutable RecyclerStruct Sentinel;
48 return &Sentinel;
  /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/v8/test/mjsunit/es6/
generators-iteration.js 92 function Sentinel() {}
93 assertThrows(function () { iter.throw(new Sentinel); }, Sentinel);
451 function Sentinel() {}
462 assertThrows(function() { iter.throw(new Sentinel); }, Sentinel);
469 assertThrows(function() { iter.throw(new Sentinel); }, Sentinel);
477 var exn = new Sentinel;
487 var exn = new Sentinel;
    [all...]
  /external/llvm/include/llvm/Analysis/
IVUsers.h 96 // The sentinel is relative to this instance, so we use a non-static
104 // NodeTy, which becomes the sentinel. Dereferencing the sentinel is
107 return static_cast<IVStrideUse*>(&Sentinel);
116 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 49 mutable ilist_half_node<MachineBasicBlock> Sentinel;
52 return static_cast<MachineBasicBlock*>(&Sentinel);
SelectionDAG.h 85 mutable ilist_half_node<SDNode> Sentinel;
88 return static_cast<SDNode*>(&Sentinel);
    [all...]
SlotIndexes.h 75 mutable ilist_half_node<IndexListEntry> Sentinel;
78 return static_cast<IndexListEntry*>(&Sentinel);
MachineBasicBlock.h 36 mutable ilist_half_node<MachineInstr> Sentinel;
44 return static_cast<MachineInstr*>(&Sentinel);
  /external/llvm/include/llvm/IR/
BasicBlock.h 46 mutable ilist_half_node<BasicBlock> Sentinel;
332 return static_cast<BasicBlock*>(&Sentinel);
Function.h 38 return static_cast<Argument*>(&Sentinel);
48 mutable ilist_half_node<Argument> Sentinel;
Instruction.h 38 /// The sentinel is relative to this instance, so we use a non-static
48 mutable ilist_half_node<Instruction> Sentinel;
521 // sentinel. Dereferencing the sentinel is forbidden (save the
523 return static_cast<Instruction *>(&Sentinel);
Module.h 43 return static_cast<Function*>(&Sentinel);
52 mutable ilist_node<Function> Sentinel;
59 return static_cast<GlobalVariable*>(&Sentinel);
67 mutable ilist_node<GlobalVariable> Sentinel;
74 return static_cast<GlobalAlias*>(&Sentinel);
82 mutable ilist_node<GlobalAlias> Sentinel;
90 return static_cast<NamedMDNode*>(&Sentinel);
100 mutable ilist_node<NamedMDNode> Sentinel;
  /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/lib/Support/
YAMLParser.cpp 149 return &Sentinel;
158 mutable Token Sentinel;
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 293 : CurrentEndOffset(0), Sentinel(0), Last(&Sentinel) {
312 return getNextEntry(&Sentinel);
326 MapTy::MapEntryTy Sentinel, *Last;
    [all...]

Completed in 521 milliseconds