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

  /external/llvm/include/llvm/Object/
ObjectFile.h 91 class SymbolRef;
110 error_code getSymbol(SymbolRef &Result) const;
137 friend class SymbolRef;
167 error_code containsSymbol(SymbolRef S, bool &Result) const;
176 /// SymbolRef - This is a value type class that represents a single symbol in
178 class SymbolRef {
184 SymbolRef() : OwningObject(NULL) { }
207 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
209 bool operator==(const SymbolRef &Other) const;
210 bool operator <(const SymbolRef &Other) const
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 101 typedef const SymExpr* SymbolRef;
102 typedef llvm::SmallVector<SymbolRef, 2> SymbolRefSmallVectorTy;
204 SymbolRef parentSymbol;
208 SymbolDerived(SymbolID sym, SymbolRef parent, const TypedValueRegion *r)
211 SymbolRef getParentSymbol() const { return parentSymbol; }
218 static void Profile(llvm::FoldingSetNodeID& profile, SymbolRef parent,
474 typedef llvm::DenseMap<SymbolRef, SymbolRefSmallVectorTy*> SymbolDependTy;
511 const SymbolDerived *getDerivedSymbol(SymbolRef parentSymbol,
549 void addSymbolDependency(const SymbolRef Primary, const SymbolRef Dependent)
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 430 assert(Value->getKind() == MCExpr::SymbolRef &&
431 "Value must be a SymbolRef!");
433 const MCSymbolRefExpr *SymbolRef =
435 coff_symbol->Other = GetOrCreateCOFFSymbol(&SymbolRef->getSymbol());
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 45 typedef const SymExpr* SymbolRef;
425 SymbolRef Sym;
429 StackHintGeneratorForSymbol(SymbolRef S, StringRef M) : Sym(S), Msg(M) {}
  /external/llvm/include/llvm/MC/
MCExpr.h 36 SymbolRef, ///< References to labels and assigned expressions.
213 : MCExpr(MCExpr::SymbolRef), Symbol(_Symbol), Kind(_Kind) {
249 return E->getKind() == MCExpr::SymbolRef;

Completed in 134 milliseconds