OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SymbolRef
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/Object/
ObjectFile.h
58
///
SymbolRef
- This is a value type class that represents a single symbol in
60
class
SymbolRef
{
66
SymbolRef
() : OwningObject(NULL) {
70
SymbolRef
(DataRefImpl SymbolP, const ObjectFile *Owner);
72
bool operator==(const
SymbolRef
&Other) const;
74
error_code getNext(
SymbolRef
&Result) const;
92
friend class
SymbolRef
;
115
error_code containsSymbol(
SymbolRef
S, bool &Result) const;
135
// These functions are for
SymbolRef
to call internally. The main goal of
136
// this is to allow
SymbolRef
::SymbolPimpl to point directly to the symbo
[
all
...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h
91
typedef const SymbolData*
SymbolRef
;
165
SymbolRef
parentSymbol;
169
SymbolDerived(SymbolID sym,
SymbolRef
parent, const TypedRegion *r)
172
SymbolRef
getParentSymbol() const { return parentSymbol; }
179
static void Profile(llvm::FoldingSetNodeID& profile,
SymbolRef
parent,
385
const SymbolDerived *getDerivedSymbol(
SymbolRef
parentSymbol,
414
typedef llvm::DenseSet<
SymbolRef
> SetTy;
432
bool isLive(
SymbolRef
sym);
439
void markLive(
SymbolRef
sym);
446
void markInUse(
SymbolRef
sym)
[
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 24 milliseconds