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

  /external/llvm/include/llvm/IR/
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;
39 friend class SymbolTableListTraits<Argument, Function>;
SymbolTableListTraits.h 1 //===-- llvm/SymbolTableListTraits.h - Traits for iplist --------*- C++ -*-===//
41 class SymbolTableListTraits : public ilist_default_traits<ValueSubClass> {
44 SymbolTableListTraits() {}
GlobalAlias.h 27 class SymbolTableListTraits;
30 friend class SymbolTableListTraits<GlobalAlias, Module>;
GlobalVariable.h 33 class SymbolTableListTraits;
36 friend class SymbolTableListTraits<GlobalVariable, Module>;
BasicBlock.h 20 #include "llvm/IR/SymbolTableListTraits.h"
35 : public SymbolTableListTraits<BasicBlock, Function> {
75 friend class SymbolTableListTraits<BasicBlock, Function>;
Instruction.h 21 #include "llvm/IR/SymbolTableListTraits.h"
34 : public SymbolTableListTraits<Instruction, BasicBlock> {
491 friend class SymbolTableListTraits<Instruction, BasicBlock>;
Module.h 38 : public SymbolTableListTraits<Function, Module> {
56 : public SymbolTableListTraits<GlobalVariable, Module> {
71 : public SymbolTableListTraits<GlobalAlias, Module> {
Function.h 35 : public SymbolTableListTraits<Argument, Function> {
80 friend class SymbolTableListTraits<Function, Module>;
Metadata.h 33 class SymbolTableListTraits;
    [all...]
  /external/llvm/lib/IR/
SymbolTableListTraitsImpl.h 10 // This file implements the stickier parts of the SymbolTableListTraits class,
19 #include "llvm/IR/SymbolTableListTraits.h"
29 void SymbolTableListTraits<ValueSubClass,ItemParentClass>
66 void SymbolTableListTraits<ValueSubClass,ItemParentClass>
77 void SymbolTableListTraits<ValueSubClass,ItemParentClass>
86 void SymbolTableListTraits<ValueSubClass,ItemParentClass>
Module.cpp 38 // Explicit instantiations of SymbolTableListTraits since some of the methods
40 template class llvm::SymbolTableListTraits<Function, Module>;
41 template class llvm::SymbolTableListTraits<GlobalVariable, Module>;
42 template class llvm::SymbolTableListTraits<GlobalAlias, Module>;
BasicBlock.cpp 36 // Explicit instantiation of SymbolTableListTraits since some of the methods
38 template class llvm::SymbolTableListTraits<Instruction, BasicBlock>;
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>;
    [all...]

Completed in 308 milliseconds