HomeSort by relevance Sort by last modified time
    Searched full:stub (Results 1 - 25 of 3196) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/linux-tools-perf/src/tools/perf/util/include/asm/
asm-offsets.h 0 /* stub */
swab.h 0 /* stub */
  /external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/dxgi/
dxgi.spec 3 @ stub DXGID3D10CreateDevice
4 @ stub DXGID3D10RegisterLayers
  /external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/d3d10/
d3d10.spec 1 @ stub D3D10CompileEffectFromMemory
2 @ stub D3D10CompileShader
6 @ stub D3D10CreateEffectFromMemory
7 @ stub D3D10CreateEffectPoolFromMemory
8 @ stub D3D10CreateStateBlock
9 @ stub D3D10DisassembleEffect
10 @ stub D3D10DisassembleShader
16 @ stub D3D10GetShaderDebugInfo
17 @ stub D3D10GetVersion
19 @ stub D3D10PreprocessShade
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/d3d10_1/
d3d10_1.spec 1 @ stub D3D10CompileShader
5 @ stub D3D10CreateEffectFromMemory
6 @ stub D3D10CreateEffectPoolFromMemory
7 @ stub D3D10CreateStateBlock
8 @ stub D3D10DisassembleEffect
9 @ stub D3D10DisassembleShader
15 @ stub D3D10GetShaderDebugInfo
16 @ stub D3D10GetVersion
18 @ stub D3D10PreprocessShader
19 @ stub D3D10ReflectShade
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/d3d11/
d3d11.spec 1 @ stub D3D11CoreCreateDevice
2 @ stub D3D11CoreCreateLayeredDevice
3 @ stub D3D11CoreGetLayeredDeviceSize
4 @ stub D3D11CoreRegisterLayers
  /external/robolectric/src/main/java/android/os/
TestVibrator.java 7 // TODO Auto-generated method stub
12 // TODO Auto-generated method stub
18 // TODO Auto-generated method stub
23 // TODO Auto-generated method stub
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/b/
B.java 4 public B() { throw new RuntimeException("Stub!"); }
  /external/conscrypt/
build.gradle 4 stub {
6 'src/stub/java'
16 compileClasspath += sourceSets.stub.output
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
Foo.java 8 throw new RuntimeException("stub!");
12 throw new RuntimeException("stub!");
16 throw new RuntimeException("stub!");
  /external/conscrypt/src/stub/java/com/android/org/conscrypt/
OpenSSLSocketImpl.java 51 throw new RuntimeException("Stub!");
57 throw new RuntimeException("Stub!");
62 throw new RuntimeException("Stub!");
67 throw new RuntimeException("Stub!");
74 throw new RuntimeException("Stub!");
80 throw new RuntimeException("Stub!");
85 throw new RuntimeException("Stub!");
89 throw new RuntimeException("Stub!");
95 throw new RuntimeException("Stub!");
100 throw new RuntimeException("Stub!");
    [all...]
  /external/conscrypt/src/stub/java/org/apache/harmony/xnet/xnet/provider/jsse/
OpenSSLSocketImpl.java 51 throw new RuntimeException("Stub!");
57 throw new RuntimeException("Stub!");
62 throw new RuntimeException("Stub!");
67 throw new RuntimeException("Stub!");
74 throw new RuntimeException("Stub!");
80 throw new RuntimeException("Stub!");
85 throw new RuntimeException("Stub!");
89 throw new RuntimeException("Stub!");
95 throw new RuntimeException("Stub!");
100 throw new RuntimeException("Stub!");
    [all...]
  /external/v8/src/
code-factory.cc 55 BinaryOpICStub stub(isolate, op, mode);
56 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
64 ToBooleanStub stub(isolate, mode, types);
65 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
71 ToNumberStub stub(isolate);
72 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor());
79 StringAddStub stub(isolate, flags, pretenure_flag)
    [all...]
  /art/runtime/arch/mips/
entrypoints_init_mips.cc 76 static_assert(IsDirectEntrypoint(kQuickInstanceofNonTrivial), "Direct C stub not marked direct.");
78 static_assert(!IsDirectEntrypoint(kQuickCheckCast), "Non-direct C stub marked direct.");
83 "Non-direct C stub marked direct.");
86 "Non-direct C stub marked direct.");
88 static_assert(!IsDirectEntrypoint(kQuickInitializeType), "Non-direct C stub marked direct.");
90 static_assert(!IsDirectEntrypoint(kQuickResolveString), "Non-direct C stub marked direct.");
94 static_assert(!IsDirectEntrypoint(kQuickSet8Instance), "Non-direct C stub marked direct.");
96 static_assert(!IsDirectEntrypoint(kQuickSet8Static), "Non-direct C stub marked direct.");
98 static_assert(!IsDirectEntrypoint(kQuickSet16Instance), "Non-direct C stub marked direct.");
100 static_assert(!IsDirectEntrypoint(kQuickSet16Static), "Non-direct C stub marked direct.")
    [all...]
  /frameworks/compile/mclinker/lib/LD/
StubFactory.cpp 13 #include "mcld/Fragment/Stub.h"
33 /// addPrototype - register a stub prototype
34 void StubFactory::addPrototype(Stub* pPrototype) {
38 /// create - create a stub if needed, otherwise return NULL
39 Stub* StubFactory::create(Relocation& pReloc,
43 // find if there is a prototype stub for the input relocation
44 Stub* stub = NULL; local
45 Stub* prototype = findPrototype(pReloc, pReloc.place(), pTargetSymValue);
56 // find if there is such a stub in the backward island first
    [all...]
  /external/mesa3d/src/mapi/mapi/
stub.c 36 #include "stub.h"
74 const struct mapi_stub *stub = (const struct mapi_stub *) elem; local
77 stub_name = &public_string_pool[(unsigned long) stub->name];
83 * Return the public stub with the given name.
93 * Add a dynamic stub.
98 struct mapi_stub *stub; local
106 stub = &dynamic_stubs[idx];
109 stub->addr = entry_generate(
111 if (!stub->addr)
114 stub->name = (const void *) name
131 struct mapi_stub *stub = NULL; local
    [all...]
mapi.c 35 #include "stub.h"
45 const struct mapi_stub *stub; local
47 stub = stub_find_public(name);
48 if (!stub) {
52 stub = dyn;
56 return stub;
100 const struct mapi_stub *stub; local
102 stub = get_stub(p, NULL);
104 if (!stub)
109 get_stub(p, stub);
129 const struct mapi_stub *stub; local
174 const struct mapi_stub *stub = mapi_stub_map[i]; local
    [all...]
  /device/generic/goldfish/camera/
JpegStub.cpp 26 extern "C" void JpegStub_init(JpegStub* stub, int* strides) {
27 stub->mInternalEncoder = (void*) new Yuv420SpToJpegEncoder(strides);
28 stub->mInternalStream = (void*)new SkDynamicMemoryWStream();
31 extern "C" void JpegStub_cleanup(JpegStub* stub) {
32 delete((Yuv420SpToJpegEncoder*)stub->mInternalEncoder);
33 delete((SkDynamicMemoryWStream*)stub->mInternalStream);
36 extern "C" int JpegStub_compress(JpegStub* stub, const void* image,
45 (Yuv420SpToJpegEncoder*)stub->mInternalEncoder;
47 (SkDynamicMemoryWStream*)stub->mInternalStream;
59 extern "C" void JpegStub_getCompressedImage(JpegStub* stub, void* buff)
    [all...]
JpegStub.h 27 void JpegStub_init(JpegStub* stub, int* strides);
28 void JpegStub_cleanup(JpegStub* stub);
29 int JpegStub_compress(JpegStub* stub, const void* image,
31 void JpegStub_getCompressedImage(JpegStub* stub, void* buff);
32 size_t JpegStub_getCompressedSize(JpegStub* stub);
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
IWindowManagerImpl.java 78 // TODO Auto-generated method stub
84 // TODO Auto-generated method stub
90 // TODO Auto-generated method stub
95 // TODO Auto-generated method stub
101 // TODO Auto-generated method stub
106 // TODO Auto-generated method stub
112 // TODO Auto-generated method stub
117 // TODO Auto-generated method stub
122 // TODO Auto-generated method stub
128 // TODO Auto-generated method stub
    [all...]
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/a/
A.java 8 public Inner() { throw new RuntimeException("Stub!"); }
10 protected A(int a) { throw new RuntimeException("Stub!"); }
11 public com.android.stubs.a.A varargs(com.android.stubs.Parent[]... args) { throw new RuntimeException("Stub!"); }
12 public void method() { throw new RuntimeException("Stub!"); }
  /frameworks/compile/mclinker/include/mcld/Fragment/
Stub.h 1 //===- Stub.h -------------------------------------------------------------===//
26 class Stub : public Fragment {
57 Stub();
59 virtual ~Stub();
61 /// clone - clone function for stub factory to create the corresponding stub
62 Stub* clone() { return doClone(); }
64 /// isMyDuty - return true when the pReloc is problematic and the stub is able
70 /// name - name of this stub
73 /// getContent - content of the stub
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeIInputMethodManager.java 43 // TODO Auto-generated method stub
49 // TODO Auto-generated method stub
55 // TODO Auto-generated method stub
61 // TODO Auto-generated method stub
68 // TODO Auto-generated method stub
74 // TODO Auto-generated method stub
80 // TODO Auto-generated method stub
86 // TODO Auto-generated method stub
92 // TODO Auto-generated method stub
99 // TODO Auto-generated method stub
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
StubFactory.h 21 class Stub;
24 * \brief the clone factory of Stub
31 /// addPrototype - register a stub prototype
32 void addPrototype(Stub* pPrototype);
34 /// create - create a stub if needed, otherwise return NULL
35 Stub* create(Relocation& pReloc,
41 /// findPrototype - find if there is a registered stub prototype for the given
43 Stub* findPrototype(const Relocation& pReloc,
48 typedef std::vector<Stub*> StubPoolType;
51 StubPoolType m_StubPool; // stub poo
    [all...]
  /frameworks/compile/mclinker/lib/Fragment/
Stub.cpp 1 //===- Stub.cpp -----------------------------------------------------------===//
9 #include "mcld/Fragment/Stub.h"
13 Stub::Stub() : Fragment(Fragment::Stub), m_pSymInfo(NULL) {
16 Stub::~Stub() {
21 void Stub::setSymInfo(ResolveInfo* pSymInfo) {
25 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType) {
30 void Stub::addFixup(const Fixup& pFixup)
    [all...]

Completed in 696 milliseconds

1 2 3 4 5 6 7 8 91011>>