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

  /external/doclava/src/com/google/doclava/apicheck/
ApiCheck.java 31 import com.google.doclava.Stubs;
236 Stubs.writeApi(apiWriter, api.getPackages().values());
258 Stubs.writeXml(apiWriter, api.getPackages().values());
  /external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp 128 void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
201 // External or weakly linked global variables need non-lazily-resolved stubs
506 EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) {
515 // Output stubs for dynamically-linked functions
522 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
526 MCSymbol *Stub = Stubs[i].first;
527 MCSymbol *RawSym = Stubs[i].second.getPointer();
569 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
570 MCSymbol *Stub = Stubs[i].first;
571 MCSymbol *RawSym = Stubs[i].second.getPointer()
    [all...]
  /external/llvm/lib/Target/X86/
X86AsmPrinter.cpp 512 // Output stubs for dynamically-linked functions.
513 MachineModuleInfoMachO::SymbolListTy Stubs;
515 Stubs = MMIMacho.GetFnStubList();
516 if (!Stubs.empty()) {
525 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
527 OutStreamer.EmitLabel(Stubs[i].first);
529 OutStreamer.EmitSymbolAttribute(Stubs[i].second.getPointer(),
536 Stubs.clear();
540 // Output stubs for external and common global variables.
541 Stubs = MMIMacho.GetGVStubList()
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 147 StubMap Stubs;
171 processRelocationRef(RI, *obj, LocalSections, LocalSymbols, Stubs);
336 // and stubs for branches Thumb - ARM and ARM - Thumb.
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp 612 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetGVStubList();
614 if (!Stubs.empty()) {
618 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
620 OutStreamer.EmitLabel(Stubs[i].first);
622 MachineModuleInfoImpl::StubValueTy &MCSym = Stubs[i].second;
640 Stubs.clear();
644 Stubs = MMIMacho.GetHiddenGVStubList();
645 if (!Stubs.empty()) {
648 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
650 OutStreamer.EmitLabel(Stubs[i].first)
    [all...]
  /external/doclava/src/com/google/doclava/
Doclava.java 127 // Create the dependency graph for the stubs directory
187 } else if (a[0].equals("-stubs")) {
305 // Stubs
307 Stubs.writeStubsAndApi(stubsDir, apiFile, stubPackages);
502 if (option.equals("-stubs")) {
    [all...]
Stubs.java 33 public class Stubs {
124 // write out the stubs
437 // "was automatically written to stubs.\n");
732 // Skip @Override annotations: the stubs do not need it and in some cases it leads
733 // to compilation errors with the way the stubs are generated
    [all...]

Completed in 288 milliseconds