OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Stubs
(Results
1 - 9
of
9
) sorted by null
/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/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/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/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/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp
149
StubMap
Stubs
;
165
Stubs
);
378
// and
stubs
for branches Thumb - ARM and ARM - Thumb.
/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/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
...]
/external/doclava/src/com/google/doclava/
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
...]
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
...]
Completed in 300 milliseconds