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

  /frameworks/compile/mclinker/include/mcld/Support/
GCFactoryListTraits.h 39 DataType *createSentinel() const
45 { return createSentinel(); }
48 { return createSentinel(); }
  /external/llvm/include/llvm/IR/
Module.h 38 // createSentinel is used to get hold of the node that marks the end of the
40 Function *createSentinel() const {
45 Function *provideInitialHead() const { return createSentinel(); }
46 Function *ensureHead(Function*) const { return createSentinel(); }
55 // createSentinel is used to create a node that marks the end of the list.
56 GlobalVariable *createSentinel() const {
61 GlobalVariable *provideInitialHead() const { return createSentinel(); }
62 GlobalVariable *ensureHead(GlobalVariable*) const { return createSentinel(); }
70 // createSentinel is used to create a node that marks the end of the list.
71 GlobalAlias *createSentinel() const
    [all...]
BasicBlock.h 38 Instruction *createSentinel() const {
50 Instruction *provideInitialHead() const { return createSentinel(); }
51 Instruction *ensureHead(Instruction*) const { return createSentinel(); }
Function.h 37 // createSentinel is used to get hold of the node that marks the end of the
39 BasicBlock *createSentinel() const {
44 BasicBlock *provideInitialHead() const { return createSentinel(); }
45 BasicBlock *ensureHead(BasicBlock*) const { return createSentinel(); }
56 Argument *createSentinel() const {
61 Argument *provideInitialHead() const { return createSentinel(); }
62 Argument *ensureHead(Argument*) const { return createSentinel(); }
  /external/llvm/include/llvm/Support/
Recycler.h 48 RecyclerStruct *createSentinel() const {
53 RecyclerStruct *provideInitialHead() const { return createSentinel(); }
54 RecyclerStruct *ensureHead(RecyclerStruct*) const { return createSentinel(); }
  /external/llvm/include/llvm/Analysis/
IVUsers.h 94 // createSentinel is used to get hold of a node that marks the end of
98 IVStrideUse *createSentinel() const {
111 IVStrideUse *provideInitialHead() const { return createSentinel(); }
112 IVStrideUse *ensureHead(IVStrideUse*) const { return createSentinel(); }
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 49 MachineBasicBlock *createSentinel() const {
54 MachineBasicBlock *provideInitialHead() const { return createSentinel(); }
56 return createSentinel();
MachineBasicBlock.h 43 MachineInstr *createSentinel() const {
48 MachineInstr *provideInitialHead() const { return createSentinel(); }
49 MachineInstr *ensureHead(MachineInstr*) const { return createSentinel(); }
SlotIndexes.h 77 IndexListEntry *createSentinel() const {
82 IndexListEntry *provideInitialHead() const { return createSentinel(); }
83 IndexListEntry *ensureHead(IndexListEntry*) const { return createSentinel(); }
SelectionDAG.h 45 SDNode *createSentinel() const {
50 SDNode *provideInitialHead() const { return createSentinel(); }
51 SDNode *ensureHead(SDNode*) const { return createSentinel(); }
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 320 clang::ento::BugReport *createSentinel() const {
326 return createSentinel();
329 return createSentinel();
  /external/llvm/include/llvm/ADT/
SparseBitVector.h 270 Element *createSentinel() const { return static_cast<Element *>(&Sentinel); }
273 Element *provideInitialHead() const { return createSentinel(); }
274 Element *ensureHead(Element *) const { return createSentinel(); }
ilist.h 25 // created (using ilist_traits<>::createSentinel()). This tail node is
77 /// createSentinel - create the dynamic sentinel
78 static NodeTy *createSentinel() { return new NodeTy(); }
93 Head = ilist_traits<NodeTy>::createSentinel();
302 /// sentinel is created by the Traits::createSentinel method and is a link
  /external/llvm/lib/Support/
YAMLParser.cpp 138 Token *createSentinel() const {
143 Token *provideInitialHead() const { return createSentinel(); }
144 Token *ensureHead(Token*) const { return createSentinel(); }
    [all...]

Completed in 1385 milliseconds