Home
last modified time | relevance | path

Searched full:interface (Results 1 – 25 of 19587) sorted by relevance

12345678910>>...784

/external/rust/android-crates-io/crates/drm/src/control/
Dconnector.rs53 pub(crate) interface: Interface, field
65 write!(f, "{}-{}", self.interface.as_str(), self.interface_id) in fmt()
75 /// Returns the type of `Interface` of this connector.
76 pub fn interface(&self) -> Interface { in interface() method
77 self.interface in interface()
80 /// Returns the interface ID of this connector.
82 /// When multiple connectors have the same `Interface`, they will have
83 /// different interface IDs.
119 /// A physical interface type.
124 pub enum Interface { enum
[all …]
/external/compiler-rt/test/asan/TestCases/Linux/
Dinterface_symbols_linux.c1 // Check the presence of interface symbols in compiled file.
14 // RUN: > %t.interface
15 // RUN: echo __asan_report_load1 >> %t.interface
16 // RUN: echo __asan_report_load2 >> %t.interface
17 // RUN: echo __asan_report_load4 >> %t.interface
18 // RUN: echo __asan_report_load8 >> %t.interface
19 // RUN: echo __asan_report_load16 >> %t.interface
20 // RUN: echo __asan_report_store1 >> %t.interface
21 // RUN: echo __asan_report_store2 >> %t.interface
22 // RUN: echo __asan_report_store4 >> %t.interface
[all …]
/external/compiler-rt/test/asan/TestCases/Darwin/
Dinterface_symbols_darwin.c1 // Check the presence of interface symbols in the ASan runtime dylib.
6 // RUN: rm -f %t.symbols %t.interface
19 // RUN: > %t.interface
20 // RUN: echo __asan_report_load1 >> %t.interface
21 // RUN: echo __asan_report_load2 >> %t.interface
22 // RUN: echo __asan_report_load4 >> %t.interface
23 // RUN: echo __asan_report_load8 >> %t.interface
24 // RUN: echo __asan_report_load16 >> %t.interface
25 // RUN: echo __asan_report_store1 >> %t.interface
26 // RUN: echo __asan_report_store2 >> %t.interface
[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 …]
/external/eigen/bench/btl/actions/
Daction_ger.hh26 template<class Interface>
37 typename Interface::stl_matrix tmp; in Action_ger()
44 Interface::matrix_from_stl(A_ref,A_stl); in Action_ger()
45 Interface::matrix_from_stl(A,A_stl); in Action_ger()
46 Interface::vector_from_stl(B_ref,B_stl); in Action_ger()
47 Interface::vector_from_stl(B,B_stl); in Action_ger()
48 Interface::vector_from_stl(X_ref,X_stl); in Action_ger()
49 Interface::vector_from_stl(X,X_stl); in Action_ger()
62 Interface::free_matrix(A,_size); in ~Action_ger()
63 Interface::free_vector(B); in ~Action_ger()
[all …]
Daction_matrix_matrix_product_bis.hh32 template<class Interface>
39 return "matrix_matrix_"+Interface::name(); in name()
50 typename Interface::stl_matrix A_stl; in calculate()
51 typename Interface::stl_matrix B_stl; in calculate()
52 typename Interface::stl_matrix X_stl; in calculate()
60 typename Interface::gene_matrix A_ref; in calculate()
61 typename Interface::gene_matrix B_ref; in calculate()
62 typename Interface::gene_matrix X_ref; in calculate()
64 typename Interface::gene_matrix A; in calculate()
65 typename Interface::gene_matrix B; in calculate()
[all …]
Daction_syr2.hh31 template<class Interface>
41 typename Interface::stl_matrix tmp; in Action_syr2()
48 Interface::matrix_from_stl(A_ref,A_stl); in Action_syr2()
49 Interface::matrix_from_stl(A,A_stl); in Action_syr2()
50 Interface::vector_from_stl(B_ref,B_stl); in Action_syr2()
51 Interface::vector_from_stl(B,B_stl); in Action_syr2()
52 Interface::vector_from_stl(X_ref,X_stl); in Action_syr2()
53 Interface::vector_from_stl(X,X_stl); in Action_syr2()
65 Interface::free_matrix(A,_size); in ~Action_syr2()
66 Interface::free_vector(B); in ~Action_syr2()
[all …]
Daction_hessenberg.hh30 template<class Interface>
48 Interface::matrix_from_stl(X_ref,X_stl); in Action_hessenberg()
49 Interface::matrix_from_stl(X,X_stl); in Action_hessenberg()
50 Interface::matrix_from_stl(C,C_stl); in Action_hessenberg()
76 Interface::free_matrix(X_ref,_size); in ~Action_hessenberg()
77 Interface::free_matrix(X,_size); in ~Action_hessenberg()
78 Interface::free_matrix(C,_size); in ~Action_hessenberg()
85 return "hessenberg_"+Interface::name(); in name()
93 Interface::copy_matrix(X_ref,X,_size); in initialize()
97 Interface::hessenberg(X,C,_size); in calculate()
[all …]
Daction_matrix_vector_product.hh31 template<class Interface>
51 Interface::matrix_from_stl(A_ref,A_stl); in Action_matrix_vector_product()
52 Interface::matrix_from_stl(A,A_stl); in Action_matrix_vector_product()
53 Interface::vector_from_stl(B_ref,B_stl); in Action_matrix_vector_product()
54 Interface::vector_from_stl(B,B_stl); in Action_matrix_vector_product()
55 Interface::vector_from_stl(X_ref,X_stl); in Action_matrix_vector_product()
56 Interface::vector_from_stl(X,X_stl); in Action_matrix_vector_product()
76 Interface::free_matrix(A,_size); in ~Action_matrix_vector_product()
77 Interface::free_vector(B); in ~Action_matrix_vector_product()
78 Interface::free_vector(X); in ~Action_matrix_vector_product()
[all …]
Daction_atv_product.hh31 template<class Interface>
49 Interface::matrix_from_stl(A_ref,A_stl); in Action_atv_product()
50 Interface::vector_from_stl(B_ref,B_stl); in Action_atv_product()
51 Interface::vector_from_stl(X_ref,X_stl); in Action_atv_product()
53 Interface::matrix_from_stl(A,A_stl); in Action_atv_product()
54 Interface::vector_from_stl(B,B_stl); in Action_atv_product()
55 Interface::vector_from_stl(X,X_stl); in Action_atv_product()
69 Interface::free_matrix(A,_size); in ~Action_atv_product()
70 Interface::free_vector(B); in ~Action_atv_product()
71 Interface::free_vector(X); in ~Action_atv_product()
[all …]
Daction_matrix_matrix_product.hh31 template<class Interface>
51 Interface::matrix_from_stl(A_ref,A_stl); in Action_matrix_matrix_product()
52 Interface::matrix_from_stl(B_ref,B_stl); in Action_matrix_matrix_product()
53 Interface::matrix_from_stl(X_ref,X_stl); in Action_matrix_matrix_product()
55 Interface::matrix_from_stl(A,A_stl); in Action_matrix_matrix_product()
56 Interface::matrix_from_stl(B,B_stl); in Action_matrix_matrix_product()
57 Interface::matrix_from_stl(X,X_stl); in Action_matrix_matrix_product()
77 Interface::free_matrix(A,_size); in ~Action_matrix_matrix_product()
78 Interface::free_matrix(B,_size); in ~Action_matrix_matrix_product()
79 Interface::free_matrix(X,_size); in ~Action_matrix_matrix_product()
[all …]
Daction_symv.hh31 template<class Interface>
49 Interface::matrix_from_stl(A_ref,A_stl); in Action_symv()
50 Interface::matrix_from_stl(A,A_stl); in Action_symv()
51 Interface::vector_from_stl(B_ref,B_stl); in Action_symv()
52 Interface::vector_from_stl(B,B_stl); in Action_symv()
53 Interface::vector_from_stl(X_ref,X_stl); in Action_symv()
54 Interface::vector_from_stl(X,X_stl); in Action_symv()
68 Interface::free_matrix(A,_size); in ~Action_symv()
69 Interface::free_vector(B); in ~Action_symv()
70 Interface::free_vector(X); in ~Action_symv()
[all …]
/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 {%- if interface.uuid %}
17 static constexpr base::Token Uuid_{ {{interface.uuid[0]}}ULL,
18 {{interface.uuid[1]}}ULL };
[all …]
/external/selinux/libsemanage/man/man3/
Dsemanage_iface.314 This object contains properties associated with a network interface.
24 create an interface
29 release resources for this interface
34 create a key, which can be used to identify an interface
39 release resources for this interface key
44 create a key matching this interface
49 create an identical interface (deep-copy clone)
54 compare this interface to the provided key
59 compare this interface to another
66 return the name of this interface
[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/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/com/google/android/exoplayer2/video/spherical/
DSphericalGLSurfaceView.html121 …/developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" cl…
124 …developer.android.com/reference/android/view/View.html" title="class or interface in android.view"…
127 …er.android.com/reference/android/view/SurfaceView.html" title="class or interface in android.view"…
130 …ndroid.com/reference/android/opengl/GLSurfaceView.html" title="class or interface in android.openg…
148interface in android.graphics.drawable" class="externalLink">Drawable.Callback</a></code>, <code><…
152 …ndroid.com/reference/android/opengl/GLSurfaceView.html" title="class or interface in android.openg…
182 <td class="colFirst"><code>static interface&nbsp;</code></td>
183 …Link"><a href="SphericalGLSurfaceView.VideoSurfaceListener.html" title="interface in com.google.an…
185 …eloper.android.com/reference/android/view/Surface.html" title="class or interface in android.view"…
193 …ndroid.com/reference/android/opengl/GLSurfaceView.html" title="class or interface in android.openg…
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/video/spherical/
DSphericalGLSurfaceView.html121 …/developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" cl…
124 …developer.android.com/reference/android/view/View.html" title="class or interface in android.view"…
127 …er.android.com/reference/android/view/SurfaceView.html" title="class or interface in android.view"…
130 …ndroid.com/reference/android/opengl/GLSurfaceView.html" title="class or interface in android.openg…
148interface in android.graphics.drawable" class="externalLink">Drawable.Callback</a></code>, <code><…
152 …ndroid.com/reference/android/opengl/GLSurfaceView.html" title="class or interface in android.openg…
182 <td class="colFirst"><code>static interface&nbsp;</code></td>
183 …Link"><a href="SphericalGLSurfaceView.VideoSurfaceListener.html" title="interface in com.google.an…
185 …eloper.android.com/reference/android/view/Surface.html" title="class or interface in android.view"…
193 …ndroid.com/reference/android/opengl/GLSurfaceView.html" title="class or interface in android.openg…
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/com/google/android/exoplayer2/video/
DVideoDecoderGLSurfaceView.html121 …/developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" cl…
124 …developer.android.com/reference/android/view/View.html" title="class or interface in android.view"…
127 …er.android.com/reference/android/view/SurfaceView.html" title="class or interface in android.view"…
130 …ndroid.com/reference/android/opengl/GLSurfaceView.html" title="class or interface in android.openg…
148interface in android.graphics.drawable" class="externalLink">Drawable.Callback</a></code>, <code><…
152 …ndroid.com/reference/android/opengl/GLSurfaceView.html" title="class or interface in android.openg…
153 implements <a href="VideoDecoderOutputBufferRenderer.html" title="interface in com.google.android.e…
154 …iew implementing <a href="VideoDecoderOutputBufferRenderer.html" title="interface in com.google.an…
156interface in android.view" class="externalLink"><code>SurfaceView</code></a> or <a href="https://d…
174 …ndroid.com/reference/android/opengl/GLSurfaceView.html" title="class or interface in android.openg…
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/video/
DVideoDecoderGLSurfaceView.html121 …/developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" cl…
124 …developer.android.com/reference/android/view/View.html" title="class or interface in android.view"…
127 …er.android.com/reference/android/view/SurfaceView.html" title="class or interface in android.view"…
130 …ndroid.com/reference/android/opengl/GLSurfaceView.html" title="class or interface in android.openg…
148interface in android.graphics.drawable" class="externalLink">Drawable.Callback</a></code>, <code><…
152 …ndroid.com/reference/android/opengl/GLSurfaceView.html" title="class or interface in android.openg…
153 implements <a href="VideoDecoderOutputBufferRenderer.html" title="interface in com.google.android.e…
154 …iew implementing <a href="VideoDecoderOutputBufferRenderer.html" title="interface in com.google.an…
156interface in android.view" class="externalLink"><code>SurfaceView</code></a> or <a href="https://d…
174 …ndroid.com/reference/android/opengl/GLSurfaceView.html" title="class or interface in android.openg…
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/com/google/android/exoplayer2/ui/
DAspectRatioFrameLayout.html121 …/developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" cl…
124 …developer.android.com/reference/android/view/View.html" title="class or interface in android.view"…
127 …oper.android.com/reference/android/view/ViewGroup.html" title="class or interface in android.view"…
130 ….android.com/reference/android/widget/FrameLayout.html" title="class or interface in android.widge…
148interface in android.graphics.drawable" class="externalLink">Drawable.Callback</a></code>, <code><…
152 ….android.com/reference/android/widget/FrameLayout.html" title="class or interface in android.widge…
153 ….android.com/reference/android/widget/FrameLayout.html" title="class or interface in android.widge…
175 <td class="colFirst"><code>static interface&nbsp;</code></td>
176 …eLink"><a href="AspectRatioFrameLayout.AspectRatioListener.html" title="interface in com.google.an…
182 <td class="colFirst"><code>static interface&nbsp;</code></td>
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/ui/
DAspectRatioFrameLayout.html121 …/developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" cl…
124 …developer.android.com/reference/android/view/View.html" title="class or interface in android.view"…
127 …oper.android.com/reference/android/view/ViewGroup.html" title="class or interface in android.view"…
130 ….android.com/reference/android/widget/FrameLayout.html" title="class or interface in android.widge…
148interface in android.graphics.drawable" class="externalLink">Drawable.Callback</a></code>, <code><…
152 ….android.com/reference/android/widget/FrameLayout.html" title="class or interface in android.widge…
153 ….android.com/reference/android/widget/FrameLayout.html" title="class or interface in android.widge…
175 <td class="colFirst"><code>static interface&nbsp;</code></td>
176 …eLink"><a href="AspectRatioFrameLayout.AspectRatioListener.html" title="interface in com.google.an…
182 <td class="colFirst"><code>static interface&nbsp;</code></td>
[all …]
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202111/MdePkg/Include/Protocol/
DSimpleNetwork.h2 The EFI_SIMPLE_NETWORK_PROTOCOL provides services to initialize a network interface,
3 transmit packets, receive packets, and close a network interface.
140 /// The state of the network interface.
142 /// network interface, the network interface is left in the EfiSimpleNetworkStopped state.
165 /// Reports the current state of the network interface.
169 /// The size, in bytes, of the network interface's HW address.
173 /// The size, in bytes, of the network interface's media header.
177 /// The maximum size, in bytes, of the packets supported by the network interface.
181 /// The size, in bytes, of the NVRAM device attached to the network interface.
192 /// The multicast receive filter settings supported by the network interface.
[all …]
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202005/MdePkg/Include/Protocol/
DSimpleNetwork.h2 The EFI_SIMPLE_NETWORK_PROTOCOL provides services to initialize a network interface,
3 transmit packets, receive packets, and close a network interface.
140 /// The state of the network interface.
142 /// network interface, the network interface is left in the EfiSimpleNetworkStopped state.
165 /// Reports the current state of the network interface.
169 /// The size, in bytes, of the network interface's HW address.
173 /// The size, in bytes, of the network interface's media header.
177 /// The maximum size, in bytes, of the packets supported by the network interface.
181 /// The size, in bytes, of the NVRAM device attached to the network interface.
192 /// The multicast receive filter settings supported by the network interface.
[all …]
/external/coreboot/src/vendorcode/intel/edk2/UDK2017/MdePkg/Include/Protocol/
DSimpleNetwork.h2 The EFI_SIMPLE_NETWORK_PROTOCOL provides services to initialize a network interface,
3 transmit packets, receive packets, and close a network interface.
146 /// The state of the network interface.
148 /// network interface, the network interface is left in the EfiSimpleNetworkStopped state.
171 /// Reports the current state of the network interface.
175 /// The size, in bytes, of the network interface's HW address.
179 /// The size, in bytes, of the network interface's media header.
183 /// The maximum size, in bytes, of the packets supported by the network interface.
187 /// The size, in bytes, of the NVRAM device attached to the network interface.
198 /// The multicast receive filter settings supported by the network interface.
[all …]
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202302/MdePkg/Include/Protocol/
DSimpleNetwork.h2 The EFI_SIMPLE_NETWORK_PROTOCOL provides services to initialize a network interface,
3 transmit packets, receive packets, and close a network interface.
139 /// The state of the network interface.
141 /// network interface, the network interface is left in the EfiSimpleNetworkStopped state.
164 /// Reports the current state of the network interface.
168 /// The size, in bytes, of the network interface's HW address.
172 /// The size, in bytes, of the network interface's media header.
176 /// The maximum size, in bytes, of the packets supported by the network interface.
180 /// The size, in bytes, of the NVRAM device attached to the network interface.
191 /// The multicast receive filter settings supported by the network interface.
[all …]

12345678910>>...784