Home
last modified time | relevance | path

Searched refs:interface (Results 1 – 25 of 2947) sorted by relevance

12345678910>>...118

/external/skia/src/gpu/mac/
DGrGLCreateNativeInterface_mac.cpp35 GrGLInterface* interface = new GrGLInterface; in GrGLCreateNativeInterface() local
36 glInterface.reset(interface); in GrGLCreateNativeInterface()
41 interface->fBindingsExported = kDesktop_GrGLBinding; in GrGLCreateNativeInterface()
42 interface->fActiveTexture = glActiveTexture; in GrGLCreateNativeInterface()
43 interface->fAttachShader = glAttachShader; in GrGLCreateNativeInterface()
44 interface->fBeginQuery = glBeginQuery; in GrGLCreateNativeInterface()
45 interface->fBindAttribLocation = glBindAttribLocation; in GrGLCreateNativeInterface()
46 interface->fBindBuffer = glBindBuffer; in GrGLCreateNativeInterface()
49 interface->fBindFragDataLocation = glBindFragDataLocation; in GrGLCreateNativeInterface()
51 interface->fBindFragDataLocation = GET_PROC(BindFragDataLocation); in GrGLCreateNativeInterface()
[all …]
/external/skia/src/gpu/android/
DGrGLCreateNativeInterface_android.cpp19 GrGLInterface* interface = new GrGLInterface; in GrGLCreateNativeInterface() local
20 glInterface.reset(interface); in GrGLCreateNativeInterface()
21 interface->fBindingsExported = kES2_GrGLBinding; in GrGLCreateNativeInterface()
22 interface->fActiveTexture = glActiveTexture; in GrGLCreateNativeInterface()
23 interface->fAttachShader = glAttachShader; in GrGLCreateNativeInterface()
24 interface->fBindAttribLocation = glBindAttribLocation; in GrGLCreateNativeInterface()
25 interface->fBindBuffer = glBindBuffer; in GrGLCreateNativeInterface()
26 interface->fBindTexture = glBindTexture; in GrGLCreateNativeInterface()
27 interface->fBlendColor = glBlendColor; in GrGLCreateNativeInterface()
28 interface->fBlendFunc = glBlendFunc; in GrGLCreateNativeInterface()
[all …]
/external/skia/src/gpu/ios/
DGrGLDefaultInterface_iOS.cpp18 GrGLInteface* interface = new GrGLInterface; in GrGLDefaultInterface() local
19 glInterface.reset(interface); in GrGLDefaultInterface()
21 interface->fActiveTexture = glActiveTexture; in GrGLDefaultInterface()
22 interface->fAttachShader = glAttachShader; in GrGLDefaultInterface()
23 interface->fBindAttribLocation = glBindAttribLocation; in GrGLDefaultInterface()
24 interface->fBindBuffer = glBindBuffer; in GrGLDefaultInterface()
25 interface->fBindTexture = glBindTexture; in GrGLDefaultInterface()
26 interface->fBlendColor = glBlendColor; in GrGLDefaultInterface()
27 interface->fBlendFunc = glBlendFunc; in GrGLDefaultInterface()
28 interface->fBufferData = (GrGLBufferDataProc)glBufferData; in GrGLDefaultInterface()
[all …]
/external/skia/src/gpu/unix/
DGrGLCreateNativeInterface_unix.cpp17 #define GR_GL_GET_PROC(F) interface->f ## F = (GrGL ## F ## Proc) \
19 #define GR_GL_GET_PROC_SUFFIX(F, S) interface->f ## F = (GrGL ## F ## Proc) \
33 GrGLInterface* interface = new GrGLInterface(); in GrGLCreateNativeInterface() local
35 interface->fActiveTexture = glActiveTexture; in GrGLCreateNativeInterface()
41 interface->fBindTexture = glBindTexture; in GrGLCreateNativeInterface()
42 interface->fBlendColor = glBlendColor; in GrGLCreateNativeInterface()
43 interface->fBlendFunc = glBlendFunc; in GrGLCreateNativeInterface()
46 interface->fClear = glClear; in GrGLCreateNativeInterface()
47 interface->fClearColor = glClearColor; in GrGLCreateNativeInterface()
48 interface->fClearStencil = glClearStencil; in GrGLCreateNativeInterface()
[all …]
/external/skia/src/gpu/gl/
DGrGLCreateNullInterface.cpp385 GrGLInterface* interface = new GrGLInterface; in GrGLCreateNullInterface() local
386 glInterface.reset(interface); in GrGLCreateNullInterface()
387 interface->fBindingsExported = kDesktop_GrGLBinding; in GrGLCreateNullInterface()
388 interface->fActiveTexture = nullGLActiveTexture; in GrGLCreateNullInterface()
389 interface->fAttachShader = nullGLAttachShader; in GrGLCreateNullInterface()
390 interface->fBeginQuery = nullGLBeginQuery; in GrGLCreateNullInterface()
391 interface->fBindAttribLocation = nullGLBindAttribLocation; in GrGLCreateNullInterface()
392 interface->fBindBuffer = nullGLBindBuffer; in GrGLCreateNullInterface()
393 interface->fBindFragDataLocation = nullGLBindFragDataLocation; in GrGLCreateNullInterface()
394 interface->fBindTexture = nullGLBindTexture; in GrGLCreateNullInterface()
[all …]
DGrGLContextInfo.cpp19 GrGLContextInfo::GrGLContextInfo(const GrGLInterface* interface) { in GrGLContextInfo() argument
21 this->initialize(interface); in GrGLContextInfo()
48 bool GrGLContextInfo::initialize(const GrGLInterface* interface) { in initialize() argument
52 if (NULL != interface->fGetString) { in initialize()
55 GR_GL_CALL_RET(interface, verUByte, GetString(GR_GL_VERSION)); in initialize()
59 if (!interface->validate(fBindingInUse)) { in initialize()
61 fInterface = interface; in initialize()
62 interface->ref(); in initialize()
69 this->interface()); in initialize()
72 GR_GL_CALL_RET(interface, ext, GetString(GR_GL_EXTENSIONS)); in initialize()
/external/skia/src/gpu/win/
DGrGLCreateNativeInterface_win.cpp21 #define GR_GL_GET_PROC(F) interface->f ## F = (GrGL ## F ## Proc) wglGetProcAddress("gl" #F);
22 #define GR_GL_GET_PROC_SUFFIX(F, S) interface->f ## F = (GrGL ## F ## Proc) wglGetProcAddress("gl" …
38 GrGLInterface* interface = new GrGLInterface(); in GrGLCreateNativeInterface() local
42 interface->fBindTexture = glBindTexture; in GrGLCreateNativeInterface()
43 interface->fBlendFunc = glBlendFunc; in GrGLCreateNativeInterface()
44 interface->fClear = glClear; in GrGLCreateNativeInterface()
45 interface->fClearColor = glClearColor; in GrGLCreateNativeInterface()
46 interface->fClearStencil = glClearStencil; in GrGLCreateNativeInterface()
47 interface->fColorMask = glColorMask; in GrGLCreateNativeInterface()
48 interface->fColorPointer = glColorPointer; in GrGLCreateNativeInterface()
[all …]
/external/clang/test/SemaObjC/
Dcategory-1.m3 @interface MyClass1 @end
7 @interface MyClass1 (Category1) <p1> // expected-warning {{cannot find protocol definition for 'p1…
10 @interface MyClass1 (Category1) // expected-warning {{duplicate definition of category 'Category1'…
13 @interface MyClass1 (Category3)
16 @interface MyClass1 (Category4) @end // expected-note {{previous definition is here}}
17 @interface MyClass1 (Category5) @end
18 @interface MyClass1 (Category6) @end
19 @interface MyClass1 (Category7) @end // expected-note {{previous definition is here}}
20 @interface MyClass1 (Category8) @end // expected-note {{previous definition is here}}
23 @interface MyClass1 (Category4) @end // expected-warning {{duplicate definition of category 'Catego…
[all …]
Dinvalid-objc-decls-1.m3 @interface Super @end
4 Super s1; // expected-error{{interface type cannot be statically allocated}}
6 extern Super e1; // expected-error{{interface type cannot be statically allocated}}
9 Super s1; // expected-error{{interface type cannot be statically allocated}}
14 @interface INTF
16 Super ivar1; // expected-error{{interface type cannot be statically allocated}}
21 Super objField; // expected-error{{interface type cannot be statically allocated}}
24 @interface MyIntf
26 Super<P1> ivar1; // expected-error{{interface type cannot be statically allocated}}
30 Super foo( // expected-error{{interface type 'Super' cannot be returned by value; did you forget * …
[all …]
Dclass-def-test-1.m5 @interface SUPER <SUPER> @end // expected-warning {{cannot find protocol definition for 'SUPER'}}
9 @interface INTF @end // expected-error {{redefinition of 'INTF' as different kind of symbol}}
11 @interface OBJECT @end // expected-note {{previous definition is here}}
13 @interface INTF1 : OBJECT @end // expected-note {{previous definition is here}}
15 @interface INTF1 : OBJECT @end // expected-error {{duplicate interface definition for class 'INTF1'…
20 @interface INTF2 : OBJECT2 @end // expected-error {{redefinition of 'OBJECT2' as different kind of …
25 @interface INTF3 : PROTO @end // expected-error {{cannot find interface declaration for 'PROTO', su…
28 @interface NSObject @end
30 @interface XCElementUnit : TD_NSObject {}
34 @interface SomeClassSub : SomeClassSup // expected-error{{cannot find interface declaration for 'So…
/external/iproute2/examples/
Ddhcp-client-script345 ifconfig $interface:dhcp down
346 ifconfig $interface:dhcp1 down
347 if [ -d /proc/sys/net/ipv4/conf/$interface ]; then
348 ifconfig $interface:dhcp 10.10.10.10 netmask 255.255.255.255
349 ifconfig $interface:dhcp down
350 if [ -d /proc/sys/net/ipv4/conf/$interface ]; then
351 LOG The interface $interface already configured.
354 ifconfig $interface:dhcp up
363 if DAD "$interface" "$check_ip_address" ; then
372 … DelINETAddr "$interface" "$alias_ip_address" "$alias_subnet_mask" "$alias_broadcast_address" dhcp1
[all …]
/external/webrtc/src/system_wrappers/source/
Dsystem_wrappers.gyp17 '../interface',
21 '../interface',
25 '../interface/aligned_malloc.h',
26 '../interface/atomic32_wrapper.h',
27 '../interface/condition_variable_wrapper.h',
28 '../interface/cpu_info.h',
29 '../interface/cpu_wrapper.h',
30 '../interface/cpu_features_wrapper.h',
31 '../interface/critical_section_wrapper.h',
32 '../interface/data_log.h',
[all …]
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
DCodeGeneratorTestRunner.pm49 my ($self, $interface, $defines) = @_;
51 …foreach my $file ($self->_generateHeaderFile($interface), $self->_generateImplementationFile($inte…
111 my ($self, $interface) = @_;
115 my $idlType = $interface->name;
122 my $parentClassName = _parentClassName($interface);
146 if (my @functions = @{$interface->functions}) {
153 if (my @attributes = @{$interface->attributes}) {
176 my ($self, $interface) = @_;
182 my $idlType = $interface->name;
190 my $parentClassName = _parentClassName($interface);
[all …]
/external/clang/test/ASTMerge/Inputs/
Dinterface2.m2 @interface I1 {
8 @interface I2 : I1 {
14 @interface I3 {
21 @interface I4 : I1 {
26 @interface I5
32 @interface I6
37 @interface I7
43 @interface I8
61 @interface I9 <P0>
71 // Forward-declared interface
[all …]
Dinterface1.m2 @interface I1 {
8 @interface I2 : I1 {
14 @interface I3 {
21 @interface I4 : I2 {
26 @interface I5
32 @interface I6
38 @interface I7
44 @interface I8
62 @interface I9 <P0>
74 @interface I12
[all …]
Dcategory1.m1 @interface I1
5 @interface I1 (Cat1)
10 @interface I1 ()
15 @interface I1 (Cat2)
19 @interface I2
23 @interface I2 ()
28 @interface I2 (Cat3)
35 @interface I2 (Cat4)
42 @interface I2 (Cat6)
Dcategory2.m3 @interface I1
7 @interface I1 (Cat1)
12 @interface I1 ()
17 @interface I1 (Cat2)
21 @interface I2
25 @interface I2 ()
30 @interface I2 (Cat3)
37 @interface I2 (Cat5)
44 @interface I2 (Cat6)
/external/dhcpcd/
Dnet.h86 const struct interface *iface;
97 struct interface *init_interface(const char *);
98 struct interface *discover_interfaces(int, char * const *);
99 void free_interface(struct interface *);
107 int up_interface(struct interface *);
108 int if_conf(struct interface *);
109 int if_init(struct interface *);
113 int if_address(const struct interface *,
125 int if_route(const struct interface *, const struct in_addr *,
137 int open_udp_socket(struct interface *);
[all …]
/external/webkit/Source/WebCore/bindings/objc/
DDOMPrivate.h29 @interface DOMNode (DOMNodeExtensionsPendingPublic)
36 @interface DOMRGBColor (WebPrivate)
42 @interface DOMRange (WebPrivate)
46 @interface DOMRange (DOMRangeExtensions)
52 @interface DOMElement (WebPrivate)
59 @interface DOMCSSStyleDeclaration (WebPrivate)
64 @interface DOMHTMLDocument (WebPrivate)
72 @interface DOMHTMLInputElement (FormAutoFillTransition)
83 @interface DOMHTMLInputElement (FormPromptAdditions)
87 @interface DOMHTMLTextAreaElement (FormPromptAdditions)
[all …]
/external/webrtc/src/modules/audio_processing/
DAndroid.mk41 $(LOCAL_PATH)/interface \
42 $(LOCAL_PATH)/aec/interface \
43 $(LOCAL_PATH)/aecm/interface \
44 $(LOCAL_PATH)/agc/interface \
45 $(LOCAL_PATH)/ns/interface \
46 $(LOCAL_PATH)/../interface \
50 $(LOCAL_PATH)/../../system_wrappers/interface \
78 $(LOCAL_PATH)/interface \
79 $(LOCAL_PATH)/../interface \
81 $(LOCAL_PATH)/../../system_wrappers/interface \
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
DSimpleCParser.h12 #pragma mark Cyclic DFA interface start DFA2
13 @interface DFA2 : ANTLRDFA {
19 #pragma mark Cyclic DFA interface end DFA2
48 @interface SimpleCParser_program_return :ANTLRParserRuleReturnScope { // line 1672
62 @interface SimpleCParser_declaration_return :ANTLRParserRuleReturnScope { // line 1672
76 @interface SimpleCParser_variable_return :ANTLRParserRuleReturnScope { // line 1672
90 @interface SimpleCParser_declarator_return :ANTLRParserRuleReturnScope { // line 1672
104 @interface SimpleCParser_functionHeader_return :ANTLRParserRuleReturnScope { // line 1672
118 @interface SimpleCParser_formalParameter_return :ANTLRParserRuleReturnScope { // line 1672
132 @interface SimpleCParser_type_return :ANTLRParserRuleReturnScope { // line 1672
[all …]
/external/clang/test/Parser/
Dmissing-end-4.m3 @interface X1
6 @interface Y1 // expected-error {{missing '@end'}}
10 @interface X2
17 @interface X6 // expected-note {{class started here}}
18 @interface X7 // expected-error {{missing '@end'}}
23 @interface P2 // expected-error {{missing '@end'}}
27 @interface X4 // expected-note {{class started here}}
32 @interface I
40 @interface I2 {}
41 @protocol P2; // expected-error {{illegal interface qualifier}}
[all …]
/external/webkit/Source/WebKit/win/Interfaces/
DWebKit.idl159 [default] interface IWebView;
160 interface IWebIBActions;
161 interface IWebViewCSS;
162 interface IWebViewEditing;
163 interface IWebViewUndoableEditing;
164 interface IWebViewEditingActions;
165 interface IWebNotificationObserver;
166 interface IWebViewPrivate;
171 [default] interface IWebIconDatabase;
176 [default] interface IWebMutableURLRequest;
[all …]
/external/webkit/Source/WebCore/bindings/scripts/
DCodeGenerator.pm164 my $interface = shift;
166 for (@{$interface->parents}) {
198 my $interface = shift;
207 push(@$parents, $interface->name);
208 $object->ForAllParents($interface, sub {
209 my $interface = shift;
210 push(@$parents, $interface->name);
219 push(@$parents, $interface->name) if $parents;
222 . @{$interface->constants} . " constants, "
223 . @{$interface->functions} . " functions, "
[all …]
/external/libusb-compat/examples/
Dtestlibusb.c23 void print_altsetting(struct usb_interface_descriptor *interface) in print_altsetting() argument
27 printf(" bInterfaceNumber: %d\n", interface->bInterfaceNumber); in print_altsetting()
28 printf(" bAlternateSetting: %d\n", interface->bAlternateSetting); in print_altsetting()
29 printf(" bNumEndpoints: %d\n", interface->bNumEndpoints); in print_altsetting()
30 printf(" bInterfaceClass: %d\n", interface->bInterfaceClass); in print_altsetting()
31 printf(" bInterfaceSubClass: %d\n", interface->bInterfaceSubClass); in print_altsetting()
32 printf(" bInterfaceProtocol: %d\n", interface->bInterfaceProtocol); in print_altsetting()
33 printf(" iInterface: %d\n", interface->iInterface); in print_altsetting()
35 for (i = 0; i < interface->bNumEndpoints; i++) in print_altsetting()
36 print_endpoint(&interface->endpoint[i]); in print_altsetting()
[all …]

12345678910>>...118