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

  /external/llvm/include/llvm/Object/
ObjectFile.h 81 class SymbolRef;
101 error_code getSymbol(SymbolRef &Result) const;
121 friend class SymbolRef;
149 error_code containsSymbol(SymbolRef S, bool &Result) const;
156 /// SymbolRef - This is a value type class that represents a single symbol in
158 class SymbolRef {
164 SymbolRef() : OwningObject(NULL) {
177 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
179 bool operator==(const SymbolRef &Other) const;
181 error_code getNext(SymbolRef &Result) const
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 93 typedef const SymbolData* SymbolRef;
94 typedef llvm::SmallVector<SymbolRef, 2> SymbolRefSmallVectorTy;
168 SymbolRef parentSymbol;
172 SymbolDerived(SymbolID sym, SymbolRef parent, const TypedValueRegion *r)
175 SymbolRef getParentSymbol() const { return parentSymbol; }
182 static void Profile(llvm::FoldingSetNodeID& profile, SymbolRef parent,
361 typedef llvm::DenseMap<SymbolRef, SymbolRefSmallVectorTy*> SymbolDependTy;
394 const SymbolDerived *getDerivedSymbol(SymbolRef parentSymbol,
425 void addSymbolDependency(const SymbolRef Primary, const SymbolRef Dependent)
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 37 SymbolRef, ///< References to labels and assigned expressions.
188 : MCExpr(MCExpr::SymbolRef), Symbol(_Symbol), Kind(_Kind) {}
222 return E->getKind() == MCExpr::SymbolRef;
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 428 assert(Value->getKind() == MCExpr::SymbolRef &&
429 "Value must be a SymbolRef!");
431 const MCSymbolRefExpr *SymbolRef =
433 coff_symbol->Other = GetOrCreateCOFFSymbol(&SymbolRef->getSymbol());

Completed in 178 milliseconds