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

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/crypto/aes/
modes.go 12 // implementation of GCM through the AEAD interface.
14 type gcmAble interface {
19 // implementation of CBC encryption through the cipher.BlockMode interface.
21 type cbcEncAble interface {
26 // implementation of CBC decryption through the cipher.BlockMode interface.
28 type cbcDecAble interface {
33 // implementation of CTR through the cipher.Stream interface.
35 type ctrAble interface {
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug419.go 12 type E interface{}
14 type I interface {
issue16130.go 7 // Test that an interface conversion error panics with an "interface
19 type I interface {
33 if !strings.Contains(re.Error(), "interface conversion") {
34 panic(fmt.Sprintf("got %q, expected interface conversion error", re.Error()))
37 e := (interface{})(0)
39 panic("unexpected interface conversion success")
42 panic("unexpected interface conversion success")
issue16369.go 9 type T interface {
10 M(interface {
issue8079.go 7 // Issue 8079: gccgo crashes when compiling interface with blank type name.
11 type _ interface{}
issue16016.go 13 func (*T) Foo(vals []interface{}) {
22 type Q interface {
23 Foo([]interface{})
30 defer q.Foo([]interface{}{"meow"})
  /prebuilts/go/darwin-x86/test/fixedbugs/issue5614.dir/
rethinkgo.go 8 type List []interface{}
11 args []interface{}
  /prebuilts/go/darwin-x86/test/syntax/
interface.go 9 type T interface {
10 f, g () // ERROR "name list not allowed in interface type"
  /prebuilts/go/linux-x86/src/crypto/aes/
modes.go 12 // implementation of GCM through the AEAD interface.
14 type gcmAble interface {
19 // implementation of CBC encryption through the cipher.BlockMode interface.
21 type cbcEncAble interface {
26 // implementation of CBC decryption through the cipher.BlockMode interface.
28 type cbcDecAble interface {
33 // implementation of CTR through the cipher.Stream interface.
35 type ctrAble interface {
  /prebuilts/go/linux-x86/test/fixedbugs/
bug419.go 12 type E interface{}
14 type I interface {
issue16130.go 7 // Test that an interface conversion error panics with an "interface
19 type I interface {
33 if !strings.Contains(re.Error(), "interface conversion") {
34 panic(fmt.Sprintf("got %q, expected interface conversion error", re.Error()))
37 e := (interface{})(0)
39 panic("unexpected interface conversion success")
42 panic("unexpected interface conversion success")
issue16369.go 9 type T interface {
10 M(interface {
issue8079.go 7 // Issue 8079: gccgo crashes when compiling interface with blank type name.
11 type _ interface{}
  /prebuilts/go/linux-x86/test/fixedbugs/issue5614.dir/
rethinkgo.go 8 type List []interface{}
11 args []interface{}
  /prebuilts/go/linux-x86/test/syntax/
interface.go 9 type T interface {
10 f, g () // ERROR "name list not allowed in interface type"
  /external/clang/test/SemaObjC/Inputs/
arc-system-header.h 17 @interface Test4 {
40 @interface Test7
  /external/clang/test/SemaObjCXX/Inputs/
nullability-consistency-2.h 11 @interface SomeClass
19 @interface SomeClass ()
  /external/protobuf/objectivec/
GPBRootObject_PackagePrivate.h 37 @interface GPBRootObject ()
  /external/skia/src/gpu/gl/
GrGLContext.cpp 14 std::unique_ptr<GrGLContext> GrGLContext::Make(sk_sp<const GrGLInterface> interface,
16 if (!interface->validate()) {
21 GR_GL_CALL_RET(interface.get(), verUByte, GetString(GR_GL_VERSION));
25 GR_GL_CALL_RET(interface.get(), rendererUByte, GetString(GR_GL_RENDERER));
34 if (!GrGLGetGLSLGeneration(interface.get(), &args.fGLSLGeneration)) {
38 args.fVendor = GrGLGetVendor(interface.get());
56 GrGLGetDriverInfo(interface->fStandard, args.fVendor, renderer, ver,
60 args.fInterface = std::move(interface);
  /external/skqp/src/gpu/gl/
GrGLContext.cpp 14 std::unique_ptr<GrGLContext> GrGLContext::Make(sk_sp<const GrGLInterface> interface,
16 if (!interface->validate()) {
21 GR_GL_CALL_RET(interface.get(), verUByte, GetString(GR_GL_VERSION));
25 GR_GL_CALL_RET(interface.get(), rendererUByte, GetString(GR_GL_RENDERER));
34 if (!GrGLGetGLSLGeneration(interface.get(), &args.fGLSLGeneration)) {
38 args.fVendor = GrGLGetVendor(interface.get());
56 GrGLGetDriverInfo(interface->fStandard, args.fVendor, renderer, ver,
60 args.fInterface = std::move(interface);
  /external/syslinux/gpxe/src/arch/x86/
Makefile 8 SRCDIRS += arch/x86/interface/efi
  /external/webrtc/talk/app/webrtc/objc/public/
RTCVideoCapturer.h 31 @interface RTCVideoCapturer : NSObject
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/
ARDVideoCallViewController.h 13 @interface ARDVideoCallViewController : UIViewController
  /external/wpa_supplicant_8/wpa_supplicant/examples/
udhcpd-p2p.conf 9 # The interface that udhcpd will use
11 interface wlan2 #default: eth0
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
error1.go 7 type I0 interface {
8 // When embedded, the predeclared error interface
9 // must remain visible in interface types.
14 ExportedField interface {

Completed in 495 milliseconds

<<11121314151617181920>>