HomeSort by relevance Sort by last modified time
    Searched refs:methodName (Results 251 - 275 of 1925) sorted by null

<<11121314151617181920>>

  /art/tools/dexfuzz/src/dexfuzz/program/
IdCreator.java 86 private int findMethodIdInsertionPoint(String className, String methodName, String signature) {
88 int nameIdx = findString(methodName);
169 private int createMethodId(String className, String methodName, String signature) {
185 int methodNameStringIdx = findOrCreateString(methodName);
194 int newMethodIdIdx = findMethodIdInsertionPoint(className, methodName, signature);
208 className, methodName, signature, newMethodIdIdx));
218 private int findMethodId(String className, String methodName, String signature) {
223 int nameIdx = findString(methodName);
248 public int findOrCreateMethodId(String className, String methodName, String shorty) {
249 int methodIdIdx = findMethodId(className, methodName, shorty)
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
AppCompatTextViewAutoSizeHelper.java 616 final String methodName = "nullLayouts";
618 Method method = getTextViewMethod(methodName);
623 Log.w(TAG, "Failed to invoke TextView#" + methodName + "() method", ex);
    [all...]
  /frameworks/base/core/java/android/widget/
RemoteViews.java 294 public String methodName;
304 && Objects.equals(p.methodName, methodName);
310 ^ Objects.hashCode(methodName);
313 public void set(Class targetClass, Class paramClass, String methodName) {
316 this.methodName = methodName;
    [all...]
  /art/test/597-deopt-invoke-stub/src/
Main.java 26 private static native void ensureJitCompiled(Class<?> cls, String methodName);
  /external/vogar/test/vogar/target/junit3/
TestRunnerJUnit3Test.java 264 String methodName = "testParameterized";
265 TestRunner runner = testRunnerRule.createTestRunner(methodName);
270 .failure(methodName,
271 "junit.framework.AssertionFailedError: Method \"" + methodName
  /libcore/luni/src/test/java/libcore/dalvik/system/
InMemoryDexClassLoaderTest.java 152 * @param methodName The name of the method to call.
156 String className, String methodName, File... files)
160 Method m = c.getMethod(methodName, (Class[]) null);
170 * @param methodName The name of the method to call.
174 String className, String methodName, File... files)
178 Method m = c.getMethod(methodName, (Class[]) null);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureSpiTest.java 303 boolean wasMethodCalled(String methodName) {
304 return calledMethods.contains(methodName);
307 void methodCalled(String methodName) {
308 calledMethods.add(methodName);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
ApiHelper.java 214 private static boolean hasMethod(String className, String methodName,
218 klass.getDeclaredMethod(methodName, parameterTypes);
226 Class<?> klass, String methodName, Class<?> ... paramTypes) {
228 klass.getDeclaredMethod(methodName, paramTypes);
  /prebuilts/tools/common/api-generator/
api-generator-22.9.1.jar 
api-generator-22.9.2.jar 
api-generator-22.9.3.jar 
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
BusinessLogic.java 289 public BusinessLogicRuleCondition(String methodName, List<String> methodArgs,
291 mMethodName = methodName;
316 public BusinessLogicRuleAction(String methodName, List<String> methodArgs) {
317 mMethodName = methodName;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
JDWPStackFrameAccessTest.java 88 private final String methodName;
91 MethodInfo(String methodName) {
92 this.methodName = methodName;
96 return methodName;
141 public MethodInfo addTestMethod(String methodName) {
142 MethodInfo methodInfo = new MethodInfo(methodName);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
AndroidTranslator.java 291 String methodName = ctMethod.getName();
295 // if (methodName.startsWith("set") && paramTypes.length == 1) {
296 // String fieldName = "__" + methodName.substring(3);
300 // } else if (methodName.startsWith("get") && paramTypes.length == 0) {
301 // String fieldName = "__" + methodName.substring(3);
312 CtMethod newMethod = makeNewMethod(ctClass, ctMethod, returnCtClass, methodName, paramTypes, "{\n" + methodBody + generateCallToSuper(methodName, paramTypes) + "\n}");
320 CtMethod newMethod = makeNewMethod(ctClass, ctMethod, returnCtClass, methodName, paramTypes, "{\n" + methodBody + "\n}");
330 private CtMethod makeNewMethod(CtClass ctClass, CtMethod ctMethod, CtClass returnCtClass, String methodName, CtClass[] paramTypes, String methodBody) throws CannotCompileException, NotFoundException {
334 methodName,
    [all...]
  /external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
ShadowWrangler.java 186 Method shadowMethod = findShadowMethod(classLoader, shadowConfig, invocationProfile.methodName, types);
259 private Method findShadowMethodInternal(Class<?> shadowClass, String methodName, Class<?>[] paramClasses) {
261 Method method = shadowClass.getDeclaredMethod(methodName, paramClasses);
333 String methodName = stackTraceElement.getMethodName();
337 if (methodName.equals(previousMethodName)
348 if (methodName.startsWith(ShadowConstants.ROBO_PREFIX)) {
349 methodName = methodName.substring(ShadowConstants.ROBO_PREFIX.length());
350 stackTraceElement = new StackTraceElement(className, methodName,
361 previousMethodName = methodName;
    [all...]
  /prebuilts/misc/common/robolectric/3.4.2/lib/
sandbox-3.4.2.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
sandbox-3.6.1.jar 
  /prebuilts/tools/common/m2/repository/com/uber/rave/0.6.0/
rave-0.6.0.jar 
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
Configurator.java 167 String methodName = "set" + fieldId;
169 if (method.getName().equalsIgnoreCase(methodName)) {
174 methodName + " in " + clazz);
181 String methodName = "get" + firstLetter.toUpperCase() + fieldId.substring(1, fieldId.length());
182 return clazz.getMethod(methodName);
  /tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
PackageManagerHostTestUtils.java 113 * @param methodName (optional) The method in the class of which to test
122 String methodName, String runnerName, Map<String, String> params)
127 if (className != null && methodName != null) {
128 testRunner.setMethodName(className, methodName);
149 * @param methodName The method in the class of which to test
157 String methodName, String runnerName, Map<String, String> params)
159 CollectingTestListener listener = doRunTests(pkgName, className, methodName,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_socket.py 126 methodname = self.id()
127 i = methodname.rfind('.')
128 methodname = methodname[i+1:]
129 test_method = getattr(self, '_' + methodname)
168 def __init__(self, methodName='runTest'):
169 SocketTCPTest.__init__(self, methodName=methodName)
182 def __init__(self, methodName='runTest'):
183 SocketUDPTest.__init__(self, methodName=methodName)
    [all...]
  /external/python/cpython2/Lib/test/
test_socket.py 130 methodname = self.id()
131 i = methodname.rfind('.')
132 methodname = methodname[i+1:]
133 test_method = getattr(self, '_' + methodname)
171 def __init__(self, methodName='runTest'):
172 SocketTCPTest.__init__(self, methodName=methodName)
185 def __init__(self, methodName='runTest'):
186 SocketUDPTest.__init__(self, methodName=methodName
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_socket.py 127 methodname = self.id()
128 i = methodname.rfind('.')
129 methodname = methodname[i+1:]
130 test_method = getattr(self, '_' + methodname)
168 def __init__(self, methodName='runTest'):
169 SocketTCPTest.__init__(self, methodName=methodName)
182 def __init__(self, methodName='runTest'):
183 SocketUDPTest.__init__(self, methodName=methodName
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_socket.py 127 methodname = self.id()
128 i = methodname.rfind('.')
129 methodname = methodname[i+1:]
130 test_method = getattr(self, '_' + methodname)
168 def __init__(self, methodName='runTest'):
169 SocketTCPTest.__init__(self, methodName=methodName)
182 def __init__(self, methodName='runTest'):
183 SocketUDPTest.__init__(self, methodName=methodName
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_socket.py 127 methodname = self.id()
128 i = methodname.rfind('.')
129 methodname = methodname[i+1:]
130 test_method = getattr(self, '_' + methodname)
168 def __init__(self, methodName='runTest'):
169 SocketTCPTest.__init__(self, methodName=methodName)
182 def __init__(self, methodName='runTest'):
183 SocketUDPTest.__init__(self, methodName=methodName
    [all...]

Completed in 1877 milliseconds

<<11121314151617181920>>