HomeSort by relevance Sort by last modified time
    Searched refs:INTERFACE (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /frameworks/base/include/binder/
IInterface.h 41 template<typename INTERFACE>
42 inline sp<INTERFACE> interface_cast(const sp<IBinder>& obj)
44 return INTERFACE::asInterface(obj);
49 template<typename INTERFACE>
50 class BnInterface : public INTERFACE, public BBinder
62 template<typename INTERFACE>
63 class BpInterface : public INTERFACE, public BpRefBase
74 #define DECLARE_META_INTERFACE(INTERFACE) \
76 static android::sp<I##INTERFACE> asInterface( \
79 I##INTERFACE(); \
    [all...]
IServiceManager.h 67 template<typename INTERFACE>
68 status_t getService(const String16& name, sp<INTERFACE>* outService)
72 *outService = interface_cast<INTERFACE>(sm->getService(name));
  /cts/tools/signature-tools/src/signature/model/
Kind.java 23 CLASS("class"), INTERFACE("interface"), ANNOTATION("@interface"), ENUM(
  /external/dbus/test/data/incomplete-messages/
missing-body.message 4 HEADER_FIELD INTERFACE
  /external/dbus/test/data/invalid-messages/
bad-boolean.message 6 HEADER_FIELD INTERFACE
local-namespace.message 7 HEADER_FIELD INTERFACE
no-dot-in-name.message 1 ## a message with dotless interface
6 HEADER_FIELD INTERFACE
overlong-name.message 5 HEADER_FIELD INTERFACE
bad-boolean-array.message 6 HEADER_FIELD INTERFACE
bad-endian.message 11 HEADER_FIELD INTERFACE
not-nul-header-padding.message 6 HEADER_FIELD INTERFACE
too-little-header-padding.message 6 HEADER_FIELD INTERFACE
too-much-header-padding-by-far.message 6 HEADER_FIELD INTERFACE
too-much-header-padding.message 6 HEADER_FIELD INTERFACE
bad-header-field-alignment.message 6 HEADER_FIELD INTERFACE
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
d3drmwin.h 22 * GUIDS used by Direct3DRM Windows interface
28 #undef INTERFACE
29 #define INTERFACE IDirect3DRMWinDevice
d3drmobj.h 46 typedef interface itype FAR *LP##ptype, FAR **LPLP##ptype
140 #undef INTERFACE
141 #define INTERFACE IDirect3DRMObject
152 #undef INTERFACE
153 #define INTERFACE IDirect3DRMVisual
161 #undef INTERFACE
162 #define INTERFACE IDirect3DRMDevice
201 #undef INTERFACE
202 #define INTERFACE IDirect3DRMViewport
248 #undef INTERFACE
    [all...]
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
D3DRMWIN.H 22 * GUIDS used by Direct3DRM Windows interface
28 #undef INTERFACE
29 #define INTERFACE IDirect3DRMWinDevice
D3DRMOBJ.H 46 typedef interface itype FAR *LP##ptype, FAR **LPLP##ptype
140 #undef INTERFACE
141 #define INTERFACE IDirect3DRMObject
152 #undef INTERFACE
153 #define INTERFACE IDirect3DRMVisual
161 #undef INTERFACE
162 #define INTERFACE IDirect3DRMDevice
201 #undef INTERFACE
202 #define INTERFACE IDirect3DRMViewport
248 #undef INTERFACE
    [all...]
  /external/dbus/test/data/valid-messages/
simplest-manual.message 17 HEADER_FIELD INTERFACE
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
ModifierTest.java 62 assertTrue("INTERFACE returned false", Modifier.isInterface(ALL_FLAGS));
63 assertTrue("INTERFACE returned false", Modifier
64 .isInterface(Modifier.INTERFACE));
65 assertTrue("Non-INTERFACE returned true", !Modifier
188 + "volatile synchronized native strictfp interface";
196 assertEquals(512, Modifier.INTERFACE);
217 interface InterfaceClazz {
256 public interface PublicInterface {
259 protected interface ProtectedInterface {
262 private interface PrivateInterface
    [all...]
  /external/javassist/src/main/javassist/
Modifier.java 41 public static final int INTERFACE = AccessFlag.INTERFACE;
128 * Returns true if the modifiers include the <tt>interface</tt>
132 return (mod & INTERFACE) != 0;
  /external/bluetooth/glib/tests/gobject/
ifacecheck.c 65 INTERFACE (NULL, TEST_TYPE_IFACE))
77 INTERFACE (NULL, TEST_TYPE_IFACE))
89 INTERFACE (NULL, TEST_TYPE_IFACE))
  /cts/tools/dasm/src/dasm/
sym.java 41 static final int INTERFACE = 41;
  /libcore/luni/src/main/java/java/lang/reflect/
Modifier.java 80 * The {@code int} value representing the {@code interface}
83 public static final int INTERFACE = 0x200;
186 * interface} modifier.
191 * interface} modifier, {@code false} otherwise
194 return ((modifiers & INTERFACE) != 0);
319 * {@code public private protected abstract static final transient volatile native synchronized interface strict}
362 buf.append("interface ");

Completed in 151 milliseconds

1 2 3 4