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

  /external/chromium/chrome/browser/extensions/
stubs_apitest.cc 18 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, Stubs) {
21 ASSERT_TRUE(RunExtensionTest("stubs")) << message_;
  /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/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/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.h 54 LocalSymbolMap &Symbols, StubMap &Stubs);
RuntimeDyldMachO.h 54 LocalSymbolMap &Symbols, StubMap &Stubs);
RuntimeDyldMachO.cpp 211 StubMap &Stubs) {
262 StubMap::const_iterator i = Stubs.find(Value);
263 if (i != Stubs.end())
269 Stubs[Value] = Section.StubOffset;
RuntimeDyldELF.cpp 338 StubMap &Stubs) {
402 StubMap::const_iterator i = Stubs.find(Value);
403 if (i != Stubs.end()) {
410 Stubs[Value] = Section.StubOffset;
RuntimeDyldImpl.h 211 LocalSymbolMap &Symbols, StubMap &Stubs) = 0;
RuntimeDyld.cpp 147 StubMap Stubs;
171 processRelocationRef(RI, *obj, LocalSections, LocalSymbols, Stubs);
336 // and stubs for branches Thumb - ARM and ARM - Thumb.
  /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());
  /development/build/
Android.mk 43 # api-stubs-timestamp file, which is the $@ of the droiddoc rule.
61 $(full_target): $(OUT_DOCS)/api-stubs-timestamp $(framework_res_package)
62 @echo Compiling SDK Stubs: $@
98 @echo Package SDK Stubs: $@
104 # The uiautomator stubs
  /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 276 milliseconds