/external/testng/src/main/java/org/testng/reporters/ |
VerboseReporter.java | 3 import java.lang.reflect.Method; 162 * @param isConfMethod is itr describing configuration method 260 * @param method method to be described 261 * @return FQN of a class + method declaration for a method passed in 264 private String getMethodDeclaration(ITestNGMethod method) { 266 //perhaps should rather adopt the original method instead 267 Method m = method.getMethod() [all...] |
/external/testng/src/test/java/org/testng/internal/ |
MethodInstanceTest.java | 3 import java.lang.reflect.Method;
73 Assert.fail("Comparison method violates its general contract!");
277 public Method getMethod() {
|
/frameworks/base/core/java/android/ddm/ |
DdmHandleViewDebug.java | 34 import java.lang.reflect.Method; 73 /** Invoke a method on the view. */ 304 * Invokes provided method on the view. 305 * The method name and its arguments are passed in as inputs via the byte buffer. 307 * <li> len(method name) </li> 308 * <li> method name </li> 317 * Methods that take no arguments need only specify the method name. 372 "Unsupported parameter type (" + c + ") to invoke view method."); 377 Method method = null local [all...] |
/frameworks/base/core/java/com/android/internal/os/ |
RuntimeInit.java | 34 import java.lang.reflect.Method; 91 // flush the buffer. (This makes method trace profiling useful to debug crashes.) 201 * Invokes a static "main(argv[]) method on class "className". 221 Method m; 235 "Main method is not public and static on " + className); 240 * by invoking the exception's run() method. This arrangement 297 * which calls {@link WrapperInit#main} which then calls this method.
|
ZygoteInit.java | 62 import java.lang.reflect.Method; 846 * Helper exception class which holds a method and arguments and [all...] |
/frameworks/base/packages/CaptivePortalLogin/src/com/android/captiveportallogin/ |
CaptivePortalLoginActivity.java | 54 import java.lang.reflect.Method; 137 Method onReceiveMethod = clazz.getDeclaredMethod("onReceive", Context.class,
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/utils/ |
HTTPRequest.java | 31 public HTTPRequest(Method method, URL url) { 32 this(null, null, method, url, null, false); 35 public HTTPRequest(String payload, Charset charset, Method method, URL url, String contentType, 58 mMethodLine = method.name() + ' ' + url.getPath() + ' ' + HTTPVersion + CRLF; 116 * A2 = Method ":" digest-uri-value 283 private static void test(String user, String realm, String password, String method, String path, 288 byte[] a2 = hash(method, path);
|
/frameworks/multidex/library/src/android/support/multidex/ |
MultiDexExtractor.java | 34 import java.lang.reflect.Method; 349 private static Method sApplyMethod; // final
|
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/ |
MenuItemWrapperICS.java | 35 import java.lang.reflect.Method; 45 // Reflection Method to call setExclusiveCheckable 46 private Method mSetExclusiveCheckableMethod;
|
/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/ |
SerializationTest.java | 36 import java.lang.reflect.Method; 45 * getData() method and, optionally, assertDeserialized() method. The first one 48 * not provide specific method equals()). <br> 73 * This is the main working method of this framework. Subclasses must 123 * Working method for files generation mode. Serializes test objects 172 * equals() method and it's instances should to be compared manually. 185 // default comparator for a class that has equals(Object) method 259 * method then <code>DEFAULT_COMPARATOR</code> is selected.<br> - the 260 * method tries to select one of known comparators basing on <code>object's</code [all...] |
/packages/apps/Dialer/tests/src/com/android/dialer/interactions/ |
PhoneNumberInteractionTest.java | 40 import java.lang.reflect.Method; 68 final Method waitMethod = CursorLoader.class.getMethod("waitForLoader");
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/ |
HyperlinksTest.java | 45 import java.lang.reflect.Method; 265 Method method = xmlEditor.getClass().getMethod("getTextEditor", new Class[0]); local 266 ste = (StructuredTextEditor) method.invoke(newEditor, new Object[0]);
|
/external/clang/test/SemaCXX/ |
cxx1y-generic-lambdas.cpp | 954 void Method(char c = []()->char { 957 int Method() { return 0; } 966 void Method(char c = [](auto x)->char { 969 int Method() { return 0; } 978 void Method(char c = [](auto x)->char { 981 int Method() { return 0; }
|
/external/proguard/src/proguard/evaluation/ |
Processor.java | 79 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) 512 invocationUnit.exitMethod(clazz, method, stack.ipop()); 517 invocationUnit.exitMethod(clazz, method, stack.lpop()); 522 invocationUnit.exitMethod(clazz, method, stack.fpop()); 527 invocationUnit.exitMethod(clazz, method, stack.dpop()); 532 invocationUnit.exitMethod(clazz, method, stack.apop()); 570 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) 591 invocationUnit.invokeMember(clazz, method, codeAttribute, offset, constantInstruction, stack) [all...] |
/external/clang/lib/CodeGen/ |
CGObjCMac.cpp | 832 /// MethodVarNames - uniqued method variable names. 838 /// MethodVarTypes - uniqued method type signatures. We have to use [all...] |
CGObjCGNU.cpp | 118 /// Instance Method Pointer type. This is a pointer to a function that takes, 160 /// Metadata kind used to tie method lookups to message sends. The GNUstep 396 /// Generates a method list structure. This is a structure containing a size 397 /// and an array of structures containing method metadata. 411 /// pattern as method and instance variable metadata lists. 439 /// Generates a method list. This is used by protocols to define the required 458 /// Looks up the method for sending a message to the specified object. This 459 /// mechanism differs between the GCC and GNU runtimes, so this method must be 466 /// Looks up the method for sending a message to a superclass. This 467 /// mechanism differs between the GCC and GNU runtimes, so this method mus [all...] |
/frameworks/base/core/java/android/widget/ |
RemoteViews.java | 71 import java.lang.reflect.Method; 153 private static final ArrayMap<Class<? extends View>, ArrayMap<MutablePair<String, Class<?>>, Method>> sMethods = 154 new ArrayMap<Class<? extends View>, ArrayMap<MutablePair<String, Class<?>>, Method>>(); 155 private static final ArrayMap<Method, Method> sAsyncMethods = new ArrayMap<>(); 458 Log.e(LOG_TAG, "The method setOnClickFillInIntent is available " + 827 private Method getMethod(View view, String methodName, Class<?> paramType) { 828 Method method; local 832 ArrayMap<MutablePair<String, Class<?>>, Method> methods = sMethods.get(klass) 1429 Method method = getMethod(view, this.methodName, param); local [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
RetainCountChecker.cpp | 70 /// ArgEffects summarizes the effects of a function/method call on all of 90 ErrorLeakReturned, // A memory leak due to the returning method not having 379 // Function/Method behavior summaries. 398 /// function/method call returns a new tracked symbol. 556 // FIXME: Class method lookup. Right now we dont' have a good way 773 /// the summary for the current method being analyzed. 791 /// Determine if there is a special return effect for this function or method. 816 // summaries. If a function or method looks like it has a default summary, but [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/ |
AllTests.java | 118 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.Method.BytecodesTest.class); 119 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.Method.IsObsoleteTest.class); 120 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.Method.LineTableTest.class); 121 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.Method.VariableTableTest.class); 122 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.Method.VariableTableWithGenericTest.class);
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
ClassSanityTester.java | 49 import java.lang.reflect.Method; 190 * Tests that {@code cls} properly checks null on all constructor and method parameters that 196 * <li>If there is any non-private constructor or non-private static factory method declared by 198 * created by invoking the constructor or static factory method. 199 * <li>If there is any non-private constructor or non-private static factory method declared by 203 * <li>Test will fail if the factory method returns null so testing instance methods is 205 * <li>Test will fail if the constructor or factory method throws exception. 207 * <li>If there is no non-private constructor or non-private static factory method declared by 209 * <li>Nulls test is not performed on method return values unless the method is a non-privat [all...] |
/cts/tests/tests/util/src/android/util/cts/ |
ArrayMapTest.java | 27 import java.lang.reflect.Method; 472 Method appendMethod = ArrayMap.class.getMethod("append", Object.class, Object.class); 478 Method writeArrayMapMethod = Parcel.class.getMethod("writeArrayMap", ArrayMap.class);
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
TransformerIdentityImpl.java | 51 import org.apache.xml.serializer.Method; 88 m_outputFormat = new OutputProperties(Method.XML); 164 m_outputFormat = new OutputProperties(Method.XML); 564 * <p>This method does not return a default parameter value, which 656 // See if an *explicit* method was set. 657 String method = (String) oformat.get(OutputKeys.METHOD); local 659 if (null != method) 660 m_outputFormat = new OutputProperties(method); 724 * be effected by calling this method.</p [all...] |
/external/testng/src/main/java/org/testng/ |
SuiteRunner.java | 21 import java.lang.reflect.Method; 35 * suite. The test start is triggered by {@link #run()} method. 101 new ArrayList<IMethodInterceptor>() /* method interceptor */, 102 null /* invoked method listeners */, 171 // Install the method interceptor, if any was passed 278 Map<Method, ITestNGMethod> beforeSuiteMethods= new LinkedHashMap<>(); 279 Map<Method, ITestNGMethod> afterSuiteMethods = new LinkedHashMap<>(); 376 * in TestRunner#createParallelWorkers (but since this method deals with just one <test> 658 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { 662 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) [all...] |
/external/testng/src/main/java/org/testng/internal/ |
BaseTestMethod.java | 3 import java.lang.reflect.Method;
35 * The test class on which the test method was found. Note that this is not
77 * @param method
81 public BaseTestMethod(String methodName, Method method, IAnnotationFinder annotationFinder, Object instance) {
82 this(methodName, new ConstructorOrMethod(method), annotationFinder, instance);
162 public Method getMethod() {
197 * @return the addition of groups defined on the class and on this method.
324 * @return the number of times this method needs to be invoked.
340 * @return the number of times this method or one of its clones must be invoked. [all...] |
/frameworks/base/test-runner/src/android/test/ |
InstrumentationTestRunner.java | 42 import java.lang.reflect.Method; 166 * derived class return the desired test suite from the {@link #getTestSuite()} method. The test 167 * suite returned from this method will be used if no target class is defined in the meta-data or 435 * Parse and load the given test class and, optionally, method 437 * @param testClassName - full package name of test class and optionally method to add. 506 * Helper method to return the annotation class with specified name 604 // use reflection to call emma dump coverage method, to avoid 610 Method dumpCoverageMethod = emmaRTClass.getMethod("dumpCoverageData", 782 Method testMethod = null; [all...] |