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

1 2 3 4 5 67 8 91011>>

  /system/extras/simpleperf/scripts/inferno/
script.js 65 let methodName = title.textContent.split(' | ')[0];
68 for (numCharacters = methodName.length; numCharacters > 4; numCharacters--) {
76 if (numCharacters == methodName.length) {
77 text.textContent = methodName;
81 text.textContent = methodName.substring(0, numCharacters-2) + '..';
256 let methodName = method_and_info[0];
273 barTextElement.textContent = methodName;
  /art/tools/checker/file_format/c1visualizer/
parser.py 58 methodName = line.split("\"")[1].strip()
59 if not methodName:
61 state.lastMethodName = methodName
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
LocalVariableCriterion.java 22 public LocalVariableCriterion(String methodName, LocalLocation loc) {
23 this.fullMethodName = methodName.substring(0, methodName.indexOf(")") + 1);
IsSigMethodCriterion.java 46 public IsSigMethodCriterion(String methodName) {
47 this.fullMethodName = methodName.substring(0, methodName.indexOf(")") + 1);
48 this.simpleMethodName = methodName.substring(0, methodName.indexOf("("));
50 // for (String s : methodName.substring(
51 // methodName.indexOf("(") + 1, methodName.indexOf(")")).split(",")) {
59 methodName.substring(methodName.indexOf("(") + 1
    [all...]
  /external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/node/
RemoveMethodGenerator.java 78 final String methodName = "remove" + capitalize(property.getName());
79 final MethodDeclaration removeMethod = (MethodDeclaration) parseBodyDeclaration(f("public %s %s() {}", nodeMetaModel.getTypeName(), methodName));
85 return methodName;
  /external/mockito/src/test/java/org/mockitoutil/
Conditions.java 83 public static Condition<Object> bridgeMethod(final String methodName) {
95 if (m.isBridge() && m.getName().equals(methodName)) {
100 Assertions.fail("Bridge method [" + methodName + "]\nnot found in:\n" + o);
  /external/proguard/src/proguard/obfuscate/
MappingKeeper.java 142 String methodName,
152 Method method = clazz.findMethod(methodName, descriptor);
166 ": method '" + methodReturnType + " " + methodName + JavaConstants.METHOD_ARGUMENTS_OPEN + methodArguments + JavaConstants.METHOD_ARGUMENTS_CLOSE +
  /art/test/570-checker-osr/src/
Main.java 279 public static native boolean isInOsrCode(String methodName);
280 public static native boolean isInInterpreter(String methodName);
281 public static native void ensureHasProfilingInfo(String methodName);
282 public static native void ensureHasOsrCode(String methodName);
  /art/test/597-deopt-busy-loop/src/
Main.java 26 private static native void ensureJitCompiled(Class<?> cls, String methodName);
  /art/test/636-wrong-static-access/src/
Main.java 38 public static native void ensureJitCompiled(Class<?> cls, String methodName);
  /art/test/661-classloader-allocator/src/
Main.java 58 public static native void ensureJitCompiled(Class<?> cls, String methodName);
  /art/test/712-varhandle-invocations/src/
VarHandleReflectiveTest.java 40 VarHandle.class.getMethod(accessMode.methodName(), Object[].class);
  /art/test/910-methods/src/art/
Test910.java 41 private static void testMethod(String className, String methodName, Class<?>... types)
44 testMethod(base, methodName, types);
47 private static void testMethod(Class<?> base, String methodName, Class<?>... types)
49 Method m = base.getDeclaredMethod(methodName, types);
  /dalvik/dx/src/com/android/dx/rop/code/
InvokePolymorphicInsn.java 174 String methodName = callSiteMethod.getNat().getName().getString();
177 if (methodName.equals("invoke") || methodName.equals("invokeExact")) {
184 switch (methodName) {
  /external/proguard/src/proguard/classfile/util/
ExternalTypeEnumeration.java 102 public String methodName()
  /external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
Interceptor.java 22 abstract public MethodHandle getMethodHandle(String methodName, MethodType type) throws NoSuchMethodException, IllegalAccessException;
  /external/xmlrpcpp/src/
XmlRpcServer.h 50 void removeMethod(const std::string& methodName);
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/types/
CustomTypeConverterWrapper.kt 40 custom.methodName, inputVarName)
44 custom.methodName, inputVarName)
  /cts/hostsidetests/backup/src/android/cts/backup/
RestoreAnyVersionHostSideTest.java 175 private void checkRestoreAnyVersionDeviceTest(String methodName)
178 methodName);
  /cts/tools/utils/
rerun.py 80 [className, methodName] = failure.split('#')
84 command += " --class " + className + " --method " + methodName
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
BiMapInverseTester.java 80 private static Method getMethod(String methodName) {
81 return Helpers.getMethod(BiMapInverseTester.class, methodName);
  /external/junit/src/main/java/org/junit/runner/
Request.java 34 * @param methodName the name of the test
37 public static Request method(Class<?> clazz, String methodName) {
38 Description method = Description.createTestDescription(clazz, methodName);
  /external/junit-params/src/test/java/junitparams/naming/
MacroSubstitutionNamingStrategyTest.java 39 public void testNaming(String methodName, String expectedTestCaseName) throws NoSuchMethodException {
40 TestCaseNamingStrategy strategy = createNamingStrategyForMethod(methodName, String.class);
  /external/robolectric-shadows/sandbox/src/test/java/org/robolectric/internal/bytecode/
ProxyMakerTest.java 15 @Override public String getName(String className, String methodName) {
16 return methodName;
  /external/testng/src/test/java/org/testng/internal/
MethodInstanceTest.java 82 private MethodInstance buildMethodInstance(String xmlTestName, String xmlClassName, int xmlClassIndex, String methodName) {
84 return new MethodInstance(new TestNGMethodStub(methodName, testClass));
243 private String methodName;
245 public TestNGMethodStub(String methodName, TestClassStub testClassStub) {
246 this.methodName = methodName;
283 return methodName;
336 public void addMethodDependedUpon(String methodName) {

Completed in 1354 milliseconds

1 2 3 4 5 67 8 91011>>