Searched refs:javaMethod (Results 1 – 2 of 2) sorted by relevance
315 JavaMethod javaMethod = (JavaMethod)segment; in generateCppFile() local316 if (javaMethod.getNativeCode() == null) { in generateCppFile()317 throw new RuntimeException("Method '" + javaMethod.getName() + "' has no body"); in generateCppFile()319 CMethod cMethod = findCMethod(javaMethod, cMethods); in generateCppFile()321 …throw new RuntimeException("Couldn't find C method for Java method '" + javaMethod.getClassName() … in generateCppFile()322 + javaMethod.getName() + "'"); in generateCppFile()323 emitJavaMethod(buffer, javaMethod, cMethod); in generateCppFile()329 private CMethod findCMethod (JavaMethod javaMethod, ArrayList<CMethod> cMethods) { in findCMethod() argument331 String javaMethodName = javaMethod.getName().replace("_", "_1"); in findCMethod()332 String javaClassName = javaMethod.getClassName().toString().replace("_", "_1"); in findCMethod()[all …]
27 public ClonedMethod(ITestNGMethod method, Method javaMethod) { in ClonedMethod() argument29 m_javaMethod = javaMethod; in ClonedMethod()