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

  /external/llvm/include/llvm/
ValueSymbolTable.h 23 class SymbolTableListTraits;
36 friend class SymbolTableListTraits<Argument, Function>;
37 friend class SymbolTableListTraits<BasicBlock, Function>;
38 friend class SymbolTableListTraits<Instruction, BasicBlock>;
39 friend class SymbolTableListTraits<Function, Module>;
40 friend class SymbolTableListTraits<GlobalVariable, Module>;
41 friend class SymbolTableListTraits<GlobalAlias, Module>;
Argument.h 25 class SymbolTableListTraits;
36 friend class SymbolTableListTraits<Argument, Function>;
GlobalAlias.h 27 class SymbolTableListTraits;
30 friend class SymbolTableListTraits<GlobalAlias, Module>;
SymbolTableListTraits.h 1 //===-- llvm/SymbolTableListTraits.h - Traits for iplist --------*- C++ -*-===//
41 class SymbolTableListTraits : public ilist_default_traits<ValueSubClass> {
44 SymbolTableListTraits() {}
GlobalVariable.h 33 class SymbolTableListTraits;
36 friend class SymbolTableListTraits<GlobalVariable, Module>;
Metadata.h 31 class SymbolTableListTraits;
189 friend class SymbolTableListTraits<NamedMDNode, Module>;
BasicBlock.h 18 #include "llvm/SymbolTableListTraits.h"
31 : public SymbolTableListTraits<Instruction, BasicBlock> {
80 friend class SymbolTableListTraits<BasicBlock, Function>;
Function.h 35 : public SymbolTableListTraits<BasicBlock, Function> {
54 : public SymbolTableListTraits<Argument, Function> {
96 friend class SymbolTableListTraits<Function, Module>;
Module.h 36 : public SymbolTableListTraits<Function, Module> {
54 : public SymbolTableListTraits<GlobalVariable, Module> {
69 : public SymbolTableListTraits<GlobalAlias, Module> {
Instruction.h 28 class SymbolTableListTraits;
339 friend class SymbolTableListTraits<Instruction, BasicBlock>;
  /external/llvm/lib/VMCore/
SymbolTableListTraitsImpl.h 10 // This file implements the stickier parts of the SymbolTableListTraits class,
19 #include "llvm/SymbolTableListTraits.h"
29 void SymbolTableListTraits<ValueSubClass,ItemParentClass>
66 void SymbolTableListTraits<ValueSubClass,ItemParentClass>
77 void SymbolTableListTraits<ValueSubClass,ItemParentClass>
86 void SymbolTableListTraits<ValueSubClass,ItemParentClass>
Function.cpp 33 // Explicit instantiations of SymbolTableListTraits since some of the methods
35 template class llvm::SymbolTableListTraits<Argument, Function>;
36 template class llvm::SymbolTableListTraits<BasicBlock, Function>;
Module.cpp 35 // Explicit instantiations of SymbolTableListTraits since some of the methods
37 template class llvm::SymbolTableListTraits<Function, Module>;
38 template class llvm::SymbolTableListTraits<GlobalVariable, Module>;
39 template class llvm::SymbolTableListTraits<GlobalAlias, Module>;
BasicBlock.cpp 37 // Explicit instantiation of SymbolTableListTraits since some of the methods
39 template class llvm::SymbolTableListTraits<Instruction, BasicBlock>;

Completed in 958 milliseconds