HomeSort by relevance Sort by last modified time
    Searched refs:meth (Results 1 - 25 of 460) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Index/
usrs-cxx0x.cpp 7 void meth() &;
8 void meth() &&;
9 void meth(int&&);
16 // CHECK: usrs-cxx0x.cpp c:@S@TestCls@F@meth#& Extent=[7:3 - 7:16]
17 // CHECK: usrs-cxx0x.cpp c:@S@TestCls@F@meth#&& Extent=[8:3 - 8:17]
18 // CHECK: usrs-cxx0x.cpp c:@S@TestCls@F@meth#&&I# Extent=[9:3 - 9:19]
annotate-macro-args.h 2 +(void)meth;
9 MACRO([MyClass meth]);
15 INVOKE(meth, MyClass);
get-cursor-macro-args.h 2 +(void)meth;
9 MACRO([MyClass meth]);
15 INVOKE(meth, MyClass);
index-file.cpp 21 void meth();
23 template <> void A<int>::meth();
48 // CHECK: [indexDeclaration]: kind: c++-instance-method | name: meth | {{.*}} | loc: 23:26
  /external/python/cpython3/Include/
classobject.h 30 #define PyMethod_GET_FUNCTION(meth) \
31 (((PyMethodObject *)meth) -> im_func)
32 #define PyMethod_GET_SELF(meth) \
33 (((PyMethodObject *)meth) -> im_self)
51 #define PyInstanceMethod_GET_FUNCTION(meth) \
52 (((PyInstanceMethodObject *)meth) -> func)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
visitor.py 45 meth = self._cache.get(klass, None)
46 if meth is None:
48 meth = getattr(self.visitor, 'visit' + className, self.default)
49 self._cache[klass] = meth
53 ## if meth == 0:
56 ## print "dispatch", className, (meth and meth.__name__ or '')
57 return meth(node, *args)
76 meth = self._cache.get(node.__class__, None)
78 if meth is None:
    [all...]
  /external/python/cpython2/Lib/compiler/
visitor.py 45 meth = self._cache.get(klass, None)
46 if meth is None:
48 meth = getattr(self.visitor, 'visit' + className, self.default)
49 self._cache[klass] = meth
53 ## if meth == 0:
56 ## print "dispatch", className, (meth and meth.__name__ or '')
57 return meth(node, *args)
76 meth = self._cache.get(node.__class__, None)
78 if meth is None
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
visitor.py 45 meth = self._cache.get(klass, None)
46 if meth is None:
48 meth = getattr(self.visitor, 'visit' + className, self.default)
49 self._cache[klass] = meth
53 ## if meth == 0:
56 ## print "dispatch", className, (meth and meth.__name__ or '')
57 return meth(node, *args)
76 meth = self._cache.get(node.__class__, None)
78 if meth is None
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
visitor.py 45 meth = self._cache.get(klass, None)
46 if meth is None:
48 meth = getattr(self.visitor, 'visit' + className, self.default)
49 self._cache[klass] = meth
53 ## if meth == 0:
56 ## print "dispatch", className, (meth and meth.__name__ or '')
57 return meth(node, *args)
76 meth = self._cache.get(node.__class__, None)
78 if meth is None
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
visitor.py 45 meth = self._cache.get(klass, None)
46 if meth is None:
48 meth = getattr(self.visitor, 'visit' + className, self.default)
49 self._cache[klass] = meth
53 ## if meth == 0:
56 ## print "dispatch", className, (meth and meth.__name__ or '')
57 return meth(node, *args)
76 meth = self._cache.get(node.__class__, None)
78 if meth is None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
visitor.py 45 meth = self._cache.get(klass, None)
46 if meth is None:
48 meth = getattr(self.visitor, 'visit' + className, self.default)
49 self._cache[klass] = meth
53 ## if meth == 0:
56 ## print "dispatch", className, (meth and meth.__name__ or '')
57 return meth(node, *args)
76 meth = self._cache.get(node.__class__, None)
78 if meth is None
    [all...]
  /art/test/032-concrete-sub/src/
ConcreteSub.java 41 Method meth; local
46 meth = absClass.getMethod("redefineMe");
51 System.out.println("meth modifiers=" + meth.getModifiers());
  /art/test/085-old-style-inner-class/src/
Main.java 41 private static String nameOf(Method meth) {
42 return (meth == null) ? "(null)" : meth.toString();
  /external/clang/test/PCH/
objc_import.h 17 -(void)meth;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
classobject.h 69 #define PyMethod_GET_FUNCTION(meth) \
70 (((PyMethodObject *)meth) -> im_func)
71 #define PyMethod_GET_SELF(meth) \
72 (((PyMethodObject *)meth) -> im_self)
73 #define PyMethod_GET_CLASS(meth) \
74 (((PyMethodObject *)meth) -> im_class)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
classobject.h 69 #define PyMethod_GET_FUNCTION(meth) \
70 (((PyMethodObject *)meth) -> im_func)
71 #define PyMethod_GET_SELF(meth) \
72 (((PyMethodObject *)meth) -> im_self)
73 #define PyMethod_GET_CLASS(meth) \
74 (((PyMethodObject *)meth) -> im_class)
  /external/python/cpython2/Include/
classobject.h 69 #define PyMethod_GET_FUNCTION(meth) \
70 (((PyMethodObject *)meth) -> im_func)
71 #define PyMethod_GET_SELF(meth) \
72 (((PyMethodObject *)meth) -> im_self)
73 #define PyMethod_GET_CLASS(meth) \
74 (((PyMethodObject *)meth) -> im_class)
  /prebuilts/gdb/darwin-x86/include/python2.7/
classobject.h 69 #define PyMethod_GET_FUNCTION(meth) \
70 (((PyMethodObject *)meth) -> im_func)
71 #define PyMethod_GET_SELF(meth) \
72 (((PyMethodObject *)meth) -> im_self)
73 #define PyMethod_GET_CLASS(meth) \
74 (((PyMethodObject *)meth) -> im_class)
  /prebuilts/gdb/linux-x86/include/python2.7/
classobject.h 69 #define PyMethod_GET_FUNCTION(meth) \
70 (((PyMethodObject *)meth) -> im_func)
71 #define PyMethod_GET_SELF(meth) \
72 (((PyMethodObject *)meth) -> im_self)
73 #define PyMethod_GET_CLASS(meth) \
74 (((PyMethodObject *)meth) -> im_class)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
classobject.h 69 #define PyMethod_GET_FUNCTION(meth) \
70 (((PyMethodObject *)meth) -> im_func)
71 #define PyMethod_GET_SELF(meth) \
72 (((PyMethodObject *)meth) -> im_self)
73 #define PyMethod_GET_CLASS(meth) \
74 (((PyMethodObject *)meth) -> im_class)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
classobject.h 69 #define PyMethod_GET_FUNCTION(meth) \
70 (((PyMethodObject *)meth) -> im_func)
71 #define PyMethod_GET_SELF(meth) \
72 (((PyMethodObject *)meth) -> im_self)
73 #define PyMethod_GET_CLASS(meth) \
74 (((PyMethodObject *)meth) -> im_class)
  /external/boringssl/src/crypto/x509v3/
v3_int.c 79 static void *s2i_asn1_int(X509V3_EXT_METHOD *meth, X509V3_CTX *ctx,
82 return s2i_ASN1_INTEGER(meth, value);
  /external/clang/test/CodeGenCXX/
duplicate-mangled-name.cpp 10 static void meth();
12 void MyClass::meth() { } // expected-note {{previous}} function in class:MyClass
  /art/test/128-reg-spill-on-implicit-nullcheck/src/
Main.java 43 public void meth() {field = 1;} method in class:TestClass
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
tclinit.swg 80 swig_method* meth;
82 for (meth = klass->methods; meth && meth->name; ++meth) {
84 Tcl_HashEntry* hashentry = Tcl_CreateHashEntry(&(klass->hashtable), meth->name, &newEntry);
85 Tcl_SetHashValue(hashentry, (ClientData)meth->method);

Completed in 1156 milliseconds

1 2 3 4 5 6 7 8 91011>>