HomeSort by relevance Sort by last modified time
    Searched full:intf (Results 26 - 50 of 297) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaObjC/
method-encoding-2.m 4 @interface Intf
9 @implementation Intf
method-unused-attribute.m 3 @interface INTF
9 @implementation INTF
transparent-union.m 15 @interface INTF
20 @implementation INTF
class-impl-1.m 9 @interface INTF : OBJECT
12 @implementation INTF @end // expected-note {{previous definition is here}}
14 @implementation INTF // expected-error {{reimplementation of class 'INTF'}}
class-def-test-1.m 7 typedef int INTF; // expected-note {{previous definition is here}}
9 @interface INTF @end // expected-error {{redefinition of 'INTF' as different kind of symbol}}
objc2-merge-gc-attribue-decl.m 2 @interface INTF @end
4 extern INTF* p2;
5 extern __strong INTF* p2;
ivar-sem-check-1.m 6 @interface INTF
conflicting-ivar-test-1.m 3 @interface INTF
10 @implementation INTF
forward-class-1.m 6 @interface INTF : FOO // expected-error {{attempting to use the forward class 'FOO' as superclass of 'INTF'}}
super-class-protocol-conformance.m 60 @interface INTF : Super <ProtocolWithProperty>
63 @implementation INTF @end // expected-warning{{property 'invalidationBacktrace' requires method 'invalidationBacktrace' to be defined}}
undef-protocol-methods-1.m 25 @interface INTF <PROTO>
28 @implementation INTF // expected-warning 9 {{in protocol '}}
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbTestActivity.java 61 UsbInterface intf = findAdbInterface(device); local
62 if (setAdbInterface(device, intf)) {
120 private boolean setAdbInterface(UsbDevice device, UsbInterface intf) {
131 if (device != null && intf != null) {
135 if (connection.claimInterface(intf, false)) {
139 mInterface = intf;
140 mAdbDevice = new AdbDevice(this, mDeviceConnection, intf);
165 UsbInterface intf = device.getInterface(i); local
166 if (intf.getInterfaceClass() == 255 && intf.getInterfaceSubclass() == 66 &
    [all...]
  /external/clang/test/FixIt/
fixit-interface-as-param.m 6 @interface INTF
  /external/clang/test/Parser/
objc-interfaces.m 5 @interface INTF
  /system/core/adf/libadf/tests/
adf_test.cpp 26 AdfTest() : intf_id(0), intf(-1), eng_id(0), eng(-1) { }
38 intf = adf_interface_open(&dev, intf_id, O_RDWR);
39 ASSERT_GE(intf, 0) << "opening ADF interface " << dev_id << "." <<
40 intf_id << " failed: " << strerror(-intf);
50 if (intf >= 0)
51 close(intf);
97 int err = adf_get_interface_data(intf, &data);
111 int err = adf_interface_blank(intf, mode);
132 int err = adf_read_event(intf, &event);
147 int intf;
    [all...]
  /external/clang/test/Rewriter/
method-encoding-1.m 8 @interface Intf <P1>
13 @implementation Intf
rewrite-modern-protocol.mm 27 @interface INTF <PROTO, ROOT>
30 @implementation INTF
  /prebuilts/go/darwin-x86/test/fixedbugs/issue9537.dir/
b.go 17 type Intf interface {
25 var ix Intf = X{x}
  /prebuilts/go/linux-x86/test/fixedbugs/issue9537.dir/
b.go 17 type Intf interface {
25 var ix Intf = X{x}
  /hardware/qcom/audio/legacy/alsa_sound/
Android.mk 46 libalsa-intf
51 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/libalsa-intf
114 LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/mm-audio/libalsa-intf
124 libalsa-intf
  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_virtual.cpp 37 DisplayError HWVirtual::Create(HWInterface **intf, HWInfoInterface *hw_info_intf,
47 *intf = hw_virtual;
53 DisplayError HWVirtual::Destroy(HWInterface *intf) {
54 HWVirtual *hw_virtual = static_cast<HWVirtual *>(intf);
  /external/mdnsresponder/mDNSPosix/
mDNSPosix.c 230 mDNSlocal void SocketDataReady(mDNS *const m, PosixNetworkInterface *intf, int skt)
242 const mDNSInterfaceID InterfaceID = intf ? intf->coreIntf.InterfaceID : NULL;
289 if (!intf)
296 if (packetInfo.ipi_ifname[0] != 0) reject = (strcmp(packetInfo.ipi_ifname, intf->intfName) != 0);
297 else if (packetInfo.ipi_ifindex != -1) reject = (packetInfo.ipi_ifindex != intf->index);
303 &intf->coreIntf.ip, intf->intfName, intf->index, skt);
318 &senderAddr, &destAddr, &intf->coreIntf.ip, intf->intfName, intf->index, skt)
537 PosixNetworkInterface *intf; local
551 PosixNetworkInterface *intf; local
568 PosixNetworkInterface *intf; local
612 PosixNetworkInterface *intf = (PosixNetworkInterface*)(m->HostInterfaces); local
854 PosixNetworkInterface *intf; local
    [all...]
  /external/skia/src/views/win/
SkOSWindow_win.cpp 504 SkAutoTUnref<const GrGLInterface> intf(GrGLCreateANGLEInterface());
506 if (intf) {
507 ANGLE_GL_CALL(intf, ClearStencil(0));
508 ANGLE_GL_CALL(intf, ClearColor(0, 0, 0, 0));
509 ANGLE_GL_CALL(intf, StencilMask(0xffffffff));
510 ANGLE_GL_CALL(intf, Clear(GL_STENCIL_BUFFER_BIT |GL_COLOR_BUFFER_BIT));
517 SkAutoTUnref<const GrGLInterface> intf(GrGLCreateANGLEInterface());
519 if (intf ) {
520 ANGLE_GL_CALL(intf, Viewport(0, 0,
543 SkAutoTUnref<const GrGLInterface> intf(GrGLCreateANGLEInterface())
    [all...]
  /external/clang/test/CodeGenObjC/
objc2-protocol-enc.m 17 @interface Intf <Proto>
26 @implementation Intf
  /external/clang/test/CodeGenObjCXX/
catch-id-type.mm 16 @interface INTF<P> {
27 catch( INTF<P>* error )

Completed in 261 milliseconds

12 3 4 5 6 7 8 91011>>