/external/clang/lib/Sema/ |
SemaExprMember.cpp | 49 /// so, because the context is not an instance method. 66 /// context is not an instance method. 75 /// context is not an instance method. 151 // If the current context is not an instance method, it can't be 207 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FunctionLevelDC); 208 CXXRecordDecl *ContextClass = Method ? Method->getParent() : nullptr; 211 bool InStaticMethod = Method && Method->isStatic(); [all...] |
SemaObjCProperty.cpp | 723 // property implementation before parsing any method bodies. 1985 ObjCMethodDecl *method = PD->getGetterMethodDecl(); local [all...] |
SemaTemplateDeduction.cpp | [all...] |
SemaExprCXX.cpp | [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
TestFmwk.java | 19 import java.lang.reflect.Method; 372 private Method testMethod; 374 public MethodTarget(String name, Method method) { 376 testMethod = method; 399 errln("Can't access test method " + testMethod.getName()); 405 // If non-exhaustive, check if the method target 523 * This method never returns, since it always exits with System.exit(); 662 * ought to be null or a method name). Params is set on the target's test. 730 * The default implementation returns a MethodTarget for each public method 745 Method method = cls.getMethod(targetName, (Class[])null); local [all...] |
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
TestFmwk.java | 18 import java.lang.reflect.Method; 371 private Method testMethod; 373 public MethodTarget(String name, Method method) { 375 testMethod = method; 398 errln("Can't access test method " + testMethod.getName()); 404 // If non-exhaustive, check if the method target 522 * This method never returns, since it always exits with System.exit(); 661 * ought to be null or a method name). Params is set on the target's test. 729 * The default implementation returns a MethodTarget for each public method 744 Method method = cls.getMethod(targetName, (Class[])null); local [all...] |
/external/testng/src/main/java/org/testng/internal/ |
Invoker.java | 5 import java.lang.reflect.Method; 97 private void setMethodInvocationFailure(ITestNGMethod method, Object instance) { 98 Set<Object> instances = m_methodInvocationResults.get(method); 101 m_methodInvocationResults.put(method, instances); 103 instances.add(getMethodInvocationToken(method, instance)); 183 Method method= tm.getMethod(); local 187 // - the Configuration method belongs to the same class or a parent 188 configurationAnnotation = AnnotationHelper.findConfiguration(m_annotationFinder, method); 300 Utils.log("", 3, "Failed to invoke configuration method " 497 Method method = tm.getMethod(); local [all...] |
/external/clang/lib/AST/ |
RecordLayoutBuilder.cpp | [all...] |
StmtPrinter.cpp | [all...] |
/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
SSLSocketTest.java | 26 import java.lang.reflect.Method; [all...] |
/external/clang/lib/Edit/ |
RewriteObjCFoundationAPI.cpp | 10 // Rewrites legacy method calls to modern syntax. 100 /// in the compiler resolving 'objectForKey:' as the method from NSDictionary. 103 /// the receiver is a result of a class method from a hardcoded list of 295 const ObjCMethodDecl *Method = Msg->getMethodDecl(); 296 if (!Method) 300 NS.getASTContext().getObjContainingInterface(Method); 847 // Try to modify the literal make it the same type as the method call. [all...] |
/frameworks/base/tools/apilint/ |
apilint.py | 79 class Method(): 94 for r in ["method", "public", "protected", "static", "final", "deprecated", "abstract"]: 195 clazz.ctors.append(Method(clazz, line, raw, blame)) 196 elif raw.startswith(" method"): 197 clazz.methods.append(Method(clazz, line, raw, blame)) 291 """Try catching malformed method names, like Foo() or getMTU().""" 298 warn(clazz, m, "S1", "Method names with acronyms should be getMtu() instead of getMTU()") 300 error(clazz, m, "S1", "Method name must start with lowercase char") 320 error(clazz, m, "L1", "Callback method names must be onFoo() style") 327 If only a single method, it must match class name [all...] |
/libcore/ojluni/src/main/java/sun/security/ssl/ |
HandshakeMessage.java | 96 * Utility method to convert a BigInteger to a byte array in unsigned 401 s.println("Compression Method: " + compression_method); [all...] |
/art/test/044-proxy/src/ |
ReturnsAndArgPassing.java | 56 public Object invoke(Object proxy, Method method, Object[] args) { 58 check(method.getDeclaringClass() == MyInterface.class); 59 String name = method.getName();
|
/art/test/100-reflect2/src/ |
Main.java | 195 Method m;
|
/art/tools/dexfuzz/src/dexfuzz/program/ |
Program.java | 69 * for a method, and the mutatable form. It also controls all CodeMutators, 94 * Responsible for adding new class ID items, method ID items, etc. 138 * Given a maximum number of mutations that can be performed on a method, n, 139 * give up after attempting (n * this value) mutations for any method. 238 * This is so when we're associating method names with code items, 239 * we can find the name of the class the method belongs to. 253 * For each CodeItem, find the name of the method the item represents. 258 // Associate method names with codeItems. 269 // Track the current method index with this value, since the encoding in 273 for (EncodedMethod method : classDataItem.directMethods) [all...] |
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/ |
XYPlotTest.java | 38 import java.lang.reflect.Method;
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/ |
RewriteRuleXxxxStreamFixture.cs | 90 #region Method Tests
|
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
proxy_generator.cc | 27 // Helper struct to encapsulate information about method call parameter during 206 for (const auto& method : interface.methods) { 207 AddMethodProxy(method, interface.name, true, text); 208 AddAsyncMethodProxy(method, interface.name, true, text); 256 for (const auto& method : interface.methods) { 257 AddMethodProxy(method, interface.name, false, text); 258 AddAsyncMethodProxy(method, interface.name, false, text); 330 for (const auto& method : interface.methods) { 331 AddMethodMock(method, interface.name, text); 332 AddAsyncMethodMock(method, interface.name, text) [all...] |
/external/guice/extensions/multibindings/test/com/google/inject/multibindings/ |
OptionalBinderTest.java | 66 import java.lang.reflect.Method; 78 private static final Method JAVA_OPTIONAL_OR_ELSE; 81 Method orElse = null; [all...] |
/external/javasqlite/src/main/java/SQLite/ |
Database.java | 167 * It the method fails, an SQLite.Exception is thrown and 169 * the last_error() method. 198 * It the method fails, an SQLite.Exception is thrown and 200 * the last_error() method. 255 * Establish a busy callback method which gets called when 258 * @param bh the object implementing the busy callback method 285 * Convenience method to retrieve an entire result 325 * Convenience method to retrieve an entire result 337 * Convenience method to retrieve an entire result 378 * Convenience method to retrieve an entire resul [all...] |
/external/replicaisland/src/com/replica/replicaisland/ |
MainMenuActivity.java | 21 import java.lang.reflect.Method; 401 // TODO Auto-generated method stub 406 // TODO Auto-generated method stub
|
/frameworks/base/rs/java/android/renderscript/ |
RenderScript.java | 20 import java.lang.reflect.Method; 72 static Method registerNativeAllocation; 73 static Method registerNativeFree; 113 Method get_runtime = vm_runtime.getDeclaredMethod("getRuntime"); [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
SearchView.java | 81 import java.lang.reflect.Method; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
strmini.h | 165 PKSMETHOD Method;
|