HomeSort by relevance Sort by last modified time
    Searched refs:getMethod (Results 276 - 300 of 1665) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Sema/
ObjCMethodList.h 45 ObjCMethodDecl *getMethod() const {
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Sema/
ObjCMethodList.h 45 ObjCMethodDecl *getMethod() const {
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Sema/
ObjCMethodList.h 45 ObjCMethodDecl *getMethod() const {
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Sema/
ObjCMethodList.h 45 ObjCMethodDecl *getMethod() const {
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Sema/
ObjCMethodList.h 45 ObjCMethodDecl *getMethod() const {
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Sema/
ObjCMethodList.h 45 ObjCMethodDecl *getMethod() const {
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
CentralDirectoryHeaderCompressInfo.java 107 public CompressionMethod getMethod() {
  /external/guice/core/test/com/google/inject/
TypeLiteralTypeResolutionTest.java 87 stringIndexOf = String.class.getMethod("indexOf", String.class);
89 comparableCompareTo = Comparable.class.getMethod("compareTo", Object.class);
90 getArray = HasArray.class.getMethod("getArray");
91 getSetOfArray = HasArray.class.getMethod("getSetOfArray");
92 echo = HasRelated.class.getMethod("echo", Object.class);
93 throwS = Thrower.class.getMethod("throwS");
94 setEntryKV = HashMap.class.getMethod("entrySet").getGenericReturnType();
100 resolver.getReturnType(List.class.getMethod("subList", int.class, int.class)).getType());
102 resolver.getParameterTypes(Collection.class.getMethod("add", Object.class)));
189 resolver.getReturnType(HasLists.class.getMethod("listS")).getType())
    [all...]
  /art/test/071-dexfile/src/
Main.java 97 Method DexFile_loadDex = DexFile.getMethod("loadDex",
101 Method DexFile_entries = DexFile.getMethod("entries");
  /art/test/087-gc-after-link/src/
Main.java 85 Method meth = dexClass.getMethod("loadClass", String.class, ClassLoader.class);
96 Method meth = dexClass.getMethod("close");
  /art/test/416-optimizing-arith-not/src/
Main.java 68 Method m = c.getMethod("$opt$NotInt", int.class);
75 Method m = c.getMethod("$opt$NotLong", long.class);
  /art/test/593-checker-boolean-2-integral-conv/src/
Main.java 181 Method m = c.getMethod(name, boolean.class);
191 Method m = c.getMethod(name);
  /external/conscrypt/openjdk/src/main/java/org/conscrypt/
Java9PlatformUtil.java 35 getApplicationProtocolsMethod = sslParameters.getMethod("getApplicationProtocols");
37 sslParameters.getMethod("setApplicationProtocols", String[].class);
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 60 public Method getMethod() throws ClassNotFoundException,
77 Method m = clazz.getMethod(methodName, parameterTypes);
Result.java 78 return invocation.getMethod().invoke(value,
84 + invocation.getMethod() + "]", e);
  /external/javassist/src/main/javassist/
CtArray.java 98 public CtMethod getMethod(String name, String desc)
101 return getSuperclass().getMethod(name, desc);
  /external/testng/src/test/java/test/tmp/verify/
VerifyInterceptor.java 35 ITestNGMethod tm = mi.getMethod();
64 public ITestNGMethod getMethod() {
  /frameworks/support/compat/src/main/java/androidx/core/app/
BundleCompat.java 50 sGetIBinderMethod = Bundle.class.getMethod("getIBinder", String.class);
74 Bundle.class.getMethod("putIBinder", String.class, IBinder.class);
  /art/test/1914-get-local-instance/src/art/
Test1914.java 167 public static Method getMethod(Class<?> klass, String name) throws Exception {
193 new TestCase(null, getMethod(Test1914.class, "StaticMethod")),
194 new TestCase(null, getMethod(Test1914.class, "NativeStaticMethod")),
196 getMethod(TargetClass.class, "InstanceMethod")),
198 getMethod(TargetClass.class, "NativeInstanceMethod")),
200 getMethod(Foo.class, "InterfaceProxyMethod")),
  /external/testng/src/main/java/org/testng/internal/
TestMethodWorker.java 75 ITestNGMethod tm = mi.getMethod();
90 result.append(m.getMethod()).append(" ");
105 ITestNGMethod testMethod = testMthdInst.getMethod();
214 ITestNGMethod tm= mi.getMethod();
264 result.add(m.getMethod());
280 ? m_methodInstances[0].getMethod().getPriority()
  /external/testng/src/test/java/test/name/
NameTest.java 30 Assert.assertEquals(result.getMethod().getMethodName(), "test");
47 Assert.assertEquals(result.getMethod().getMethodName(), "test");
64 Assert.assertEquals(result.getMethod().getMethodName(), "test");
81 Assert.assertEquals(result.getMethod().getMethodName(), "test");
98 Assert.assertEquals(result.getMethod().getMethodName(), "test");
115 Assert.assertEquals(result.getMethod().getMethodName(), "test");
  /tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zfile/
ApkAlignmentTest.java 69 soEntry.getCentralDirectoryHeader().getCompressionInfoWithWait().getMethod());
90 zeroSo.getCentralDirectoryHeader().getCompressionInfoWithWait().getMethod());
122 soEntry.getCentralDirectoryHeader().getCompressionInfoWithWait().getMethod());
166 soEntry.getCentralDirectoryHeader().getCompressionInfoWithWait().getMethod());
187 zeroSo.getCentralDirectoryHeader().getCompressionInfoWithWait().getMethod());
219 soEntry.getCentralDirectoryHeader().getCompressionInfoWithWait().getMethod());
  /external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DexMakerTest.java 66 private static MethodId<Callable, Object> CALL = CALLABLE.getMethod(TypeId.OBJECT, "call");
100 MethodId<?, Constructable> methodId = GENERATED.getMethod(
111 Constructable constructed = (Constructable) getMethod().invoke(null, 5L, false);
131 MethodId<?, Void> methodId = GENERATED.getMethod(TypeId.VOID, "call");
139 Method method = generatedClass.getMethod("call");
151 MethodId<?, Integer> methodId = GENERATED.getMethod(TypeId.INT, "call", TypeId.INT);
156 = TEST_TYPE.getMethod(TypeId.INT, "staticMethod", TypeId.INT);
160 assertEquals(10, getMethod().invoke(null, 4));
170 MethodId<?, Void> methodId = GENERATED.getMethod(TypeId.VOID, "call", TypeId.INT);
181 Method method = generatedClass.getMethod("call", int.class)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
MethodTest.java 201 m1 = TestMethod.class.getMethod("invokeInstanceTest", new Class[0]);
202 m2 = TestMethodSub.class.getMethod("invokeInstanceTest",
210 m1 = TestMethod.class.getMethod("invokeStaticTest", new Class[0]);
212 .getMethod("invokeStaticTest", new Class[0]);
220 * java.lang.Class#getMethod(java.lang.String, java.lang.Class[])
223 // Check that getMethod treats null parameterTypes the same as an empty array.
224 Method m1 = TestMethod.class.getMethod("invokeInstanceTest", new Class[0]);
225 Method m2 = TestMethod.class.getMethod("invokeInstanceTest", (Class[]) null);
267 Method mth = TestMethod.class.getMethod("voidMethod", new Class[0]);
273 mth = TestMethod.class.getMethod("intMethod", new Class[0])
    [all...]
  /external/testng/src/main/java/org/testng/reporters/
XMLSuiteResultWriter.java 179 if (!testResult.getMethod().isTest()) {
182 attributes.setProperty(XMLReporterConfig.ATTR_NAME, testResult.getMethod().getMethodName());
187 String description = testResult.getMethod().getDescription();
192 attributes.setProperty(XMLReporterConfig.ATTR_METHOD_SIG, removeClassName(testResult.getMethod().toString()));
204 String groupNamesStr = Utils.arrayToString(testResult.getMethod().getGroups());
211 String dependsOnStr = Utils.arrayToString(testResult.getMethod().getMethodsDependedUpon());
218 String dependsOnStr = Utils.arrayToString(testResult.getMethod().getGroupsDependedUpon());
224 ConstructorOrMethod cm = testResult.getMethod().getConstructorOrMethod();
226 if (cm.getMethod() != null) {
227 testAnnotation = cm.getMethod().getAnnotation(Test.class)
    [all...]

Completed in 591 milliseconds

<<11121314151617181920>>