Searched defs:Symbol (Results 1 - 25 of 96) sorted by relevance

1234

/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dparse.h8 typedef struct Symbol { struct
9 struct Symbol *next;
12 } Symbol; typedef in typeref:struct:Symbol
14 void Symbol_init(Symbol *, const SubStr*);
15 static Symbol *Symbol_new(const SubStr*);
16 Symbol *Symbol_find(const SubStr*);
21 static Symbol *
24 Symbol *r = malloc(sizeof(Symbol));
/external/javassist/src/main/javassist/compiler/ast/
H A DSymbol.java23 public class Symbol extends ASTree { class in inherits:ASTree
26 public Symbol(String sym) { method in class:Symbol
/external/llvm/lib/Target/NVPTX/
H A DNVPTXMachineFunctionInfo.h27 /// Returns the index for the symbol \p Symbol. If the symbol was previously,
30 unsigned getImageHandleSymbolIndex(const char *Symbol) { argument
33 if (ImageHandleList[i] == std::string(Symbol))
36 ImageHandleList.push_back(Symbol);
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dsymbol.py10 self.symbols = {} # 'foo.so+0x1234' -> |Symbol|
13 assert(isinstance(symbol, Symbol))
31 class Symbol(object): class in inherits:object
53 """Source file + line information for a given |Symbol|."""
/external/chromium_org/v8/src/
H A Dsymbol.js11 var $Symbol = global.Symbol;
17 throw MakeTypeError('not_constructor', ["Symbol"]);
19 // NOTE: Passing in a Symbol value will throw on ToString().
27 'incompatible_method_receiver', ["Symbol.prototype.toString", this]);
30 return "Symbol(" + (IS_UNDEFINED(description) ? "" : description) + ")";
37 'incompatible_method_receiver', ["Symbol.prototype.valueOf", this]);
77 // TODO(arv): Proxies use a shared trap for String and Symbol keys.
85 var symbolHasInstance = InternalSymbol("Symbol.hasInstance");
86 var symbolIsConcatSpreadable = InternalSymbol("Symbol
[all...]
/external/llvm/bindings/python/llvm/tests/
H A Dtest_object.py5 from ..object import Symbol namespace
39 assert isinstance(symbol, Symbol)
/external/llvm/include/llvm/MC/
H A DMCObjectStreamer.h59 MCSymbolData &getOrCreateSymbolData(const MCSymbol *Symbol) { argument
60 return getAssembler().getOrCreateSymbolData(*Symbol);
89 void EmitLabel(MCSymbol *Symbol) override;
90 void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) override;
95 void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) override;
/external/llvm/lib/Target/ARM/
H A DARMMCInstLower.cpp28 const MCSymbol *Symbol) {
33 Expr = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_None,
40 Expr = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_None,
45 Expr = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_None,
54 Expr = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_PLT,
27 GetSymbolRef(const MachineOperand &MO, const MCSymbol *Symbol) argument
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMWinCOFFStreamer.cpp23 void EmitThumbFunc(MCSymbol *Symbol) override;
35 void ARMWinCOFFStreamer::EmitThumbFunc(MCSymbol *Symbol) { argument
36 getAssembler().setIsThumbFunc(Symbol);
/external/llvm/lib/Target/Hexagon/
H A DHexagonMCInstLower.cpp27 static MCOperand GetSymbolRef(const MachineOperand& MO, const MCSymbol* Symbol, argument
32 ME = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_None, MC);
H A DHexagonSplitConst32AndConst64.cpp90 MachineOperand &Symbol = MI->getOperand (1); local
93 TII->get(Hexagon::LO), DestReg).addOperand(Symbol);
95 TII->get(Hexagon::HI), DestReg).addOperand(Symbol);
103 MachineOperand &Symbol = MI->getOperand (1); local
106 TII->get(Hexagon::LO_jt), DestReg).addOperand(Symbol);
108 TII->get(Hexagon::HI_jt), DestReg).addOperand(Symbol);
116 MachineOperand &Symbol = MI->getOperand (1); local
119 TII->get(Hexagon::LO_label), DestReg).addOperand(Symbol);
121 TII->get(Hexagon::HI_label), DestReg).addOperand(Symbol);
/external/llvm/lib/Target/Sparc/
H A DSparcMCInstLower.cpp37 const MCSymbol *Symbol = nullptr; local
42 Symbol = MO.getMBB()->getSymbol();
46 Symbol = AP.getSymbol(MO.getGlobal());
50 Symbol = AP.GetBlockAddressSymbol(MO.getBlockAddress());
54 Symbol = AP.GetExternalSymbolSymbol(MO.getSymbolName());
58 Symbol = AP.GetCPISymbol(MO.getIndex());
62 const MCSymbolRefExpr *MCSym = MCSymbolRefExpr::Create(Symbol,
/external/llvm/lib/Target/SystemZ/
H A DSystemZMCInstLower.cpp36 const MCSymbol *Symbol; local
40 Symbol = MO.getMBB()->getSymbol();
45 Symbol = AsmPrinter.getSymbol(MO.getGlobal());
49 Symbol = AsmPrinter.GetExternalSymbolSymbol(MO.getSymbolName());
53 Symbol = AsmPrinter.GetJTISymbol(MO.getIndex());
58 Symbol = AsmPrinter.GetCPISymbol(MO.getIndex());
62 Symbol = AsmPrinter.GetBlockAddressSymbol(MO.getBlockAddress());
68 const MCExpr *Expr = MCSymbolRefExpr::Create(Symbol, Kind, Ctx);
/external/srec/srec/Semproc/include/
H A DSR_SymbolTable.h39 * Entries in the Symbol table are symbols i.e. key-value pairs.
52 Symbol; typedef in typeref:struct:Symbol_t
55 * The Symbol Table
67 Symbol Symbols[MAX_SYMBOLS];
72 Symbol *next;
77 Symbol SpecialSymbols[MAX_SPECIAL_SYMBOLS];
132 SREC_SEMPROC_API ESR_ReturnCode ST_getSymbolSlot(SymbolTable* self, Symbol** slot);
135 * Reset and clear the Symbol Table for a new script
/external/chromium_org/net/spdy/
H A Dhpack_huffman_table.h33 typedef HpackHuffmanSymbol Symbol; typedef in class:net::HpackHuffmanTable
71 bool Initialize(const Symbol* input_symbols, size_t symbol_count);
94 void BuildDecodeTables(const std::vector<Symbol>& symbols);
97 void BuildEncodeTable(const std::vector<Symbol>& symbols);
111 // Symbol code and code length, in ascending symbol ID order.
/external/llvm/lib/Target/XCore/
H A DXCoreMCInstLower.cpp39 const MCSymbol *Symbol; local
43 Symbol = MO.getMBB()->getSymbol();
46 Symbol = Printer.getSymbol(MO.getGlobal());
50 Symbol = Printer.GetBlockAddressSymbol(MO.getBlockAddress());
54 Symbol = Printer.GetExternalSymbolSymbol(MO.getSymbolName());
58 Symbol = Printer.GetJTISymbol(MO.getIndex());
61 Symbol = Printer.GetCPISymbol(MO.getIndex());
68 const MCSymbolRefExpr *MCSym = MCSymbolRefExpr::Create(Symbol, Kind, *Ctx);
/external/llvm/lib/Transforms/IPO/
H A DInternalize.cpp101 std::string Symbol; local
102 In >> Symbol; local
103 if (!Symbol.empty())
104 ExternalNames.insert(Symbol);
/external/deqp/modules/glshared/
H A DglsShaderExecUtil.hpp48 struct Symbol struct in namespace:deqp::gls::ShaderExecUtil
50 std::string name; //!< Symbol name.
51 glu::VarType varType; //!< Symbol type.
53 Symbol (void) {} function in struct:deqp::gls::ShaderExecUtil::Symbol
54 Symbol (const std::string& name_, const glu::VarType& varType_) : name(name_), varType(varType_) {} function in struct:deqp::gls::ShaderExecUtil::Symbol
61 std::vector<Symbol> inputs;
62 std::vector<Symbol> outputs;
95 std::vector<Symbol> m_inputs;
96 std::vector<Symbol> m_outputs;
/external/llvm/lib/Object/
H A DELFYAML.cpp656 void MappingTraits<ELFYAML::Symbol>::mapping(IO &IO, ELFYAML::Symbol &Symbol) { argument
657 IO.mapOptional("Name", Symbol.Name, StringRef());
658 IO.mapOptional("Type", Symbol.Type, ELFYAML::ELF_STT(0));
659 IO.mapOptional("Section", Symbol.Section, StringRef());
660 IO.mapOptional("Value", Symbol.Value, Hex64(0));
661 IO.mapOptional("Size", Symbol.Size, Hex64(0));
662 IO.mapOptional("Visibility", Symbol.Visibility, ELFYAML::ELF_STV(0));
726 IO.mapRequired("Symbol", Re
[all...]
H A DRecordStreamer.cpp14 void RecordStreamer::markDefined(const MCSymbol &Symbol) { argument
15 State &S = Symbols[Symbol.getName()];
29 void RecordStreamer::markGlobal(const MCSymbol &Symbol) { argument
30 State &S = Symbols[Symbol.getName()];
45 void RecordStreamer::markUsed(const MCSymbol &Symbol) { argument
46 State &S = Symbols[Symbol.getName()];
75 void RecordStreamer::EmitLabel(MCSymbol *Symbol) { argument
76 MCStreamer::EmitLabel(Symbol);
77 markDefined(*Symbol);
80 void RecordStreamer::EmitAssignment(MCSymbol *Symbol, cons argument
85 EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) argument
92 EmitZerofill(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
97 EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
[all...]
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.cpp127 MCSymbol *Symbol = getContext().GetOrCreateSymbol( local
130 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
134 Symbol->setSection(*getCurrentSection().first);
137 Symbol->setVariableValue(Value);
/external/lzma/C/
H A DPpmd.h45 Byte Symbol; member in struct:__anon26721
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
H A Dsymrec.pxi26 cdef class Symbol: class in inherits:
32 self.sym = <yasm_symrec *>__get_voidp(symrec, Symbol)
96 # Use associated data mechanism to keep Symbol reference paired with symrec.
114 symbol = Symbol(__pass_voidp(symrec, Symbol))
/external/lldb/include/lldb/Symbol/
H A DSymbol.h1 //===-- Symbol.h ------------------------------------------------*- C++ -*-===//
17 #include "lldb/Symbol/SymbolContextScope.h"
21 class Symbol : class in namespace:lldb_private
28 Symbol();
30 Symbol (uint32_t symID,
44 Symbol (uint32_t symID,
56 Symbol (const Symbol& rhs);
58 const Symbol&
59 operator= (const Symbol
[all...]
/external/llvm/bindings/python/llvm/
H A Dobject.py19 Section, Symbol, and Relocation, respectively.
40 To aid working around this limitation, each Section, Symbol, and Relocation
97 "Symbol",
154 This is a generator for llvm.object.Symbol instances.
156 Each Symbol instance is a limited-use object. See this module's
165 last = Symbol(symbols, self)
233 """Returns whether a Symbol instance is present in this Section."""
237 assert isinstance(symbol, Symbol)
290 class Symbol(LLVMObject): class in inherits:LLVMObject
309 raise Exception('Symbol instanc
[all...]

Completed in 376 milliseconds

1234