HomeSort by relevance Sort by last modified time
    Searched refs:Stubs (Results 1 - 18 of 18) 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/chromium_org/chrome/browser/extensions/
stubs_apitest.cc 17 #define MAYBE_Stubs Stubs
22 ASSERT_TRUE(RunExtensionTest("stubs")) << message_;
  /external/llvm/lib/Target/SystemZ/
SystemZAsmPrinter.cpp 94 // Output stubs for external and common global variables.
95 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList();
96 if (!Stubs.empty()) {
100 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
101 OutStreamer.EmitLabel(Stubs[i].first);
102 OutStreamer.EmitSymbolValue(Stubs[i].second.getPointer(),
105 Stubs.clear();
  /external/llvm/lib/Target/X86/
X86AsmPrinter.cpp 530 // Output stubs for dynamically-linked functions.
531 MachineModuleInfoMachO::SymbolListTy Stubs;
533 Stubs = MMIMacho.GetFnStubList();
534 if (!Stubs.empty()) {
543 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
545 OutStreamer.EmitLabel(Stubs[i].first);
547 OutStreamer.EmitSymbolAttribute(Stubs[i].second.getPointer(),
554 Stubs.clear();
558 // Output stubs for external and common global variables.
559 Stubs = MMIMacho.GetGVStubList()
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64AsmPrinter.cpp 283 // Output stubs for external and common global variables.
284 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList();
285 if (!Stubs.empty()) {
289 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
290 OutStreamer.EmitLabel(Stubs[i].first);
291 OutStreamer.EmitSymbolValue(Stubs[i].second.getPointer(),
294 Stubs.clear();
  /external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp 122 void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
195 // External or weakly linked global variables need non-lazily-resolved stubs
785 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList();
786 if (!Stubs.empty()) {
788 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
790 OutStreamer.EmitLabel(Stubs[i].first);
792 OutStreamer.EmitValue(MCSymbolRefExpr::Create(Stubs[i].second.getPointer(),
797 Stubs.clear();
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.h 66 StubMap &Stubs);
RuntimeDyldMachO.cpp 284 StubMap &Stubs) {
335 StubMap::const_iterator i = Stubs.find(Value);
337 if (i != Stubs.end()) {
340 Stubs[Value] = Section.StubOffset;
359 StubMap::const_iterator i = Stubs.find(Value);
360 if (i != Stubs.end())
366 Stubs[Value] = Section.StubOffset;
RuntimeDyldELF.cpp 447 // in the stubs created during JIT (which can't put an addend into the
789 StubMap &Stubs) {
869 StubMap::const_iterator i = Stubs.find(Value);
870 if (i != Stubs.end()) {
877 Stubs[Value] = Section.StubOffset;
    [all...]
RuntimeDyldELF.h 96 StubMap &Stubs);
RuntimeDyldImpl.h 52 /// Size - section size. Doesn't include the stubs.
291 StubMap &Stubs) = 0;
RuntimeDyld.cpp 149 StubMap Stubs;
165 Stubs);
378 // 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());
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/
chrome_stubs.js 6 * @fileoverview Stubs for Chrome extension APIs that aren't available to
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp 660 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetGVStubList();
662 if (!Stubs.empty()) {
666 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
668 OutStreamer.EmitLabel(Stubs[i].first);
670 MachineModuleInfoImpl::StubValueTy &MCSym = Stubs[i].second;
688 Stubs.clear();
692 Stubs = MMIMacho.GetHiddenGVStubList();
693 if (!Stubs.empty()) {
696 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
698 OutStreamer.EmitLabel(Stubs[i].first)
    [all...]
  /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/doclava/src/com/google/doclava/
Doclava.java 146 // Create the dependency graph for the stubs directory
222 } else if (a[0].equals("-stubs")) {
376 // Stubs
378 Stubs.writeStubsAndApi(stubsDir, apiFile, proguardFile, stubPackages);
589 if (option.equals("-stubs")) {
    [all...]
Stubs.java 33 public class Stubs {
135 // write out the stubs
454 // "was automatically written to stubs.\n");
749 // Skip @Override annotations: the stubs do not need it and in some cases it leads
750 // to compilation errors with the way the stubs are generated
    [all...]

Completed in 736 milliseconds