/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(); 37 // CHECK: [indexDeclaration]: kind: c++-instance-method | name: meth | {{.*}} | loc: 23:26
|
/external/clang/test/CodeGenCXX/ |
duplicate-mangled-name.cpp | 8 static void meth(); 10 void MyClass::meth() { } // expected-note {{previous}} function in class:MyClass
|
/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", (Class[]) null); 51 System.out.println("meth modifiers=" + meth.getModifiers());
|
/art/test/085-old-style-inner-class/src/ |
Main.java | 37 private static String nameOf(Method meth) { 38 return (meth == null) ? "(null)" : meth.toString();
|
/external/clang/test/PCH/ |
objc_import.h | 17 -(void)meth;
|
/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 | 77 static void * s2i_asn1_int(X509V3_EXT_METHOD *meth, X509V3_CTX *ctx, char *value) 79 return s2i_ASN1_INTEGER(meth, value);
|
/system/connectivity/shill/bin/ |
set_arpgw | 41 local meth=$2 44 dbus-send --system --print-reply --fixed --dest=$FLIMFLAM "$obj" "$meth" "$@"
|
set_wake_on_lan | 42 local meth="$2" 45 dbus-send --system --print-reply --fixed --dest="${FLIMFLAM}" "${obj}" "${meth}" "$@"
|
/art/test/128-reg-spilling-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);
|
/external/boringssl/src/crypto/ec/ |
ec.c | 321 EC_GROUP *ec_group_new(const EC_METHOD *meth) { 324 if (meth == NULL) { 329 if (meth->group_init == 0) { 341 ret->meth = meth; 345 if (!meth->group_init(ret)) { 355 const EC_METHOD *meth = EC_GFp_mont_method(); local 358 ret = ec_group_new(meth); 363 if (ret->meth->group_set_curve == 0) { 367 if (!ret->meth->group_set_curve(ret, p, a, b, ctx)) 417 const EC_METHOD *meth; local [all...] |
/art/test/087-gc-after-link/src/ |
Main.java | 86 Method meth = dexClass.getMethod("loadClass", local 93 meth.invoke(dexFile, name, this); 98 Method meth = dexClass.getMethod("close", (Class[]) null); local 99 meth.invoke(dexFile);
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
MethodListParser.java | 80 StdMethod meth = local 83 methods.set(n, meth); 84 return meth;
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
CSeq.java | 156 public void setMethod(String meth) throws ParseException { 157 if (meth == null) 160 + ", setMethod(), the meth parameter is null"); 161 this.method = SIPRequest.getCannonicalName(meth);
|