Home
last modified time | relevance | path

Searched defs:meth (Results 1 – 25 of 145) sorted by relevance

123456

/external/python/cpython3/Include/cpython/
Dclassobject.h29 #define _PyMethod_CAST(meth) \ argument
34 static inline PyObject* PyMethod_GET_FUNCTION(PyObject *meth) { in PyMethod_GET_FUNCTION()
37 #define PyMethod_GET_FUNCTION(meth) PyMethod_GET_FUNCTION(_PyObject_CAST(meth)) argument
39 static inline PyObject* PyMethod_GET_SELF(PyObject *meth) { in PyMethod_GET_SELF()
42 #define PyMethod_GET_SELF(meth) PyMethod_GET_SELF(_PyObject_CAST(meth)) argument
56 #define _PyInstanceMethod_CAST(meth) \ argument
62 static inline PyObject* PyInstanceMethod_GET_FUNCTION(PyObject *meth) { in PyInstanceMethod_GET_FUNCTION()
65 #define PyInstanceMethod_GET_FUNCTION(meth) PyInstanceMethod_GET_FUNCTION(_PyObject_CAST(meth)) argument
/external/clang/test/PCH/
Dmethod-redecls.m7 -(void)meth; method
8 -(void)meth; method
9 -(void)meth; method
15 -(void)meth { } method
Dchain-categories.m34 +(void)meth; class
52 +(void)meth {} class
Dpending-ids.m20 + (BOOL)meth; class
/external/fbjni/cxx/fbjni/
DByteBuffer.cpp25 static auto meth = in rewind() local
61 static auto meth = javaClassStatic()->getMethod<jboolean()>("isDirect"); in isDirect() local
66 static auto meth = in nativeOrder() local
102 static auto meth = cls->getStaticMethod<JByteBuffer(int)>("allocateDirect"); in allocateDirect() local
107 static auto meth = in order() local
/external/clang/test/SemaObjC/
Dmethod-undefined-warn-1.m4 - (void) meth; method
14 - (void) meth {} method
20 - (void) meth; method
30 - (void) meth {} method
36 - (void) meth; method
42 - (void) meth {} method
Dcheck-dup-decl-methods-1.m4 - (int) meth; method
11 - (int) meth; // expected-note {{previous declaration is here}} method
12 - (int*) meth; // expected-error {{duplicate declaration of method 'meth'}} method
35 - (int) meth; // expected-note {{previous declaration is here}} method
36 - (int*) meth; // expected-error {{duplicate declaration of method 'meth'}} method
Dclass-unavail-warning.m14 - (MyClass *)meth; // no error. method
21 - (MyClass *)meth; // expected-error {{unavailable}} method
25 - (MyClass *)meth; // no error. method in Cat1
Dmethod-def-1.m4 - (int)meth; method
8 - (int) meth { return [self meth]; } method
Dundefined-protocol-type-1.m7 - (T<p2, p3, p1, p4>*) meth; // expected-error {{cannot find protocol declaration for 'p3'}} method
Dcircular-container.m153 - (void)meth { method
164 - (void)meth { method
175 - (void)meth { method
/external/clang/test/Index/
Doverrides.m43 -(void)meth; method in cat
50 -(void)meth { } method
61 -(void)meth; method
72 -(void)meth; method in readwrite
88 -(void)meth; method
92 -(void)meth; method in cat
96 -(void)meth{} method
Dpch-with-errors.m5 -(void)meth; method in cat
9 -(void)meth; method
Dcursor-dynamic-call.mm3 virtual void meth(); field
14 -(void)meth; method
Dindex-decls.m24 -(void)meth { method
54 -(void)meth; method
Dunmatched-braces.m2 -(void)meth { method
Drdar12316296-codecompletion.m18 -(void)meth { method
/external/python/cpython3/Include/internal/
Dpycore_emscripten_trampoline.h44 #define _PyEM_TrampolineCall(meth, self, args, kw) \ argument
49 #define _PyCFunction_TrampolineCall(meth, self, args) \ argument
53 #define _PyCFunctionWithKeywords_TrampolineCall(meth, self, args, kw) \ argument
67 #define _PyCFunction_TrampolineCall(meth, self, args) \ argument
70 #define _PyCFunctionWithKeywords_TrampolineCall(meth, self, args, kw) \ argument
/external/rust/android-crates-io/crates/mockall_derive/src/
Dmockable_struct.rs545 let mut meth: TraitItemFn = parse2(quote!( in array() localVariable
558 let mut meth: TraitItemFn = parse2(quote!( in bare_fn_with_named_args() localVariable
570 let mut meth: TraitItemFn = parse2(quote!( in plain() localVariable
583 let mut meth: TraitItemFn = parse2(quote!( in slice() localVariable
596 let mut meth: TraitItemFn = parse2(quote!( in tuple() localVariable
609 let mut meth: TraitItemFn = parse2(quote!( in with_anonymous_lifetime() localVariable
621 let mut meth: TraitItemFn = parse2(quote!( in with_parens() localVariable
634 let mut meth: TraitItemFn = parse2(quote!( in with_lifetime_parameter() localVariable
646 let mut meth: TraitItemFn = parse2(quote!( in with_static_lifetime() localVariable
664 let meth: ImplItemFn = parse2(quote!( in impl_trait() localVariable
/external/fbjni/cxx/fbjni/detail/
DExceptions.cpp184 static auto meth = in initCause() local
191 static auto meth = in getStackTrace() local
197 static auto meth = javaClassStatic()->getMethod<void(alias_ref<JStackTrace>)>( in setStackTrace() local
203 static auto meth = in getMessage() local
217 static auto meth = in getClassName() local
223 static auto meth = in getMethodName() local
229 static auto meth = in getFileName() local
235 static auto meth = javaClassStatic()->getMethod<jint()>("getLineNumber"); in getLineNumber() local
/external/python/cpython3/Lib/test/
Dtest_compare.py139 meth = () variable in ComparisonFullTest.CompNone
143 meth = ("eq",) variable in ComparisonFullTest.CompEq
148 meth = ("ne",) variable in ComparisonFullTest.CompNe
153 meth = ("eq", "ne") variable in ComparisonFullTest.CompEqNe
162 meth = ("lt",) variable in ComparisonFullTest.CompLt
167 meth = ("gt",) variable in ComparisonFullTest.CompGt
172 meth = ("lt", "gt") variable in ComparisonFullTest.CompLtGt
181 meth = ("le",) variable in ComparisonFullTest.CompLe
186 meth = ("ge",) variable in ComparisonFullTest.CompGe
191 meth = ("le", "ge") variable in ComparisonFullTest.CompLeGe
/external/python/cpython3/Objects/
Dmethodobject.c420 PyCFunctionFast meth = (PyCFunctionFast) in cfunction_vectorcall_FASTCALL() local
436 PyCFunctionFastWithKeywords meth = (PyCFunctionFastWithKeywords) in cfunction_vectorcall_FASTCALL_KEYWORDS() local
453 PyCMethod meth = (PyCMethod)cfunction_enter_call(tstate, func); in cfunction_vectorcall_FASTCALL_KEYWORDS_METHOD() local
480 PyCFunction meth = (PyCFunction)cfunction_enter_call(tstate, func); in cfunction_vectorcall_NOARGS() local
508 PyCFunction meth = (PyCFunction)cfunction_enter_call(tstate, func); in cfunction_vectorcall_O() local
535 PyCFunction meth = PyCFunction_GET_FUNCTION(func); in cfunction_call() local
/external/clang/test/Index/Core/
Dindex-source.m5 -(void)meth; method
78 -(void)meth; method
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/
DVerifier.java163 final int meth = pv.getMethodNo(); in getMessages() local
172 final int meth = pv.getMethodNo(); in getMessages() local
/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/crypto/x509v3/
Dv3_int.c79 static void *s2i_asn1_int(X509V3_EXT_METHOD *meth, X509V3_CTX *ctx, in s2i_asn1_int()

123456