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

  /external/llvm/lib/Target/SystemZ/
SystemZAsmPrinter.cpp 228 // Output stubs for external and common global variables.
229 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList();
230 if (!Stubs.empty()) {
234 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
235 OutStreamer.EmitLabel(Stubs[i].first);
236 OutStreamer.EmitSymbolValue(Stubs[i].second.getPointer(),
239 Stubs.clear();
  /external/doclava/src/com/google/doclava/apicheck/
ApiCheck.java 31 import com.google.doclava.Stubs;
246 Stubs.writeApi(apiWriter, api.getPackages().values());
268 Stubs.writeXml(apiWriter, api.getPackages().values());
  /external/chromium_org/sandbox/linux/bpf_dsl/
bpf_dsl_unittest.cc 28 BPF_ASSERT_EQ(res, Stubs::sys(__VA_ARGS__))
34 // Type safe stubs for tested system calls.
35 class Stubs {
  /external/llvm/lib/Target/AArch64/
AArch64AsmPrinter.cpp 137 // Emit a .data.rel section containing any stubs that were created.
144 // Output stubs for external and common global variables.
145 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList();
146 if (!Stubs.empty()) {
150 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
151 OutStreamer.EmitLabel(Stubs[i].first);
152 OutStreamer.EmitSymbolValue(Stubs[i].second.getPointer(),
155 Stubs.clear();
  /external/llvm/lib/Target/Sparc/
SparcAsmPrinter.cpp 449 // Generate stubs for global variables.
450 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList();
451 if (!Stubs.empty()) {
454 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
455 OutStreamer.EmitLabel(Stubs[i].first);
456 OutStreamer.EmitSymbolValue(Stubs[i].second.getPointer(), PtrSize);
  /external/llvm/lib/Target/X86/
X86AsmPrinter.cpp 585 // Output stubs for dynamically-linked functions.
586 MachineModuleInfoMachO::SymbolListTy Stubs;
588 Stubs = MMIMacho.GetFnStubList();
589 if (!Stubs.empty()) {
598 for (const auto &Stub : Stubs) {
609 Stubs.clear();
613 // Output stubs for external and common global variables.
614 Stubs = MMIMacho.GetGVStubList();
615 if (!Stubs.empty()) {
622 for (auto &Stub : Stubs)
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 189 StubMap Stubs;
206 Stubs);
542 // and stubs for branches Thumb - ARM and ARM - Thumb.
  /external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp 123 void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
176 // External or weakly linked global variables need non-lazily-resolved stubs
779 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList();
780 if (!Stubs.empty()) {
782 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
784 OutStreamer.EmitLabel(Stubs[i].first);
786 OutStreamer.EmitValue(MCSymbolRefExpr::Create(Stubs[i].second.getPointer(),
791 Stubs.clear();
    [all...]
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp 516 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetGVStubList();
518 if (!Stubs.empty()) {
523 for (auto &Stub : Stubs)
526 Stubs.clear();
530 Stubs = MMIMacho.GetHiddenGVStubList();
531 if (!Stubs.empty()) {
535 for (auto &Stub : Stubs)
538 Stubs.clear();
550 // Emit a .data.rel section containing any stubs that were created.
557 // Output stubs for external and common global variables
    [all...]
  /external/doclava/src/com/google/doclava/
Stubs.java 33 public class Stubs {
149 // write out the stubs
484 // "was automatically written to stubs.\n");
783 // Skip @Override annotations: the stubs do not need it and in some cases it leads
784 // to compilation errors with the way the stubs are generated
    [all...]
Doclava.java 150 // Create the dependency graph for the stubs directory
231 } else if (a[0].equals("-stubs")) {
393 // Stubs
395 Stubs.writeStubsAndApi(stubsDir, apiFile, proguardFile, removedApiFile, stubPackages);
613 if (option.equals("-stubs")) {
    [all...]

Completed in 330 milliseconds