HomeSort by relevance Sort by last modified time
    Searched refs:Symbols (Results 76 - 100 of 148) sorted by null

1 2 34 5 6

  /external/llvm/lib/MC/
MCContext.cpp 36 Symbols(Allocator), UsedNames(Allocator), NextUniqueID(0),
60 // NOTE: The symbols are all allocated out of a bump pointer allocator,
73 Symbols.clear();
98 assert(!Name.empty() && "Normal symbols cannot be unnamed!");
102 StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name);
121 assert(isTemporary && "Cannot rename non-temporary symbols");
193 return Symbols.lookup(Name);
344 /// finalizeDwarfSections - Emit end symbols for each non-empty code section.
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/
Bengali.java 32 super(customizer, Symbols.class, SymbolsShifted.class);
Greek.java 33 super(customizer, Symbols.class, SymbolsShifted.class);
ArmenianPhonetic.java 178 private static final class ArmenianSymbols extends Symbols {
Myanmar.java 33 super(customizer, Symbols.class, SymbolsShifted.class);
Farsi.java 19 import com.android.inputmethod.keyboard.layout.Symbols.RtlSymbols;
117 Symbols.CURRENCY_GENERIC_MORE_KEYS);
Arabic.java 19 import com.android.inputmethod.keyboard.layout.Symbols.RtlSymbols;
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 137 std::vector<COFFYAML::Symbol> &Symbols = YAMLObj.Symbols;
138 for (const auto &S : Obj.symbols()) {
205 Symbols.push_back(Sym);
elf2yaml.cpp 99 // Dump symbols
114 Y->Symbols.Local.push_back(S);
117 Y->Symbols.Global.push_back(S);
120 Y->Symbols.Weak.push_back(S);
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 421 // Make a list of all the symbols in this section.
422 std::vector<std::pair<uint64_t, StringRef>> Symbols;
423 for (const SymbolRef &Symbol : Obj->symbols()) {
438 Symbols.push_back(std::make_pair(Address, Name));
442 // Sort the symbols by address, just in case they didn't come in that way.
443 array_pod_sort(Symbols.begin(), Symbols.end());
471 // If the section has no symbols just insert a dummy one and disassemble
473 if (Symbols.empty())
474 Symbols.push_back(std::make_pair(0, name))
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 84 // in 'buffer', and Symbols[i-1] records the Value*.
93 SmallVector<const Value *, 4> Symbols;
134 Symbols.push_back(GVar);
157 const Value *v = Symbols[nSym];
  /external/llvm/tools/llvm-readobj/
llvm-readobj.cpp 71 // -section-symbols, -st
72 cl::opt<bool> SectionSymbols("section-symbols",
73 cl::desc("Display symbols for each section shown."));
75 cl::desc("Alias for --section-symbols"),
92 // -symbols, -t
93 cl::opt<bool> Symbols("symbols",
96 cl::desc("Alias for --symbols"),
97 cl::aliasopt(Symbols));
99 // -dyn-symbols, -d
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
parse_core.py 14 class Symbols(object):
22 return "Symbols(%s,%s)"%(self.lookup,self.tags)
  /external/lldb/source/Plugins/SymbolVendor/ELF/
SymbolVendorELF.cpp 25 #include "lldb/Host/Symbols.h"
127 FileSpec dsym_fspec = Symbols::LocateExecutableSymbolFile (module_spec);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.h 101 const SymbolTableMap &Symbols, StubMap &Stubs) override;
RuntimeDyldELF.h 95 // Relocation entries for symbols whose position-independent offset is
114 const SymbolTableMap &Symbols, StubMap &Stubs) override;
  /external/llvm/include/llvm/MC/
MCAssembler.h 499 /// AddrDelta - The expression for the difference of the two symbols that
531 /// AddrDelta - The expression for the difference of the two symbols that
876 iplist<MCSymbolData> Symbols;
883 /// The map of symbols to their associated assembler backend data.
898 /// The set of function symbols for which a .thumb_func directive has
1103 symbol_range symbols() { return make_range(symbol_begin(), symbol_end()); } function in class:llvm::MCAssembler
1104 const_symbol_range symbols() const { return make_range(symbol_begin(), symbol_end()); } function in class:llvm::MCAssembler
    [all...]
  /external/llvm/include/llvm/Object/
ELFYAML.h 110 // Although in reality the symbols reside in a section, it is a lot
114 LocalGlobalWeakSymbols Symbols;
194 static void mapping(IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols);
COFFYAML.h 75 std::vector<Symbol> Symbols;
  /external/lldb/source/Host/macosx/
Symbols.cpp 1 //===-- Symbols.cpp ---------------------------------------------*- C++ -*-===//
10 #include "lldb/Host/Symbols.h"
238 Symbols::FindSymbolFileInBundle (const FileSpec& dsym_bundle_fspec,
352 *out_dsym_fspec = Symbols::FindSymbolFileInBundle (*out_dsym_fspec, uuid, arch);
531 Symbols::LocateExecutableObjectFile (const ModuleSpec &module_spec)
551 Symbols::LocateExecutableSymbolFile (const ModuleSpec &module_spec)
633 Symbols::DownloadObjectAndSymbolFile (ModuleSpec &module_spec, bool force_lookup)
662 // to find the symbols, don't run it for them.
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 86 typedef llvm::DenseSet<SymbolRef> Symbols;
89 /// A (stack of) a set of symbols that are registered with this
94 SmallVector<Symbols *, 2> interestingSymbols;
138 Symbols &getInterestingSymbols();
  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
native_heap.py 35 def SymbolizeUsingSymbolDB(self, symbols):
36 assert(isinstance(symbols, symbol.Symbols))
40 sym = symbols.Lookup(stack_frame.exec_file_rel_path, stack_frame.offset)
native_heap_unittest.py 101 syms = symbol.Symbols()
113 # st2[0] and st1[0] were the same Frame. Expect identical symbols instances.
116 # st2[1] should have a symbols name, but no source line info.
  /external/lldb/include/lldb/Interpreter/
CommandCompletions.h 114 Symbols (CommandInterpreter &interpreter,
  /external/llvm/test/MC/ARM/
eh-directive-text-section-multiple-func.s 70 @ Check the symbols "func1" and "func2". They should belong to .text section.
72 @ CHECK: Symbols [

Completed in 791 milliseconds

1 2 34 5 6