HomeSort by relevance Sort by last modified time
    Searched defs:Symbol (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/llvm/lib/MC/
MCELFObjectTargetWriter.cpp 38 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
39 return &Symbol.AliasedSymbol();
  /external/javassist/src/main/javassist/compiler/ast/
Symbol.java 23 public class Symbol extends ASTree {
26 public Symbol(String sym) {
  /frameworks/compile/mclinker/include/mcld/LD/
ELFReader.h 48 typedef llvm::ELF::Elf32_Sym Symbol;
85 /// readSignature - read a symbol from the given Input and index in symtab
115 typedef llvm::ELF::Elf64_Sym Symbol;
152 /// readSignature - read a symbol from the given Input and index in symtab
Archive.h 104 struct Symbol
114 Symbol(const char* pName,
120 ~Symbol()
129 typedef std::vector<Symbol*> SymTabType;
204 /// @param pName - symbol name
209 enum Symbol::Status pStatus = Archive::Symbol::Unknown);
211 /// getSymbolName - get the symbol name with the given index
217 /// getSymbolStatus - get the status of a symbol
218 enum Symbol::Status getSymbolStatus(size_t pSymIdx) const
    [all...]
  /external/llvm/bindings/python/llvm/tests/
test_object.py 5 from ..object import Symbol
36 for symbol in o.get_symbols():
38 assert isinstance(symbol, Symbol)
39 assert isinstance(symbol.name, str)
40 assert isinstance(symbol.address, long)
41 assert isinstance(symbol.size, long)
42 assert isinstance(symbol.file_offset, long)
46 for symbol in o.get_symbols():
47 symbol.cache(
    [all...]