/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | objc_class_method.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 type Target = objc::runtime::Object; 21 unsafe impl objc::Message for Foo {} 31 <Self as std::ops::Deref>::Target: objc::Message + Sized, in method() 37 <Self as std::ops::Deref>::Target: objc::Message + Sized, in methodWithInt_() 43 <Self as std::ops::Deref>::Target: objc::Message + Sized, in methodWithFoo_() 49 <Self as std::ops::Deref>::Target: objc::Message + Sized, in methodReturningInt() 55 <Self as std::ops::Deref>::Target: objc::Message + Sized, in methodReturningFoo() 64 <Self as std::ops::Deref>::Target: objc in methodWithArg1_andArg2_andArg3_() [all...] |
H A D | objc_method.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 type Target = objc::runtime::Object; 21 unsafe impl objc::Message for Foo {} 31 <Self as std::ops::Deref>::Target: objc::Message + Sized, in method() 37 <Self as std::ops::Deref>::Target: objc::Message + Sized, in methodWithInt_() 43 <Self as std::ops::Deref>::Target: objc::Message + Sized, in methodWithFoo_() 49 <Self as std::ops::Deref>::Target: objc::Message + Sized, in methodReturningInt() 55 <Self as std::ops::Deref>::Target: objc::Message + Sized, in methodReturningFoo() 65 <Self as std::ops::Deref>::Target: objc in methodWithArg1_andArg2_andArg3_() [all...] |
H A D | objc_allowlist.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 15 <Self as std::ops::Deref>::Target: objc::Message + Sized, in protocolMethod() 21 <Self as std::ops::Deref>::Target: objc::Message + Sized, in protocolClassMethod() 30 type Target = objc::runtime::Object; 35 unsafe impl objc::Message for AllowlistMe {} 46 <Self as std::ops::Deref>::Target: objc::Message + Sized, in method() 52 <Self as std::ops::Deref>::Target: objc::Message + Sized, in classMethod()
|
H A D | objc_pointer_return_types.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 type Target = objc::runtime::Object; 21 unsafe impl objc::Message for Bar {} 33 type Target = objc::runtime::Object; 38 unsafe impl objc::Message for Foo {} 48 <Self as std::ops::Deref>::Target: objc::Message + Sized, in methodUsingBar_() 54 <Self as std::ops::Deref>::Target: objc::Message + Sized, in methodReturningBar()
|
H A D | objc_category.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 type Target = objc::runtime::Object; 21 unsafe impl objc::Message for Foo {} 31 <Self as std::ops::Deref>::Target: objc::Message + Sized, in method() 40 <Self as std::ops::Deref>::Target: objc::Message + Sized, in categoryMethod()
|
H A D | objc_blocklist.rs | 10 extern crate objc; 12 pub type id = *mut objc::runtime::Object; 17 type Target = objc::runtime::Object; 22 unsafe impl objc::Message for SomeClass {} 32 <Self as std::ops::Deref>::Target: objc::Message + Sized, in ambiguouslyBlockedMethod() 38 <Self as std::ops::Deref>::Target: objc::Message + Sized, in instanceMethod()
|
H A D | objc_method_clash.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 type Target = objc::runtime::Object; 21 unsafe impl objc::Message for Foo {} 31 <Self as std::ops::Deref>::Target: objc::Message + Sized, in foo() 37 <Self as std::ops::Deref>::Target: objc::Message + Sized, in class_foo()
|
H A D | objc_protocol_inheritance.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 17 type Target = objc::runtime::Object; 22 unsafe impl objc::Message for Foo {} 35 type Target = objc::runtime::Object; 40 unsafe impl objc::Message for Bar {}
|
H A D | objc_property_fnptr.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 type Target = objc::runtime::Object; 21 unsafe impl objc::Message for Foo {} 39 <Self as std::ops::Deref>::Target: objc::Message + Sized, in func() 53 <Self as std::ops::Deref>::Target: objc::Message + Sized, in setFunc_()
|
H A D | objc_class.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 19 type Target = objc::runtime::Object; 24 unsafe impl objc::Message for Foo {} 34 <Self as std::ops::Deref>::Target: objc::Message + Sized, in method()
|
H A D | wrap_unsafe_ops_objc_class.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 19 type Target = objc::runtime::Object; 24 unsafe impl objc::Message for Foo {} 34 <Self as std::ops::Deref>::Target: objc::Message + Sized, in method()
|
H A D | objc_escape.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 type Target = objc::runtime::Object; 21 unsafe impl objc::Message for A {} 34 <Self as std::ops::Deref>::Target: objc::Message + Sized, in f_as_()
|
H A D | objc_sel_and_id.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 pub static mut selector: objc::runtime::Sel; 19 pub fn f(object: id, selector: objc::runtime::Sel); in f()
|
H A D | objc_interface.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 type Target = objc::runtime::Object; 21 unsafe impl objc::Message for Foo {}
|
H A D | objc_protocol.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 17 type Target = objc::runtime::Object; 22 unsafe impl objc::Message for Foo {}
|
H A D | objc_interface_type.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 type Target = objc::runtime::Object; 21 unsafe impl objc::Message for Foo {}
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-5/ |
H A D | objc_template.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 type Target = objc::runtime::Object; 21 unsafe impl objc::Message for Foo {} 31 <Self as std::ops::Deref>::Target: objc::Message + Sized, in get() 40 type Target = objc::runtime::Object; 45 unsafe impl objc::Message for FooMultiGeneric {} 60 <Self as std::ops::Deref>::Target: objc::Message + Sized, in objectForKey_()
|
H A D | objc_inheritance.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 type Target = objc::runtime::Object; 21 unsafe impl objc::Message for Foo {} 33 type Target = objc::runtime::Object; 38 unsafe impl objc::Message for Bar {} 68 type Target = objc::runtime::Object; 73 unsafe impl objc::Message for Baz {}
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-9/ |
H A D | objc_template.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 type Target = objc::runtime::Object; 21 unsafe impl objc::Message for Foo {} 31 <Self as std::ops::Deref>::Target: objc::Message + Sized, in get() 40 type Target = objc::runtime::Object; 45 unsafe impl objc::Message for FooMultiGeneric {} 60 <Self as std::ops::Deref>::Target: objc::Message + Sized, in objectForKey_()
|
H A D | objc_inheritance.rs | 9 use objc::{self, class, msg_send, sel, sel_impl}; 11 pub type id = *mut objc::runtime::Object; 16 type Target = objc::runtime::Object; 21 unsafe impl objc::Message for Foo {} 33 type Target = objc::runtime::Object; 38 unsafe impl objc::Message for Bar {} 68 type Target = objc::runtime::Object; 73 unsafe impl objc::Message for Baz {}
|
/third_party/python/Modules/ |
H A D | _tkinter.c | 1252 Tkapp_CallDeallocArgs(Tcl_Obj** objv, Tcl_Obj** objStore, int objc) in Tkapp_CallDeallocArgs() argument 1255 for (i = 0; i < objc; i++) in Tkapp_CallDeallocArgs() 1268 Py_ssize_t objc = 0, i; in Tkapp_CallArgs() local 1276 objc = 1; in Tkapp_CallArgs() 1280 objc = PySequence_Fast_GET_SIZE(args); in Tkapp_CallArgs() 1282 if (objc > ARGSZ) { in Tkapp_CallArgs() 1283 if (!CHECK_SIZE(objc, sizeof(Tcl_Obj *))) { in Tkapp_CallArgs() 1289 objv = (Tcl_Obj **)PyMem_Malloc(((size_t)objc) * sizeof(Tcl_Obj *)); in Tkapp_CallArgs() 1292 objc = 0; in Tkapp_CallArgs() 1297 for (i = 0; i < objc; in Tkapp_CallArgs() 1359 int objc; Tkapp_CallProc() local 1410 int objc, i; Tkapp_Call() local 2147 int objc; _tkinter_tkapp_splitlist() local 2229 PythonCmd(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]) PythonCmd() argument [all...] |
/third_party/glfw/include/GLFW/ |
H A D | glfw3native.h | 113 #include <objc/objc.h>
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | mod.rs | 20 pub mod objc; modules
|
/third_party/protobuf/objectivec/DevTools/ |
H A D | full_mac_build.sh | 48 --skip-objc-conformance 134 --skip-objc-conformance )
|
/third_party/skia/third_party/externals/angle2/src/common/apple/ |
H A D | SoftLinking.h | 20 # import <objc/runtime.h>
|