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;
135 friend class SymbolRef;
165 error_code containsSymbol(SymbolRef S, bool &Result) const;
174 /// SymbolRef - This is a value type class that represents a single symbol in
176 class SymbolRef {
182 SymbolRef() : OwningObject(NULL) { }
205 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
207 bool operator==(const SymbolRef &Other) const;
208 bool operator <(const SymbolRef &Other) const
    [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;
382 SymbolRef Sym;
386 StackHintGeneratorForSymbol(SymbolRef S, StringRef M) : Sym(S), Msg(M) {}
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 99 typedef const SymExpr* SymbolRef;
100 typedef llvm::SmallVector<SymbolRef, 2> SymbolRefSmallVectorTy;
202 SymbolRef parentSymbol;
206 SymbolDerived(SymbolID sym, SymbolRef parent, const TypedValueRegion *r)
209 SymbolRef getParentSymbol() const { return parentSymbol; }
216 static void Profile(llvm::FoldingSetNodeID& profile, SymbolRef parent,
472 typedef llvm::DenseMap<SymbolRef, SymbolRefSmallVectorTy*> SymbolDependTy;
510 const SymbolDerived *getDerivedSymbol(SymbolRef parentSymbol,
548 void addSymbolDependency(const SymbolRef Primary, const SymbolRef Dependent)
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 36 SymbolRef, ///< References to labels and assigned expressions.
208 : MCExpr(MCExpr::SymbolRef), Symbol(_Symbol), Kind(_Kind) {
244 return E->getKind() == MCExpr::SymbolRef;

Completed in 96 milliseconds