HomeSort by relevance Sort by last modified time
    Searched refs:interface (Results 101 - 125 of 4065) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/protobuf/objectivec/
GPBDictionary_PackagePrivate.h 63 //%@interface GPB##KEY_NAME##VALUE_NAME##Dictionary () <GPBDictionaryInternalsProtocol> {
86 @interface GPBUInt32UInt32Dictionary () <GPBDictionaryInternalsProtocol> {
92 @interface GPBUInt32Int32Dictionary () <GPBDictionaryInternalsProtocol> {
98 @interface GPBUInt32UInt64Dictionary () <GPBDictionaryInternalsProtocol> {
104 @interface GPBUInt32Int64Dictionary () <GPBDictionaryInternalsProtocol> {
110 @interface GPBUInt32BoolDictionary () <GPBDictionaryInternalsProtocol> {
116 @interface GPBUInt32FloatDictionary () <GPBDictionaryInternalsProtocol> {
122 @interface GPBUInt32DoubleDictionary () <GPBDictionaryInternalsProtocol> {
128 @interface GPBUInt32EnumDictionary () <GPBDictionaryInternalsProtocol> {
137 @interface GPBUInt32ObjectDictionary () <GPBDictionaryInternalsProtocol>
    [all...]
GPBArray_PackagePrivate.h 48 //%@interface GPB##NAME##Array () {
60 @interface GPBInt32Array () {
68 @interface GPBUInt32Array () {
76 @interface GPBInt64Array () {
84 @interface GPBUInt64Array () {
92 @interface GPBFloatArray () {
100 @interface GPBDoubleArray () {
108 @interface GPBBoolArray () {
116 @interface GPBEnumArray () {
126 @interface GPBAutocreatedArray : NSMutableArray
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug398.go 7 // Used to crash compiler in interface type equality check.
14 type I1 interface {
15 F() interface{I1}
18 type I2 interface {
19 F() interface{I2}
31 type i1 interface {
32 F() interface{i1}
35 type i2 interface {
36 F() interface{i2}
  /prebuilts/go/linux-x86/test/fixedbugs/
bug398.go 7 // Used to crash compiler in interface type equality check.
14 type I1 interface {
15 F() interface{I1}
18 type I2 interface {
19 F() interface{I2}
31 type i1 interface {
32 F() interface{i1}
35 type i2 interface {
36 F() interface{i2}
  /external/curl/docs/cmdline-opts/
dns-interface.d 1 Long: dns-interface
2 Arg: <interface>
3 Help: Interface to use for DNS requests
9 Tell curl to send outgoing DNS requests through <interface>. This option is a
10 counterpart to --interface (which does not affect DNS). The supplied string
11 must be an interface name (not an address).
  /prebuilts/go/darwin-x86/test/interface/
convert1.go 7 // Test static interface conversion of interface value nil.
11 type R interface { R() }
12 type RW interface { R(); W() }
14 var e interface {}
convert2.go 7 // Test static interface conversion of interface value nil.
11 type R interface { R() }
12 type RW interface { R(); W() }
14 var e interface {}
  /prebuilts/go/linux-x86/test/interface/
convert1.go 7 // Test static interface conversion of interface value nil.
11 type R interface { R() }
12 type RW interface { R(); W() }
14 var e interface {}
convert2.go 7 // Test static interface conversion of interface value nil.
11 type R interface { R() }
12 type RW interface { R(); W() }
14 var e interface {}
  /external/dhcpcd-6.8.2/
if.h 97 int if_setflag(struct interface *ifp, short flag);
100 struct interface *if_find(struct if_head *, const char *);
101 struct interface *if_findindex(struct if_head *, unsigned int);
103 void if_free(struct interface *);
107 int if_carrier(struct interface *);
112 int if_conf(struct interface *);
113 int if_init(struct interface *);
114 int if_getssid(struct interface *);
131 int if_openrawsocket(struct interface *, uint16_t);
132 ssize_t if_sendrawpacket(const struct interface *,
    [all...]
  /device/google/marlin/camera/QCamera2/stack/
Android.mk 2 include $(LOCAL_PATH)/mm-camera-interface/Android.mk
3 include $(LOCAL_PATH)/mm-jpeg-interface/Android.mk
4 include $(LOCAL_PATH)/mm-jpeg-interface/test/Android.mk
  /hardware/qcom/camera/msm8998/QCamera2/stack/
Android.mk 2 include $(LOCAL_PATH)/mm-camera-interface/Android.mk
3 include $(LOCAL_PATH)/mm-jpeg-interface/Android.mk
4 include $(LOCAL_PATH)/mm-jpeg-interface/test/Android.mk
  /prebuilts/go/darwin-x86/test/fixedbugs/issue14164.dir/
a.go 8 // It defines a local interface with an unexported method
11 func F(x interface{}) bool {
12 _, ok := x.(interface {
18 // Like F but with the unexported interface method f
19 // defined via an embedded interface t. The compiler
24 func G(x interface{}) bool {
25 type t0 interface {
28 _, ok := x.(interface {
34 // Like G but now the embedded interface is declared
38 func H(x interface{}) bool
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/issue14164.dir/
a.go 8 // It defines a local interface with an unexported method
11 func F(x interface{}) bool {
12 _, ok := x.(interface {
18 // Like F but with the unexported interface method f
19 // defined via an embedded interface t. The compiler
24 func G(x interface{}) bool {
25 type t0 interface {
28 _, ok := x.(interface {
34 // Like G but now the embedded interface is declared
38 func H(x interface{}) bool
    [all...]
  /external/clang/test/PCH/
objc_methods.h 3 @interface TestPCH
13 @interface PR12689
29 @interface PR12689_2
  /art/runtime/mirror/
iftable-inl.h 26 inline void IfTable::SetInterface(int32_t i, ObjPtr<Class> interface) {
27 DCHECK(interface != nullptr);
28 DCHECK(interface->IsInterface());
31 SetWithoutChecks<false>(idx, interface);
  /external/android-clat/
getaddr.h 26 union anyip *getinterface_ip(const char *interface, int family);
  /external/clang/test/Analysis/Inputs/
system-header-simulator-for-objc-dealloc.h 11 @interface NSObject <NSObject> {}
19 @interface NSRunLoop : NSObject
24 @interface NSNotificationCenter : NSObject
34 @interface CIFilter : NSObject
  /external/clang/test/Modules/
import-decl.cpp 13 @interface A
  /external/tensorflow/tensorflow/contrib/lite/examples/ios/camera/
CameraExampleAppDelegate.h 17 @interface CameraExampleAppDelegate : UIResponder<UIApplicationDelegate>
  /external/tensorflow/tensorflow/contrib/lite/examples/ios/simple/
AppDelegate.h 17 @interface AppDelegate : UIResponder<UIApplicationDelegate>
  /external/tensorflow/tensorflow/examples/ios/benchmark/
AppDelegate.h 17 @interface AppDelegate : UIResponder<UIApplicationDelegate>
  /external/tensorflow/tensorflow/examples/ios/camera/
CameraExampleAppDelegate.h 17 @interface CameraExampleAppDelegate : UIResponder<UIApplicationDelegate>
  /external/tensorflow/tensorflow/examples/ios/simple/
AppDelegate.h 17 @interface AppDelegate : UIResponder <UIApplicationDelegate>
  /external/webrtc/talk/app/webrtc/objc/
RTCAudioTrack+Internal.h 32 @interface RTCAudioTrack (Internal)

Completed in 1059 milliseconds

1 2 3 45 6 7 8 91011>>