OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Stubs
(Results
1 - 6
of
6
) sorted by null
/external/doclava/src/com/google/doclava/apicheck/
ApiCheck.java
31
import com.google.doclava.
Stubs
;
226
Stubs
.writeApi(apiWriter, api.getPackages().values());
248
Stubs
.writeXml(apiWriter, api.getPackages().values());
/external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp
127
void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &
Stubs
);
200
// External or weakly linked global variables need non-lazily-resolved
stubs
482
EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &
Stubs
) {
491
// Output
stubs
for dynamically-linked functions
498
for (unsigned i = 0, e =
Stubs
.size(); i != e; ++i) {
502
MCSymbol *Stub =
Stubs
[i].first;
503
MCSymbol *RawSym =
Stubs
[i].second.getPointer();
545
for (unsigned i = 0, e =
Stubs
.size(); i != e; ++i) {
546
MCSymbol *Stub =
Stubs
[i].first;
547
MCSymbol *RawSym =
Stubs
[i].second.getPointer()
[
all
...]
/external/llvm/lib/Target/X86/
X86AsmPrinter.cpp
488
// Output
stubs
for dynamically-linked functions.
489
MachineModuleInfoMachO::SymbolListTy
Stubs
;
491
Stubs
= MMIMacho.GetFnStubList();
492
if (!
Stubs
.empty()) {
501
for (unsigned i = 0, e =
Stubs
.size(); i != e; ++i) {
503
OutStreamer.EmitLabel(
Stubs
[i].first);
505
OutStreamer.EmitSymbolAttribute(
Stubs
[i].second.getPointer(),
512
Stubs
.clear();
516
// Output
stubs
for external and common global variables.
517
Stubs
= MMIMacho.GetGVStubList()
[
all
...]
/external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp
516
MachineModuleInfoMachO::SymbolListTy
Stubs
= MMIMacho.GetGVStubList();
518
if (!
Stubs
.empty()) {
522
for (unsigned i = 0, e =
Stubs
.size(); i != e; ++i) {
524
OutStreamer.EmitLabel(
Stubs
[i].first);
526
MachineModuleInfoImpl::StubValueTy &MCSym =
Stubs
[i].second;
544
Stubs
.clear();
548
Stubs
= MMIMacho.GetHiddenGVStubList();
549
if (!
Stubs
.empty()) {
552
for (unsigned i = 0, e =
Stubs
.size(); i != e; ++i) {
554
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");
[
all
...]
Completed in 403 milliseconds