OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
130
void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &
Stubs
);
203
// External or weakly linked global variables need non-lazily-resolved
stubs
540
EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &
Stubs
) {
549
// Output
stubs
for dynamically-linked functions
556
for (unsigned i = 0, e =
Stubs
.size(); i != e; ++i) {
560
MCSymbol *Stub =
Stubs
[i].first;
561
MCSymbol *RawSym =
Stubs
[i].second.getPointer();
603
for (unsigned i = 0, e =
Stubs
.size(); i != e; ++i) {
604
MCSymbol *Stub =
Stubs
[i].first;
605
MCSymbol *RawSym =
Stubs
[i].second.getPointer()
[
all
...]
/external/llvm/lib/Target/X86/
X86AsmPrinter.cpp
520
// Output
stubs
for dynamically-linked functions.
521
MachineModuleInfoMachO::SymbolListTy
Stubs
;
523
Stubs
= MMIMacho.GetFnStubList();
524
if (!
Stubs
.empty()) {
533
for (unsigned i = 0, e =
Stubs
.size(); i != e; ++i) {
535
OutStreamer.EmitLabel(
Stubs
[i].first);
537
OutStreamer.EmitSymbolAttribute(
Stubs
[i].second.getPointer(),
544
Stubs
.clear();
548
// Output
stubs
for external and common global variables.
549
Stubs
= MMIMacho.GetGVStubList()
[
all
...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp
153
StubMap
Stubs
;
177
processRelocationRef(RI, *obj, LocalSections, LocalSymbols,
Stubs
);
339
// and
stubs
for branches Thumb - ARM and ARM - Thumb.
/external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp
638
MachineModuleInfoMachO::SymbolListTy
Stubs
= MMIMacho.GetGVStubList();
640
if (!
Stubs
.empty()) {
644
for (unsigned i = 0, e =
Stubs
.size(); i != e; ++i) {
646
OutStreamer.EmitLabel(
Stubs
[i].first);
648
MachineModuleInfoImpl::StubValueTy &MCSym =
Stubs
[i].second;
666
Stubs
.clear();
670
Stubs
= MMIMacho.GetHiddenGVStubList();
671
if (!
Stubs
.empty()) {
674
for (unsigned i = 0, e =
Stubs
.size(); i != e; ++i) {
676
OutStreamer.EmitLabel(
Stubs
[i].first)
[
all
...]
/external/doclava/src/com/google/doclava/
Doclava.java
129
// Create the dependency graph for the
stubs
directory
191
} else if (a[0].equals("-
stubs
")) {
320
//
Stubs
322
Stubs
.writeStubsAndApi(stubsDir, apiFile, proguardFile, stubPackages);
520
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 548 milliseconds