/external/chromium_org/ui/gl/ |
gl_bindings_skia_in_process.cc | 583 GrGLInterface* interface = new GrGLInterface; local 585 interface->fBindingsExported = binding; 586 interface->fActiveTexture = StubGLActiveTexture; 587 interface->fAttachShader = StubGLAttachShader; 588 interface->fBeginQuery = StubGLBeginQuery; 589 interface->fBindAttribLocation = StubGLBindAttribLocation; 590 interface->fBindBuffer = StubGLBindBuffer; 591 interface->fBindFragDataLocation = StubGLBindFragDataLocation; 592 interface->fBindTexture = StubGLBindTexture; 593 interface->fBindVertexArray = StubGLBindVertexArray [all...] |
/device/asus/flo/camera/QCamera2/stack/ |
Android.mk | 2 include $(LOCAL_PATH)/mm-camera-interface/Android.mk 3 include $(LOCAL_PATH)/mm-jpeg-interface/Android.mk 4 include $(LOCAL_PATH)/mm-jpeg-interface/test/Android.mk
|
/external/chromium_org/chrome/common/extensions/api/test_presubmit/ |
invalid_idl_8.idl | 8 // Did not process Interface Interface(NotEvent). 9 interface NotEvent {
|
/external/clang/test/CodeGenObjC/ |
debug-info-impl.m | 3 @interface NSObject { 8 @interface Shape : NSObject 11 @interface Circle : Shape
|
synthesize_ivar-cont-class.m | 6 @interface XCOrganizerNodeInfo 10 @interface XCOrganizerDeviceNodeInfo : XCOrganizerNodeInfo 13 @interface XCOrganizerDeviceNodeInfo()
|
/external/clang/test/PCH/ |
objc_stmts.h | 3 @interface A 6 @interface B 9 @interface TestPCH
|
/external/clang/test/SemaObjC/ |
method-in-class-extension-impl.m | 7 @interface NSTextView 11 @interface FooTextView : NSTextView 14 @interface FooTextView()
|
writable-property-in-superclass.m | 4 @interface MessageStore 8 @interface MessageStore (CAT) 12 @interface NeXTMbox : MessageStore
|
access-property-getter.m | 11 @interface XCWorkQueueCommandInvocation 17 @interface XCWorkQueueCommandSubprocessInvocation : XCWorkQueueCommandInvocation 20 @interface XCWorkQueueCommandLocalSubprocessInvocation : XCWorkQueueCommandSubprocessInvocation 23 @interface XCWorkQueueCommandDistributedSubprocessInvocation : XCWorkQueueCommandSubprocessInvocation 26 @interface XCWorkQueueCommandCacheFetchInvocation : XCWorkQueueCommandSubprocessInvocation
|
conditional-expr-7.m | 5 @interface Super @end 7 @interface NSArray : Super @end 8 @interface NSSet : Super @end 18 @interface NSArray() <MyProtocol2> 21 @interface NSSet() <MyProtocol>
|
duplicate-ivar-in-class-extension.m | 3 @interface Root @end 5 @interface SuperClass : Root 11 @interface SubClass : SuperClass { 18 @interface SuperClass () { 23 @interface Root () {
|
protocol-lookup-2.m | 3 @interface NSObject @end 16 @interface Foo : NSObject <ProtocolB> 20 @interface SubFoo : Foo 41 @interface I1 : NSObject 44 @interface I1(cat) 48 @interface I2 : NSObject 52 @interface I2() <ProtC>
|
property-category-4.m | 3 @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...] |
forward-class-1.m | 6 @interface INTF : FOO // expected-error {{attempting to use the forward class 'FOO' as superclass of 'INTF'}} 9 @interface FOO 14 @interface INTF1 : FOO 17 @interface INTF2 : INTF1 // expected-note {{previous definition is here}} 23 @interface INTF2 : INTF1 // expected-error {{duplicate interface definition for class 'INTF2'}} 30 @interface NSObject @end 36 @interface XCElementMainImp { 50 @interface A : B {} // expected-error {{attempting to use the forward class 'B' as superclass of 'A'}} 53 @interface B : A { [all...] |
super-class-protocol-conformance.m | 4 @interface NSObject @end 13 @interface TopClass : NSObject <TopProtocol> {} 16 @interface SubClass : TopClass <SubProtocol> {} 19 @interface SubClass1 : TopClass {} 30 @interface SubClass2 : TopClass<TopProtocol> 35 @interface SubClass3 : TopClass<SubProtocol> @end 38 @interface SubClass4 : SubClass3 @end 45 @interface SubClass5 : SubClass4 <NewProtocol> @end 53 @interface Super <SuperProtocol> 60 @interface INTF : Super <ProtocolWithProperty> [all...] |
/external/clang/test/SemaObjCXX/ |
property-type-mismatch.mm | 7 @interface NSObject 10 @interface A : NSObject 17 @interface B : A
|
objc-extern-c.mm | 7 @interface I // expected-note {{previous}} 10 @interface I2 12 @interface I2(C) // expected-note {{previous}} 20 @interface I // expected-error {{duplicate}} 23 @interface I2(C) // expected-warning {{duplicate}}
|
/hardware/qcom/camera/QCamera2/stack/ |
Android.mk | 2 include $(LOCAL_PATH)/mm-camera-interface/Android.mk 3 include $(LOCAL_PATH)/mm-jpeg-interface/Android.mk 4 include $(LOCAL_PATH)/mm-jpeg-interface/test/Android.mk
|
/external/eigen/bench/btl/actions/ |
action_lu_solve.hh | 31 template<class Interface> 39 return "lu_solve_"+Interface::name(); 51 typename Interface::stl_matrix A_stl; 52 typename Interface::stl_vector B_stl; 53 typename Interface::stl_vector X_stl; 61 typename Interface::gene_matrix A; 62 typename Interface::gene_vector B; 63 typename Interface::gene_vector X; 65 typename Interface::gene_matrix LU; 67 Interface::matrix_from_stl(A,A_stl) [all...] |
action_axpby.hh | 30 template<class Interface> 46 Interface::vector_from_stl(X_ref,X_stl); 47 Interface::vector_from_stl(Y_ref,Y_stl); 49 Interface::vector_from_stl(X,X_stl); 50 Interface::vector_from_stl(Y,Y_stl); 65 Interface::free_vector(X_ref); 66 Interface::free_vector(Y_ref); 68 Interface::free_vector(X); 69 Interface::free_vector(Y); 75 return "axpby_"+Interface::name() [all...] |
action_hessenberg.hh | 30 template<class Interface> 48 Interface::matrix_from_stl(X_ref,X_stl); 49 Interface::matrix_from_stl(X,X_stl); 50 Interface::matrix_from_stl(C,C_stl); 76 Interface::free_matrix(X_ref,_size); 77 Interface::free_matrix(X,_size); 78 Interface::free_matrix(C,_size); 85 return "hessenberg_"+Interface::name(); 93 Interface::copy_matrix(X_ref,X,_size); 97 Interface::hessenberg(X,C,_size) [all...] |
/external/wpa_supplicant_8/hostapd/ |
ctrl_iface.h | 2 * hostapd / UNIX domain socket -based control interface 15 int hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface); 16 void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface); 28 hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface) 34 hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface)
|
/prebuilts/sdk/4/ |
framework.aidl | 0 interface android.accounts.IAccountsService; 18 interface com.android.internal.view.IInputContext; 19 interface com.android.internal.view.IInputMethod; 20 interface com.android.internal.view.IInputMethodCallback; 21 interface com.android.internal.view.IInputMethodClient; 22 interface com.android.internal.view.IInputMethodManager; 23 interface com.android.internal.view.IInputMethodSession; 27 interface android.im.IImPlugin; 31 interface com.android.internal.telephony.IPhoneSubInfo; 32 interface com.android.internal.telephony.ITelephony [all...] |
/external/clang/test/SemaCXX/ |
ms-interface.cpp | 4 // expected-error@+1 {{user-declared constructor is not permitted within an interface type}} 6 // expected-error@+1 {{user-declared destructor is not permitted within an interface type}} 9 // expected-error@+1 {{operator 'operator!' is not permitted within an interface type}} 11 // expected-error@+1 {{operator 'operator int' is not permitted within an interface type}} 13 // expected-error@+1 {{nested class I1::<anonymous> is not permitted within an interface type}} 18 protected: // expected-error {{interface types cannot specify 'protected' access}} 21 private: // expected-error {{interface types cannot specify 'private' access}} 26 // expected-error@+1 {{data member 'i' is not permitted within an interface type}} 28 // expected-error@+1 {{static member function 'fn1' is not permitted within an interface type}} 30 private: // expected-error {{interface types cannot specify 'private' access} [all...] |
/frameworks/base/core/java/android/net/ |
INetworkManagementEventObserver.aidl | 24 interface INetworkManagementEventObserver { 26 * Interface configuration status has changed. 28 * @param iface The interface. 29 * @param up True if the interface has been enabled. 34 * Interface physical-layer link state has changed. For Ethernet, 37 * @param iface The interface. 43 * An interface has been added to the system 45 * @param iface The interface. 50 * An interface has been removed from the system 52 * @param iface The interface [all...] |