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

1 2

  /external/javassist/src/main/javassist/compiler/ast/
Symbol.java 23 public class Symbol extends ASTree {
26 public Symbol(String sym) {
  /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...]
  /external/llvm/lib/Target/Mips/
MipsMCInstLower.cpp 40 const MCSymbol *Symbol;
69 Symbol = MO.getMBB()->getSymbol();
73 Symbol = Mang->getSymbol(MO.getGlobal());
78 Symbol = AsmPrinter.GetBlockAddressSymbol(MO.getBlockAddress());
83 Symbol = AsmPrinter.GetExternalSymbolSymbol(MO.getSymbolName());
88 Symbol = AsmPrinter.GetJTISymbol(MO.getIndex());
92 Symbol = AsmPrinter.GetCPISymbol(MO.getIndex());
100 const MCSymbolRefExpr *MCSym = MCSymbolRefExpr::Create(Symbol, Kind, *Ctx);
  /external/llvm/lib/Transforms/IPO/
Internalize.cpp 37 cl::desc("A file containing list of symbol names to preserve"));
42 cl::desc("A list of symbol names to preserve"),
96 std::string Symbol;
97 In >> Symbol;
98 if (!Symbol.empty())
99 ExternalNames.insert(Symbol);
112 // "main" symbol defined in the module. If so, use it, otherwise do not
146 // Never internalize the llvm.used symbol. It is used to implement
  /external/srec/srec/Semproc/include/
SR_SymbolTable.h 39 * Entries in the Symbol table are symbols i.e. key-value pairs.
52 Symbol;
55 * The Symbol Table
67 Symbol Symbols[MAX_SYMBOLS];
70 * Pointer to the next available symbol slot for storing a symbol in the array
72 Symbol *next;
77 Symbol SpecialSymbols[MAX_SPECIAL_SYMBOLS];
88 * The "undefined" symbol value
100 * @param self pointer to the symbol tabl
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFObjectWriter.cpp 62 // I.e. not as an offset to a section symbol.
73 const MCSymbol &Symbol = Target.getSymA()->getSymbol().AliasedSymbol();
77 static_cast<const MCSectionELF&>(Symbol.getSection());
87 dbgs() << "considering symbol "
89 << Symbol.getName() << "/"
93 << Symbol.isAbsolute() << "/" << Symbol.isDefined() << "/"
94 << Symbol.isVariable() << "/" << Symbol.isTemporary()
140 return &Symbol;
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
ELFReader.h 91 /// readSymbol - read a symbol from the given Input and index in symtab
169 typedef llvm::ELF::Elf32_Sym Symbol;
215 /// readSymbol - read a symbol from the given Input and index in symtab
Archive.h 101 struct Symbol
111 Symbol(const char* pName,
117 ~Symbol()
126 typedef std::vector<Symbol*> SymTabType;
201 /// @param pName - symbol name
206 enum Symbol::Status pStatus = Archive::Symbol::Unknown);
208 /// getSymbolName - get the symbol name with the given index
214 /// getSymbolStatus - get the status of a symbol
215 enum Symbol::Status getSymbolStatus(size_t pSymIdx) const
    [all...]
  /external/llvm/include/llvm/MC/
MCWin64EH.h 65 Function(0), PrologEnd(0), Symbol(0),
74 MCSymbol *Symbol;
MCELFObjectWriter.h 34 const MCSymbol *Symbol;
39 : r_offset(0), Index(0), Type(0), Symbol(0), r_addend(0), Fixup(0) {}
43 : r_offset(RelocOffset), Index(Idx), Type(RelType), Symbol(Sym),
  /external/llvm/include/llvm/Object/
Archive.h 82 class Symbol {
88 bool operator ==(const Symbol &other) const {
92 Symbol(const Archive *p, uint32_t symi, uint32_t stri)
98 Symbol getNext() const;
102 Symbol symbol; member in class:llvm::object::Archive::symbol_iterator
104 symbol_iterator(const Symbol &s) : symbol(s) {}
105 const Symbol *operator->() const {
106 return &symbol;
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
symbols.h 60 typedef struct Symbol_Rec Symbol;
64 Symbol *symb;
72 Symbol *symbols;
81 // Symbol table is a simple binary tree.
86 Symbol *left, *right;
87 Symbol *next;
104 Symbol *NewSymbol(SourceLoc *loc, Scope *fScope, int name, symbolkind kind);
105 Symbol *AddSymbol(SourceLoc *loc, Scope *fScope, int atom, symbolkind kind);
106 Symbol *LookUpLocalSymbol(Scope *fScope, int atom);
107 Symbol *LookUpSymbol(Scope *fScope, int atom)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Target/
ELFDynamic.h 60 typedef llvm::ELF::Elf32_Sym Symbol;
76 { return sizeof(Symbol); }
  /external/llvm/bindings/python/llvm/
object.py 19 Section, Symbol, and Relocation, respectively.
40 To aid working around this limitation, each Section, Symbol, and Relocation
60 for symbol in symbols:
61 print symbol.name # This raises because the object has expired.
65 for symbol in obj.get_symbols():
66 symbols.append(symbol)
67 print symbol.name
69 for symbol in symbols:
70 print symbol.name # OK
71 print symbol.address # NOT OK. We didn't look up this property before
392 def symbol(self): member in class:Relocation
    [all...]
  /external/llvm/examples/BrainF/
BrainF.h 47 enum Symbol {
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 218 // Obtain the symbol name which is referenced in the relocation
220 const SymbolRef &Symbol = Rel.Symbol;
221 Symbol.getName(TargetName);
222 // First search for the symbol in the local symbol table
228 // Search for the symbol in the global symbol table
RuntimeDyldELF.cpp 384 const SymbolRef &Symbol = Rel.Symbol;
386 // Obtain the symbol name which is referenced in the relocation
388 Symbol.getName(TargetName);
394 // First search for the symbol in the local symbol table
400 // Search for the symbol in the global symbol table
408 Symbol.getType(SymType);
413 // a new symbol type ST_Section to SymbolRef and use it
    [all...]
RuntimeDyldImpl.h 84 /// used to make a relocation section relative instead of symbol relative.
98 SymbolRef Symbol;
132 // A global symbol table for symbols from all loaded modules. Maps the
133 // symbol name to a (SectionID, offset in section) pair.
141 // For each symbol, keep a list of relocations based on it. Anytime
144 // The symbol (or section) the relocation is sourced from is the Key
153 // external when they aren't found in the global symbol table of all loaded
154 // modules. This map is indexed by symbol name.
189 /// new section for them and update the symbol mappings in the object and
190 /// symbol table
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 139 // is to use an absolute symbol (which we don't support yet).
153 // Neither symbol can be modified.
156 report_fatal_error("unsupported relocation of modified symbol");
210 const MCSymbol *Symbol = &Target.getSymA()->getSymbol();
211 MCSymbolData &SD = Asm.getSymbolData(*Symbol);
218 if (Symbol->isInSection()) {
226 // symbol to use as a base address (a local symbol with no preceding
227 // non-local symbol).
235 } else if (Symbol->isInSection() && !Symbol->isVariable())
    [all...]
  /external/valgrind/main/coregrind/m_initimg/
simple_huffman.c 22 * 12 bits per symbol (for 8 bit symbols), meaning a maximum of 384
71 UInt Symbol;
189 sym[k].Symbol = k;
201 /* Sort histogram - most frequent symbol first (bubble sort) */
233 /* Append symbol to tree description */
235 _Huffman_WriteBits( stream, sym[first].Symbol, 8 );
237 /* Store code info in symbol array */
313 UInt symbol; local
318 /* Get symbol from tree description */
319 symbol = _Huffman_ReadBits( stream, 8 )
371 UInt k, total_bytes, swaps, symbol, last_symbol; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair_s.s 52 Symbol RN 7
69 Symbol RN 7
121 ;// Decode Symbol = TotalCoeff*4 + TrailingOnes
122 M_BD_VLD Symbol, T1, T2, pVLDTable, 4, 2
124 MOVS TotalCoeff, Symbol, LSR #2
129 CMP Symbol, #17*4
130 BGE.W EndBadSymbol ;// Error if bad symbol
138 ANDS TrailingOnes, Symbol, #3
144 M_BD_READ8 Symbol, 1, T1
147 SUB T1, T1, Symbol, LSL #
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair_s.s 52 Symbol RN 7
69 Symbol RN 7
121 ;// Decode Symbol = TotalCoeff*4 + TrailingOnes
122 M_BD_VLD Symbol, T1, T2, pVLDTable, 4, 2
124 MOVS TotalCoeff, Symbol, LSR #2
129 CMP Symbol, #17*4
130 BGE.W EndBadSymbol ;// Error if bad symbol
138 ANDS TrailingOnes, Symbol, #3
144 M_BD_READ8 Symbol, 1, T1
147 SUB T1, T1, Symbol, LSL #
    [all...]
  /external/llvm/lib/MC/
MCELFStreamer.cpp 58 virtual void EmitLabel(MCSymbol *Symbol);
61 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
62 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
63 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
64 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
67 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
69 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol) {
85 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
86 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
90 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
symbol-table.h 0 // symbol-table.h
17 // Classes to provide symbol-to-integer and integer-to-symbol mappings.
48 int64 AddSymbol(const string& symbol, int64 key);
50 int64 AddSymbol(const string& symbol) {
51 int64 key = Find(symbol);
52 return (key == -1) ? AddSymbol(symbol, available_key_++) : key;
82 // Return the key associated with the symbol. If the symbol
84 int64 Find(const string& symbol) const
    [all...]
  /external/v8/src/
type-info.h 68 // We know it's a Symbol.
69 static TypeInfo Symbol() { return TypeInfo(kSymbol); }
184 case kSymbol: return "Symbol";

Completed in 882 milliseconds

1 2