Home
last modified time | relevance | path

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

12345678910>>...192

/external/protobuf/objectivec/
DGPBDictionary_PackagePrivate.h86 @interface GPBUInt32UInt32Dictionary () <GPBDictionaryInternalsProtocol> { in GPBUInt32UInt32Dictionary()
92 @interface GPBUInt32Int32Dictionary () <GPBDictionaryInternalsProtocol> { in GPBUInt32Int32Dictionary()
98 @interface GPBUInt32UInt64Dictionary () <GPBDictionaryInternalsProtocol> { in GPBUInt32UInt64Dictionary()
104 @interface GPBUInt32Int64Dictionary () <GPBDictionaryInternalsProtocol> { in GPBUInt32Int64Dictionary()
110 @interface GPBUInt32BoolDictionary () <GPBDictionaryInternalsProtocol> { in GPBUInt32BoolDictionary()
116 @interface GPBUInt32FloatDictionary () <GPBDictionaryInternalsProtocol> { in GPBUInt32FloatDictionary()
122 @interface GPBUInt32DoubleDictionary () <GPBDictionaryInternalsProtocol> { in GPBUInt32DoubleDictionary()
128 @interface GPBUInt32EnumDictionary () <GPBDictionaryInternalsProtocol> { in GPBUInt32EnumDictionary()
137 @interface GPBUInt32ObjectDictionary () <GPBDictionaryInternalsProtocol> { in GPBUInt32ObjectDictionary()
149 @interface GPBInt32UInt32Dictionary () <GPBDictionaryInternalsProtocol> { in GPBInt32UInt32Dictionary()
[all …]
/external/clang/test/SemaObjC/
Dcategory-1.m3 @interface MyClass1 @end
8 @interface MyClass1 (Category1) <p1> // expected-warning {{cannot find protocol definition for 'p1…
11 @interface MyClass1 (Category1) // expected-warning {{duplicate definition of category 'Category1'…
14 @interface MyClass1 (Category3)
17 @interface MyClass1 (Category4) @end // expected-note {{previous definition is here}}
18 @interface MyClass1 (Category5) @end
19 @interface MyClass1 (Category6) @end
20 @interface MyClass1 (Category7) @end // expected-note {{previous definition is here}}
21 @interface MyClass1 (Category8) @end // expected-note {{previous definition is here}}
24 @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 …]
Dattr-designated-init.m6 …GNATED_INITIALIZER; // expected-error {{only applies to init methods of interface or class extensi…
9 -(id)init NS_DESIGNATED_INITIALIZER; // expected-error {{only applies to init methods of interface
13 @interface I1
14 …GNATED_INITIALIZER; // expected-error {{only applies to init methods of interface or class extensi…
16 +(id)init NS_DESIGNATED_INITIALIZER; // expected-error {{only applies to init methods of interface
19 @interface I1(cat)
20 -(id)init2 NS_DESIGNATED_INITIALIZER; // expected-error {{only applies to init methods of interface
23 @interface I1()
29 …LIZER { return 0; } // expected-error {{only applies to init methods of interface or class extensi…
32 …LIZER { return 0; } // expected-error {{only applies to init methods of interface or class extensi…
[all …]
Dproperty-category-4.m3 @interface IDELogNavigator
9 @interface IDELogNavigator (CAT)
22 @interface NSArray
31 @interface NSArray(Additions) <MyCountable>
42 @interface NSArray1 <NSProtocol>
45 @interface NSArray1(Additions) <MyCountable>
52 @interface Super <NSProtocol>
55 @interface NSArray2 : Super @end
57 @interface NSArray2(Additions) <MyCountable>
64 @interface Super1 <NSProtocol>
[all …]
Dproperty-atomic-redecl.m3 @interface A
7 @interface AtomicInheritanceSuper
11 @interface AtomicInheritanceSuper()
15 @interface AtomicInheritanceSub : AtomicInheritanceSuper
20 @interface AtomicInheritanceSuper2
24 @interface AtomicInheritanceSub2 : AtomicInheritanceSuper2
28 @interface ReadonlyAtomic
32 @interface ReadonlyAtomic ()
37 @interface AtomicInheritanceSuper3
41 @interface AtomicInheritanceSuper3()
[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 …
26 @interface INTF3 : PROTO @end // expected-error {{cannot find interface declaration for 'PROTO', su…
29 @interface NSObject @end
31 @interface XCElementUnit : TD_NSObject {}
35 @interface SomeClassSub : SomeClassSup // expected-error{{cannot find interface declaration for 'So…
/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/
Dinterface_declaration.tmpl2 class {{interface.name}}Proxy;
5 class {{interface.name}}Stub;
7 class {{interface.name}}RequestValidator;
8 {%- if interface|has_callbacks %}
9 class {{interface.name}}ResponseValidator;
12 class {{export_attribute}} {{interface.name}}
13 : public {{interface.name}}InterfaceBase {
16 static constexpr uint32_t Version_ = {{interface.version}};
17 …static constexpr bool PassesAssociatedKinds_ = {% if interface|passes_associated_kinds %}true{% el…
18 …static constexpr bool HasSyncMethods_ = {% if interface|has_sync_methods %}true{% else %}false{% e…
[all …]
/external/libchrome/mojo/public/tools/bindings/generators/js_templates/
Dinterface_definition.tmpl1 {%- for method in interface.methods %}
3 interface.mojom_name ~ "_" ~ method.mojom_name %}
7 function {{interface.name}}Ptr(handleOrPtrInfo) {
8 this.ptr = new bindings.InterfacePtrController({{interface.name}},
12 function {{interface.name}}AssociatedPtr(associatedInterfacePtrInfo) {
14 {{interface.name}}, associatedInterfacePtrInfo);
17 {{interface.name}}AssociatedPtr.prototype =
18 Object.create({{interface.name}}Ptr.prototype);
19 {{interface.name}}AssociatedPtr.prototype.constructor =
20 {{interface.name}}AssociatedPtr;
[all …]
/external/wayland/src/
Dscanner.c160 struct interface { struct
230 struct interface *interface; member
542 static struct interface *
545 struct interface *interface; in create_interface() local
547 interface = xzalloc(sizeof *interface); in create_interface()
548 interface->loc = loc; in create_interface()
549 interface->name = xstrdup(name); in create_interface()
550 interface->uppercase_name = uppercase_dup(name); in create_interface()
551 interface->version = version; in create_interface()
552 interface->since = 1; in create_interface()
[all …]
/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/autotest/server/
Dsite_linux_router.py16 from autotest_lib.client.common_lib.cros.network import interface
286 interface = self.get_wlanif(configuration.frequency, 'managed',
288 phy_name = self.iw_runner.get_interface(interface).phy
290 conf_file = self.HOSTAPD_CONF_FILE_PATTERN % interface
291 log_file = self.HOSTAPD_LOG_FILE_PATTERN % interface
292 stderr_log_file = self.HOSTAPD_STDERR_LOG_FILE_PATTERN % interface
293 control_interface = self.HOSTAPD_CONTROL_INTERFACE_PATTERN % interface
295 interface, control_interface,
306 interface, phy_name, configuration.channel)
316 interface,
[all …]
/external/google-fruit/extras/doc/
Dcomponent_composition.tex10 \umlassemblyconnector[interface=SomeType, distance=7]{bind}{SomeType}
11 \umlassemblyconnector[interface=T2, distance=7, arm2=1cm]{T1Component}{bind}
13 \umlassemblyconnector[interface=T1, distance=7, anchor1=120, anchor2=-90]{U1U2Component}{T1Componen…
14 \umlprovidedinterface[interface=U2, distance=3.5, padding=0.9cm]{U1U2Component}
15 \umlrequiredinterface[interface=T3, distance=3, padding=0.9cm]{U1U2Component}
16 \umlrequiredinterface[interface=T3, distance=2, padding=0.9cm]{SomeType}
19 % \umlprovidedinterface[interface=U2, distance=3.5, padding=0.9cm]{U1U2Component}
22 … node[inner sep=0, text width=1em, circle, draw, fill=white, name=U1U2Component-west-interface] {};
23 \node[above] at (U1U2Component-west-interface.north) {U1};
24 \umlrelation[style={tikzuml connector style}]{U1U2Component-west-port}{U1U2Component-west-interface}
[all …]
Drequest_dispatcher.tex7 \umlrequiredinterface[interface={Request, ServerContext}, distance=4.2, padding=1.5cm]{FooHandlerCo…
9 \umlrequiredinterface[interface={Request, ServerContext}, distance=4.2, padding=1.5cm]{BarHandlerCo…
11 \umlprovidedinterface[interface=RequestDispatcher, distance=3.8cm, padding=1.2cm]{RequestDispatcher…
12 \umlassemblyconnector[interface=FooHandler]{RequestDispatcherImpl}{FooHandlerComponent}
13 \umlassemblyconnector[interface=BarHandler]{RequestDispatcherImpl}{BarHandlerComponent}
15 \umlprovidedinterface[interface=RequestDispatcher, distance=11.1, with port, padding=0cm]{RequestDi…
16 \umlrequiredinterface[interface={Request, ServerContext}, distance=11.5, with port]{RequestDispatch…
17 \umldep{RequestDispatcherComponent-west-port}{RequestDispatcherImpl-west-interface}
18 \umldep{FooHandlerComponent-east-interface}{RequestDispatcherComponent-east-port}
19 \umldep{BarHandlerComponent-east-interface}{RequestDispatcherComponent-east-port}
/external/libchrome/mojo/public/tools/bindings/generators/java_templates/
Dinterface_definition.tmpl22 interface {{method|interface_response_name}} extends org.chromium.mojo.bindings.Callbacks.Callback{…
53 {%- macro manager_class(interface, fully_qualified=False) -%}
54 …d %}org.chromium.mojo.bindings.Interface.{% endif %}Manager<{{interface|name}}, {{interface|name}}…
57 {%- macro manager_def(interface) -%}
58 public static final {{manager_class(interface, True)}} MANAGER =
59 new {{manager_class(interface, True)}}() {
63 return "{{namespace}}.{{interface.name}}";
68 return {{interface.version}};
78 public Stub buildStub(org.chromium.mojo.system.Core core, {{interface|name}} impl) {
83 public {{interface|name}}[] buildArray(int size) {
[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 …]
/external/skqp/src/gpu/gl/
DGrGLContext.cpp14 std::unique_ptr<GrGLContext> GrGLContext::Make(sk_sp<const GrGLInterface> interface, in Make() argument
16 if (!interface->validate()) { in Make()
21 GR_GL_CALL_RET(interface.get(), verUByte, GetString(GR_GL_VERSION)); in Make()
25 GR_GL_CALL_RET(interface.get(), rendererUByte, GetString(GR_GL_RENDERER)); in Make()
34 if (!GrGLGetGLSLGeneration(interface.get(), &args.fGLSLGeneration)) { in Make()
38 args.fVendor = GrGLGetVendor(interface.get()); in Make()
40 args.fRenderer = GrGLGetRendererFromStrings(renderer, interface->fExtensions); in Make()
61 if (kGLES_GrGLStandard == interface->fStandard && in Make()
64 interface->hasExtension("GL_OES_EGL_image_external") && in Make()
66 !interface->hasExtension("GL_OES_EGL_image_external_essl3") && in Make()
[all …]
/external/skia/src/gpu/gl/
DGrGLContext.cpp14 std::unique_ptr<GrGLContext> GrGLContext::Make(sk_sp<const GrGLInterface> interface, in Make() argument
16 if (!interface->validate()) { in Make()
21 GR_GL_CALL_RET(interface.get(), verUByte, GetString(GR_GL_VERSION)); in Make()
25 GR_GL_CALL_RET(interface.get(), rendererUByte, GetString(GR_GL_RENDERER)); in Make()
34 if (!GrGLGetGLSLGeneration(interface.get(), &args.fGLSLGeneration)) { in Make()
38 args.fVendor = GrGLGetVendor(interface.get()); in Make()
40 args.fRenderer = GrGLGetRendererFromStrings(renderer, interface->fExtensions); in Make()
61 if (kGLES_GrGLStandard == interface->fStandard && in Make()
64 interface->hasExtension("GL_OES_EGL_image_external") && in Make()
66 !interface->hasExtension("GL_OES_EGL_image_external_essl3") && in Make()
[all …]
/external/autotest/client/common_lib/cros/network/
Diw_runner.py260 def add_interface(self, phy, interface, interface_type): argument
270 (self._command_iw, phy, interface, interface_type))
273 def disconnect_station(self, interface): argument
280 self._run('%s dev %s disconnect' % (self._command_iw, interface))
316 def get_link_value(self, interface, iw_link_key): argument
327 result = self._run('%s dev %s link' % (self._command_iw, interface),
343 def get_station_dump(self, interface): argument
359 (self._command_iw, interface))
379 interface_name=interface,
407 def get_operating_mode(self, interface): argument
[all …]
/external/clang/test/ARCMT/
Dobjcmt-subscripting-literals.m.result11 @interface NSObject
18 @interface NSString : NSObject
23 @interface NSArray : NSObject
27 @interface NSArray (NSExtendedArray)
31 @interface NSArray (NSArrayCreation)
43 @interface NSMutableArray : NSArray
47 @interface NSMutableArray (NSExtendedMutableArray)
51 @interface NSDictionary : NSObject
55 @interface NSDictionary (NSExtendedDictionary)
59 @interface NSDictionary (NSDictionaryCreation)
[all …]
Dobjcmt-instancetype-2.m12 @interface NSMutableString
15 @interface NSString @end
18 @interface NSString (NSStringDeprecated)
30 @interface NSURL
37 @interface NSError
42 @interface NSMutableString (NSMutableStringExtensionMethods)
46 @interface NSMutableData
51 @interface NSMutableDictionary @end
53 @interface NSMutableDictionary (NSSharedKeySetDictionary)
57 @interface NSProtocolChecker
[all …]
Dobjcmt-instancetype-2.m.result12 @interface NSMutableString
15 @interface NSString @end
18 @interface NSString (NSStringDeprecated)
30 @interface NSURL
37 @interface NSError
42 @interface NSMutableString (NSMutableStringExtensionMethods)
46 @interface NSMutableData
51 @interface NSMutableDictionary @end
53 @interface NSMutableDictionary (NSSharedKeySetDictionary)
57 @interface NSProtocolChecker
[all …]
/external/libchrome/dbus/
Ddbus_statistics.cc22 std::string interface; member
27 return std::tie(lhs.service, lhs.interface, lhs.method) < in operator <()
28 std::tie(rhs.service, rhs.interface, rhs.method); in operator <()
63 const std::string& interface, in AddStat() argument
71 StatValue* stat = GetStats(service, interface, method, true); in AddStat()
86 const std::string& interface, in GetStats() argument
91 StatKey key = {service, interface, method}; in GetStats()
133 const std::string& interface, in AddSentMethodCall() argument
138 service, interface, method, DBusStatistics::TYPE_SENT_METHOD_CALLS); in AddSentMethodCall()
142 const std::string& interface, in AddReceivedSignal() argument
[all …]
/external/autotest/client/deps/glbench/src/
Dcontexttest.cc31 GLInterface* interface = g_main_gl_interface.get(); in TestFunc() local
32 CHECK(interface); in TestFunc()
33 GLContext main_context = interface->GetMainContext(); in TestFunc()
34 GLContext new_context = interface->CreateContext(); in TestFunc()
39 interface->MakeCurrent(new_context); in TestFunc()
41 interface->MakeCurrent(main_context); in TestFunc()
46 interface->MakeCurrent(IsEven(i) ? new_context : main_context); in TestFunc()
49 interface->MakeCurrent(main_context); in TestFunc()
50 interface->DeleteContext(new_context); in TestFunc()

12345678910>>...192