HomeSort by relevance Sort by last modified time
    Searched defs:Symbols (Results 1 - 21 of 21) sorted by null

  /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)
cparse.py 13 from parse_core import Symbols, Parser
102 def parse(self,lexer,symbols):
103 symbols = Symbols(symbols)
112 node.parse(lexer,symbols)
133 def parse(self,lexer,symbols):
162 def parse(self,lexer,symbols):
163 symbols = Symbols(symbols
    [all...]
ir.py 16 from parse_core import Symbols #, Parser
1043 declaration.parse( self.lexer, Symbols() ) # use new name-space
1044 #declaration.parse( Lexer( cstr ), Symbols() )
    [all...]
  /external/srec/srec/Semproc/include/
SR_SymbolTable.h 39 * Entries in the Symbol table are symbols i.e. key-value pairs.
60 * Keep track of symbols using a hashmap of pointers
65 * The symbols stored as an array
67 Symbol Symbols[MAX_SYMBOLS];
75 * Any special symbols that are set prior to semantic processing and read by the semantic processor
80 * The number of special symbols set.
105 * Copies the symbols to a new hashmap (creates values dynamically)
142 * Store a "special" key value pair. These are special symbols that are set prior to semantic
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
pygram.py 4 """Export the Python grammar and symbols."""
20 class Symbols(object):
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
pygram.py 4 """Export the Python grammar and symbols."""
20 class Symbols(object):
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
  /external/llvm/include/llvm/Object/
COFFYAML.h 65 std::vector<Symbol> Symbols;
ELFYAML.h 79 // Although in reality the symbols reside in a section, it is a lot
83 LocalGlobalWeakSymbols Symbols;
147 static void mapping(IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols);
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 88 std::vector<COFFYAML::Symbol> &Symbols = YAMLObj.Symbols;
102 Symbols.push_back(Sym);
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 85 // in 'buffer', and Symbols[i-1] records the Value*.
94 SmallVector<const Value *, 4> Symbols;
133 Symbols.push_back(GVar);
156 const Value *v = Symbols[nSym];
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 55 /// Symbols - The symbols for the label. This is a pointer union that is
56 /// either one symbol (the common case) or a list of symbols.
57 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols;
69 /// DeletedAddrLabelsNeedingEmission - This is a per-function list of symbols
70 /// whose corresponding BasicBlock got deleted. These symbols need to be
82 // Deallocate any of the 'list of symbols' case.
85 if (I->second.Symbols.is<std::vector<MCSymbol*>*>())
86 delete I->second.Symbols.get<std::vector<MCSymbol*>*>();
106 if (!Entry.Symbols.isNull())
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 154 std::vector<SymbolRef> &Symbols,
160 Symbols.push_back(*SI);
249 // FIXME: FoundFns isn't used anymore. Using symbols/LC_FUNCTION_STARTS to
256 std::vector<SymbolRef> Symbols;
260 getSectionsAndSymbols(Header, MachOOF, Sections, Symbols, FoundFns,
264 std::vector<SymbolRef> UnsortedSymbols(Symbols);
265 // Sort the symbols by address, just in case they didn't come in that way.
266 std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());
349 for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++)
    [all...]
llvm-objdump.cpp 377 // Make a list of all the symbols in this section.
378 std::vector<std::pair<uint64_t, StringRef> > Symbols;
391 Symbols.push_back(std::make_pair(Address, Name));
395 // Sort the symbols by address, just in case they didn't come in that way.
396 array_pod_sort(Symbols.begin(), Symbols.end());
425 // If the section has no symbols just insert a dummy one and disassemble
427 if (Symbols.empty())
428 Symbols.push_back(std::make_pair(0, name));
445 for (unsigned si = 0, se = Symbols.size(); si != se; ++si)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 85 typedef llvm::DenseSet<SymbolRef> Symbols;
88 /// A (stack of) a set of symbols that are registered with this
93 SmallVector<Symbols *, 2> interestingSymbols;
137 Symbols &getInterestingSymbols();
  /external/llvm/include/llvm/MC/
MCContext.h 70 /// Symbols - Bindings of names to symbols.
71 SymbolTable Symbols;
74 /// and artificial symbols.
129 /// Symbols created for the start and end of this section.
215 /// @param Name - The symbol name, which must be unique across all symbols.
224 /// want to, for example, iterate over all symbols. 'const' because we
228 return Symbols;
MCAssembler.h 490 /// AddrDelta - The expression for the difference of the two symbols that
522 /// AddrDelta - The expression for the difference of the two symbols that
851 iplist<MCSymbolData> Symbols;
858 /// The map of symbols to their associated assembler backend data.
870 /// The set of function symbols for which a .thumb_func directive has
1054 const SymbolDataListType &getSymbolList() const { return Symbols; }
1055 SymbolDataListType &getSymbolList() { return Symbols; }
1057 symbol_iterator symbol_begin() { return Symbols.begin(); }
1058 const_symbol_iterator symbol_begin() const { return Symbols.begin(); }
1060 symbol_iterator symbol_end() { return Symbols.end();
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 122 typedef std::vector<COFFSymbol*> symbols; typedef in class:__anon23664::WinCOFFObjectWriter
133 symbols Symbols;
326 for (symbols::iterator I = Symbols.begin(), E = Symbols.end(); I != E; ++I)
333 return createCOFFEntity<COFFSymbol>(Name, Symbols);
341 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols);
427 report_fatal_error("Weak externals may only alias symbols");
518 // need symbols so they can be linked to code in the .text section right
    [all...]
  /external/llvm/tools/lto/
LTOModule.cpp 106 cl::desc("Don't place zero-initialized symbols into bss section"),
409 // Add to list of defined symbols.
417 // contortions to avoid real linker symbols. For instance, the
429 // symbols (.objc_class_name_Foo = 0) and a floating reference
432 // The following synthesizes the implicit .objc_* symbols for the linker
459 // add to list of defined symbols
465 // ignore all llvm.* symbols
523 // add to table of symbols
557 // add to table of symbols
598 // ignore all llvm.* symbols
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 362 // Process any special transfer function for dead symbols.
367 // up. Since no symbols are dead, we can optimize and not clean out
374 // values of the soon to be dead symbols.
417 // Remove dead bindings and symbols.
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 646 // Check to see that all assembler local symbols were actually defined.
647 // Targets that don't do subsections via symbols may not want this, though,
651 const MCContext::SymbolTable &Symbols = getContext().getSymbols();
652 for (MCContext::SymbolTable::const_iterator i = Symbols.begin(),
653 e = Symbols.end();
656 // Variable symbols may not be marked as defined, so check those
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 

Completed in 545 milliseconds