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

  /external/chromium_org/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/Support/
Recycler.h 46 mutable RecyclerStruct Sentinel;
48 return &Sentinel;
  /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;
  /external/llvm/include/llvm/IR/
BasicBlock.h 36 /// The sentinel is relative to this instance, so we use a non-static
44 // sentinel. Dereferencing the sentinel is forbidden (save the
46 return static_cast<Instruction*>(&Sentinel);
54 mutable ilist_half_node<Instruction> Sentinel;
Function.h 41 return static_cast<BasicBlock*>(&Sentinel);
51 mutable ilist_half_node<BasicBlock> Sentinel;
58 return static_cast<Argument*>(&Sentinel);
68 mutable ilist_half_node<Argument> Sentinel;
Module.h 44 return static_cast<Function*>(&Sentinel);
53 mutable ilist_node<Function> Sentinel;
60 return static_cast<GlobalVariable*>(&Sentinel);
68 mutable ilist_node<GlobalVariable> Sentinel;
75 return static_cast<GlobalAlias*>(&Sentinel);
83 mutable ilist_node<GlobalAlias> Sentinel;
91 return static_cast<NamedMDNode*>(&Sentinel);
101 mutable ilist_node<NamedMDNode> 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();
97 private static boolean enqueueSentinelReference(Sentinel sentinel) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 47 mutable ilist_half_node<MachineBasicBlock> Sentinel;
50 return static_cast<MachineBasicBlock*>(&Sentinel);
SelectionDAG.h 81 mutable ilist_half_node<SDNode> Sentinel;
84 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/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 148 return &Sentinel;
157 mutable Token Sentinel;
    [all...]

Completed in 154 milliseconds