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

1 2 3 4 5 6

  /external/llvm/include/llvm/DebugInfo/PDB/DIA/
DIARawSymbol.h 24 CComPtr<IDiaSymbol> getDiaSymbol() const { return Symbol; }
202 CComPtr<IDiaSymbol> Symbol;
  /external/v8/test/mjsunit/compiler/
symbol-protototype.js 10 assertSame(test1(Symbol()), Symbol.prototype.toString);
11 assertSame(test1(Symbol()), Symbol.prototype.toString);
13 assertSame(test1(Symbol()), Symbol.prototype.toString);
18 assertSame(test2(Symbol()), Symbol.prototype.valueOf);
19 assertSame(test2(Symbol()), Symbol.prototype.valueOf)
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
Symbol.java 23 public class Symbol extends ASTree {
26 public Symbol(String sym) {
  /external/llvm/lib/Target/Sparc/
SparcMCInstLower.cpp 37 const MCSymbol *Symbol = nullptr;
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/include/llvm/CodeGen/
DwarfStringPoolEntry.h 21 MCSymbol *Symbol;
38 assert(I->second.Symbol && "No symbol available!");
39 return I->second.Symbol;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFI386.h 42 auto Symbol = RelI->getSymbol();
43 if (Symbol == Obj.symbol_end())
44 report_fatal_error("Unknown symbol in relocation");
46 ErrorOr<StringRef> TargetNameOrErr = Symbol->getName();
51 auto Section = *Symbol->getSection();
81 getSymbolOffset(*Symbol), 0, 0, false, 0);
93 getSymbolOffset(*Symbol));
RuntimeDyldCOFFX86_64.h 57 // The Value parameter here is the load address of the symbol for the
60 // the symbol resides (RE.Addend provides additional information about the
61 // symbol location). For external symbols, Value will be the address of the
62 // symbol in the target address space.
114 // If possible, find the symbol referred to in the relocation,
116 symbol_iterator Symbol = RelI->getSymbol();
117 if (Symbol == Obj.symbol_end())
118 report_fatal_error("Unknown symbol in relocation");
119 section_iterator SecI = *Symbol->getSection();
154 ErrorOr<StringRef> TargetNameOrErr = Symbol->getName()
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZMCInstLower.cpp 39 const MCSymbol *Symbol;
43 Symbol = MO.getMBB()->getSymbol();
48 Symbol = AsmPrinter.getSymbol(MO.getGlobal());
52 Symbol = AsmPrinter.GetExternalSymbolSymbol(MO.getSymbolName());
56 Symbol = AsmPrinter.GetJTISymbol(MO.getIndex());
61 Symbol = AsmPrinter.GetCPISymbol(MO.getIndex());
65 Symbol = AsmPrinter.GetBlockAddressSymbol(MO.getBlockAddress());
71 const MCExpr *Expr = MCSymbolRefExpr::create(Symbol, Kind, Ctx);
  /external/llvm/lib/Target/XCore/
XCoreMCInstLower.cpp 39 const MCSymbol *Symbol;
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);
  /frameworks/base/tools/aapt/
Symbol.h 27 * A resource symbol, not attached to any configuration or context.
29 struct Symbol {
30 inline Symbol();
31 inline Symbol(const android::String16& p, const android::String16& t, const android::String16& n, uint32_t i);
33 inline bool operator<(const Symbol& rhs) const;
43 * A specific defintion of a symbol, defined with a configuration and a definition site.
47 inline SymbolDefinition(const Symbol& s, const ConfigDescription& c, const SourcePos& src);
50 Symbol symbol; member in struct:SymbolDefinition
59 Symbol::Symbol()
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
ELFReader.h 41 typedef llvm::ELF::Elf32_Sym Symbol;
77 /// readSignature - read a symbol from the given Input and index in symtab
104 /// sort symbols by symbol value and then weak before strong.
126 typedef llvm::ELF::Elf64_Sym Symbol;
162 /// readSignature - read a symbol from the given Input and index in symtab
189 /// sort symbols by symbol value and then weak before strong.
  /prebuilts/go/darwin-x86/src/net/http/pprof/
pprof.go 71 http.Handle("/debug/pprof/symbol", http.HandlerFunc(Symbol))
131 // Symbol looks up the program counters listed in the request,
133 // The package initialization registers it as /debug/pprof/symbol.
134 func Symbol(w http.ResponseWriter, r *http.Request) {
142 // do have symbol information. Pprof only cares whether
167 // symbol will have an err because it doesn't end in +.
  /prebuilts/go/linux-x86/src/net/http/pprof/
pprof.go 71 http.Handle("/debug/pprof/symbol", http.HandlerFunc(Symbol))
131 // Symbol looks up the program counters listed in the request,
133 // The package initialization registers it as /debug/pprof/symbol.
134 func Symbol(w http.ResponseWriter, r *http.Request) {
142 // do have symbol information. Pprof only cares whether
167 // symbol will have an err because it doesn't end in +.
  /build/kati/
symtab.h 30 class Symbol {
33 explicit Symbol(IsUninitialized)
62 explicit Symbol(int v);
71 ScopedGlobalVar(Symbol name, Var* var);
75 Symbol name_;
79 inline bool operator==(const Symbol& x, const Symbol& y) {
83 inline bool operator<(const Symbol& x, const Symbol& y) {
88 template<> struct hash<Symbol> {
    [all...]
  /external/chromium-trace/catapult/catapult_base/catapult_base/refactor/
snippet.py 6 import symbol
152 class Symbol(Snippet):
155 The possible types and type_names are defined in Python's symbol module."""
167 return symbol.sym_name[self.type]
221 # Symbol.
223 return Symbol(node_type, children)
  /external/deqp/modules/glshared/
glsShaderExecUtil.hpp 48 struct Symbol
50 std::string name; //!< Symbol name.
51 glu::VarType varType; //!< Symbol type.
53 Symbol (void) {}
54 Symbol (const std::string& name_, const glu::VarType& varType_) : name(name_), varType(varType_) {}
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/DebugInfo/PDB/
PDBContext.cpp 39 std::unique_ptr<PDBSymbol> Symbol =
41 if (auto Func = dyn_cast_or_null<PDBSymbolFunc>(Symbol.get())) {
43 } else if (auto Data = dyn_cast_or_null<PDBSymbolData>(Symbol.get())) {
47 // If we couldn't find a symbol, then just assume 1 byte, so that we get
111 // This could happen either if there was no public symbol (e.g. not
  /external/llvm/lib/Transforms/IPO/
Internalize.cpp 47 cl::desc("A file containing list of symbol names to preserve"));
52 cl::desc("A list of symbol names to preserve"),
105 std::string Symbol;
106 In >> Symbol;
107 if (!Symbol.empty())
108 ExternalNames.insert(Symbol);
199 // keep llvm.compiler.used so that the symbol is not deleted by llvm.
217 // Never internalize the llvm.used symbol. It is used to implement
  /frameworks/base/tools/aapt2/process/
SymbolTable.h 53 struct Symbol {
54 Symbol() : Symbol(Maybe<ResourceId>{}) {
57 Symbol(const Maybe<ResourceId>& i) : Symbol(i, nullptr) {
60 Symbol(const Maybe<ResourceId>& i, const std::shared_ptr<Attribute>& attr) :
61 Symbol(i, attr, false) {
64 Symbol(const Maybe<ResourceId>& i, const std::shared_ptr<Attribute>& attr, bool pub) :
68 Symbol(const Symbol&) = default
    [all...]
  /prebuilts/go/darwin-x86/src/debug/pe/
file.go 23 Symbols []*Symbol
54 type Symbol struct {
163 // Get COFF string table, which is located at the end of the COFF symbol table.
174 // Process COFF symbol table.
194 s := &Symbol{
272 // getString extracts a string from symbol string table.
  /prebuilts/go/linux-x86/src/debug/pe/
file.go 23 Symbols []*Symbol
54 type Symbol struct {
163 // Get COFF string table, which is located at the end of the COFF symbol table.
174 // Process COFF symbol table.
194 s := &Symbol{
272 // getString extracts a string from symbol string table.
  /external/google-breakpad/src/common/linux/
elf_symbols_to_module.cc 46 // The contents of an ELF symbol, adjusted for the host's endianness,
48 struct Symbol {
49 // True if this iterator has reached the end of the symbol array. When
53 // The number of this symbol within the list.
56 // The current symbol's name offset. This is the offset within the
60 // The current symbol's value, size, info and shndx fields.
69 // otherwise. Assume each symbol has a 'value' field whose size is
82 // Move to the next symbol. This function's behavior is undefined if
86 // Dereferencing this iterator produces a reference to an Symbol structure
87 // that holds the current symbol's values. The symbol is owned by thi
    [all...]
  /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
383 def symbol(self): member in class:Relocation
    [all...]
  /external/llvm/include/llvm/MC/
MCWinEH.h 39 const MCSymbol *Symbol;
50 Function(nullptr), PrologEnd(nullptr), Symbol(nullptr),
55 Function(Function), PrologEnd(nullptr), Symbol(nullptr),
61 Function(Function), PrologEnd(nullptr), Symbol(nullptr),
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64ELFStreamer.cpp 97 // We have to keep track of the mapping symbol state of any sections we
107 /// streamer. We override it to add the appropriate mapping symbol if
121 /// AArch64 streamer overrides it to add the appropriate mapping symbol ($d)
129 /// AArch64 streamer overrides it to add the appropriate mapping symbol ($d)
158 auto *Symbol = cast<MCSymbolELF>(getContext().getOrCreateSymbol(
160 EmitLabel(Symbol);
161 Symbol->setType(ELF::STT_NOTYPE);
162 Symbol->setBinding(ELF::STB_LOCAL);
163 Symbol->setExternal(false);

Completed in 751 milliseconds

1 2 3 4 5 6