Home
last modified time | relevance | path

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

12345678910>>...186

/external/chromium_org/mojo/public/tools/bindings/generators/js_templates/
Dinterface_definition.tmpl2 {%- for method in interface.methods %}
3 var k{{interface.name}}_{{method.name}}_Name = {{method.ordinal}};
6 function {{interface.name}}Proxy(receiver) {
10 {{interface.name}}Proxy.NAME_ = '{{namespace_as_string}}::{{interface.name}}';
12 {%- for method in interface.methods %}
13 {{interface.name}}Proxy.prototype.{{method.name|stylize_method}} = function(
18 var params = new {{interface.name}}_{{method.name}}_Params();
25 k{{interface.name}}_{{method.name}}_Name,
26 codec.align({{interface.name}}_{{method.name}}_Params.encodedSize));
27 builder.encodeStruct({{interface.name}}_{{method.name}}_Params, params);
[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 …]
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 …]
Dattr-designated-init.m5 …GNATED_INITIALIZER; // expected-error {{only applies to init methods of interface or class extensi…
8 -(id)init NS_DESIGNATED_INITIALIZER; // expected-error {{only applies to init methods of interface
12 @interface I1
13 …GNATED_INITIALIZER; // expected-error {{only applies to init methods of interface or class extensi…
15 +(id)init NS_DESIGNATED_INITIALIZER; // expected-error {{only applies to init methods of interface
18 @interface I1(cat)
19 -(id)init2 NS_DESIGNATED_INITIALIZER; // expected-error {{only applies to init methods of interface
22 @interface I1()
28 …LIZER { return 0; } // expected-error {{only applies to init methods of interface or class extensi…
31 …LIZER { return 0; } // expected-error {{only applies to init methods of interface or class extensi…
[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/chromium_org/mojo/public/tools/bindings/generators/cpp_templates/
Dinterface_declaration.tmpl2 class {{interface.name}}Proxy;
3 class {{interface.name}}Stub;
5 class {{interface.name}}RequestValidator;
6 {%- if interface|has_callbacks %}
7 class {{interface.name}}ResponseValidator;
9 {% if interface.client %}
10 class {{interface.client}};
13 class {{interface.name}} {
17 typedef {{interface.name}}Proxy Proxy_;
18 typedef {{interface.name}}Stub Stub_;
[all …]
/external/chromium_org/third_party/webrtc/system_wrappers/source/
Dsystem_wrappers.gyp17 '../interface',
24 '../interface',
28 '../interface/aligned_malloc.h',
29 '../interface/atomic32.h',
30 '../interface/clock.h',
31 '../interface/compile_assert.h',
32 '../interface/condition_variable_wrapper.h',
33 '../interface/cpu_info.h',
34 '../interface/cpu_features_wrapper.h',
35 '../interface/critical_section_wrapper.h',
[all …]
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
Dv8_interface.py75 def interface_context(interface): argument
80 parent_interface = interface.parent
83 extended_attributes = interface.extended_attributes
85 is_audio_buffer = inherits_interface(interface.name, 'AudioBuffer')
89 is_document = inherits_interface(interface.name, 'Document')
109 iterator_operation = IdlOperation(interface.idl_name)
114 iterator_method = v8_methods.method_context(interface,
147 special_wrap_for = extended_attribute_value_as_list(interface, 'SpecialWrapFor')
155 has_extended_attribute_value(interface, 'Custom', 'VisitDOMWrapper') or
159 this_gc_type = gc_type(interface)
[all …]
Dv8_attributes.py46 def attribute_context(interface, attribute): argument
64 …, '[PerWorldBindings] should only be used with wrapper types: %s.%s' % (interface.name, attribute.…
67 (has_extended_attribute_value(interface, 'TypeChecking', 'Unrestricted') or
81 interface.name in ['Window', 'WorkerGlobalScope'] and
100 'exposed_test': v8_utilities.exposed(attribute, interface), # [Exposed]
116 'is_keep_alive_for_gc': is_keep_alive_for_gc(interface, attribute),
141 'setter_callback': setter_callback_name(interface, attribute),
149 constructor_getter_context(interface, attribute, context)
152 getter_context(interface, attribute, context)
155 setter_context(interface, attribute, context)
[all …]
/external/chromium_org/remoting/host/win/
Dcom_imported_mstscax.tlh37 /* dual interface */ IMsRdpClient;
39 /* dual interface */ IMsTscAx;
41 /* dual interface */ IMsTscAx_Redist;
43 /* dual interface */ IMsTscSecuredSettings;
45 /* dual interface */ IMsTscAdvancedSettings;
47 /* dual interface */ IMsTscDebug;
49 /* dual interface */ IMsRdpClientAdvancedSettings;
51 /* dual interface */ IMsRdpClientSecuredSettings;
55 /* interface */ IMsTscNonScriptable;
57 /* interface */ IMsRdpClientNonScriptable;
[all …]
/external/chromium_org/third_party/webrtc/system_wrappers/
DBUILD.gn14 "interface",
20 "interface/aligned_malloc.h",
21 "interface/atomic32.h",
22 "interface/clock.h",
23 "interface/compile_assert.h",
24 "interface/condition_variable_wrapper.h",
25 "interface/cpu_info.h",
26 "interface/cpu_features_wrapper.h",
27 "interface/critical_section_wrapper.h",
28 "interface/data_log.h",
[all …]
/external/lldb/scripts/
Dlldb.swig118 /* Python interface files with docstrings. */
119 %include "./Python/interface/SBAddress.i"
120 %include "./Python/interface/SBBlock.i"
121 %include "./Python/interface/SBBreakpoint.i"
122 %include "./Python/interface/SBBreakpointLocation.i"
123 %include "./Python/interface/SBBroadcaster.i"
124 %include "./Python/interface/SBCommandInterpreter.i"
125 %include "./Python/interface/SBCommandReturnObject.i"
126 %include "./Python/interface/SBCommunication.i"
127 %include "./Python/interface/SBCompileUnit.i"
[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/chromium_org/third_party/WebKit/Source/build/scripts/templates/
DElementTypeHelpers.h.tmpl15 class {{tag.interface}};
16 void is{{tag.interface}}(const {{tag.interface}}&); // Catch unnecessary runtime check of type know…
17 void is{{tag.interface}}(const {{tag.interface}}*); // Catch unnecessary runtime check of type know…
19 inline bool is{{tag.interface}}(const {{namespace}}Element& element) {
26 inline bool is{{tag.interface}}(const {{namespace}}Element* element) { return element && is{{tag.in…
27 template<typename T> inline bool is{{tag.interface}}(const PassRefPtr<T>& node) { return is{{tag.in…
28 template<typename T> inline bool is{{tag.interface}}(const RefPtr<T>& node) { return is{{tag.interf…
29 inline bool is{{tag.interface}}(const Node& node) { return node.is{{namespace}}Element() && is{{tag…
30 inline bool is{{tag.interface}}(const Node* node) { return node && is{{tag.interface}}(*node); }
31 …late <> inline bool isElementOfType<const {{tag.interface}}>(const Node& node) { return is{{tag.in…
[all …]
/external/webrtc/src/system_wrappers/source/
Dsystem_wrappers.gyp17 '../interface',
21 '../interface',
25 '../interface/aligned_malloc.h',
26 '../interface/atomic32.h',
27 '../interface/compile_assert.h',
28 '../interface/condition_variable_wrapper.h',
29 '../interface/cpu_info.h',
30 '../interface/cpu_wrapper.h',
31 '../interface/cpu_features_wrapper.h',
32 '../interface/critical_section_wrapper.h',
[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/chromium_org/net/base/
Dnet_util_posix.cc49 NetworkInterface interface; member
63 if (!i->permanent && i->interface.address.size() == kIPv6AddressSize) { in RemovePermanentIPv6AddressesWhereTemporaryExists()
64 ifaces_with_temp_addrs.insert(i->interface.name); in RemovePermanentIPv6AddressesWhereTemporaryExists()
76 if ((i->interface.address.size() == kIPv6AddressSize) && i->permanent && in RemovePermanentIPv6AddressesWhereTemporaryExists()
77 (ifaces_with_temp_addrs.find(i->interface.name) != in RemovePermanentIPv6AddressesWhereTemporaryExists()
175 for (ifaddrs *interface = interfaces; in GetNetworkList()
176 interface != NULL; in GetNetworkList()
177 interface = interface->ifa_next) { in GetNetworkList()
179 if (!(IFF_UP & interface->ifa_flags)) in GetNetworkList()
181 if (IFF_LOOPBACK & interface->ifa_flags) in GetNetworkList()
[all …]
/external/dhcpcd/
Dnet.h86 const struct interface *iface;
99 struct interface *init_interface(const char *);
100 struct interface *discover_interfaces(int, char * const *);
101 void free_interface(struct interface *);
109 int up_interface(struct interface *);
110 int if_conf(struct interface *);
111 int if_init(struct interface *);
115 int if_address(const struct interface *,
134 int open_udp_socket(struct interface *);
141 int open_socket(struct interface *, int);
[all …]
/external/chromium_org/base/mac/
Dsdk_forward_declarations.h68 @interface NSEvent (LionSDK)
88 @interface NSApplication (LionSDK)
92 @interface CALayer (LionSDK)
97 @interface NSScreen (LionSDK)
102 @interface NSWindow (LionSDK)
110 @interface NSCursor (LionSDKDeclarations)
114 @interface NSAnimationContext (LionSDK)
120 @interface NSView (LionSDK)
125 @interface NSObject (ICCameraDeviceDelegateLionSDK)
133 @interface NSScroller (LionSDK)
[all …]
/external/chromium_org/mojo/public/tools/bindings/generators/java_templates/
Dinterface_definition.tmpl22 interface {{method|interface_response_name}} extends org.chromium.mojo.bindings.Callbacks.Callback{…
61 {%- macro manager_class(interface, client, fully_qualified=False) -%}
62 …alified %}{{super_class(client, False)}}.{% endif %}Manager<{{interface|name}}, {{interface|name}}…
67 {%- macro manager_def(interface, client) -%}
68 public static final {{manager_class(interface, client, True)}} MANAGER =
69 new {{manager_class(interface, client, True)}}() {
72 return "{{namespace|replace(".","::")}}::{{interface.name}}";
80 public Stub buildStub(org.chromium.mojo.system.Core core, {{interface|name}} impl) {
84 public {{interface|name}}[] buildArray(int size) {
85 return new {{interface|name}}[size];
[all …]
/external/chromium_org/dbus/
Ddbus_statistics.cc24 const std::string& interface, in Stat()
27 interface(interface), in Stat()
34 std::string interface; member
43 if (interface != other.interface) in Compare()
44 return interface < other.interface; in Compare()
83 const std::string& interface, in AddStat() argument
91 Stat* stat = GetStat(service, interface, method, true); in AddStat()
106 const std::string& interface, in GetStat() argument
110 scoped_ptr<Stat> stat(new Stat(service, interface, method)); in GetStat()
151 const std::string& interface, in AddSentMethodCall() argument
[all …]
/external/chromium_org/ppapi/api/
Dppb_network_list.idl7 * This file defines the <code>PPB_NetworkList</code> interface.
17 * Type of a network interface.
22 * Type of the network interface is not known.
43 * State of a network interface.
48 * Network interface is down.
53 * Network interface is up.
62 * using the <code>PPB_NetworkMonitor</code> interface.
64 interface PPB_NetworkList {
89 * Gets name of a network interface.
93 * @param[in] index Index of the network interface.
[all …]
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
Ddata.py225 def ParameterFromData(module, data, interface): argument
229 module.kinds, data['kind'], (module.namespace, interface.name))
246 def MethodFromData(module, data, interface): argument
247 method = mojom.Method(interface, data['name'], ordinal=data.get('ordinal'))
250 ParameterFromData(module, parameter, interface), data['parameters'])
253 lambda parameter: ParameterFromData(module, parameter, interface),
257 def InterfaceToData(interface): argument
259 istr(0, 'name'): interface.name,
260 istr(1, 'client'): interface.client,
261 istr(2, 'methods'): map(MethodToData, interface.methods)
[all …]

12345678910>>...186