HomeSort by relevance Sort by last modified time
    Searched full:methodname (Results 126 - 150 of 1575) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/pdfium/xfa/fxfa/parser/
cscript_layoutpseudomodel.cpp 53 const FX_WCHAR* methodName = nullptr;
56 methodName = L"h";
59 methodName = L"w";
62 methodName = L"x";
65 methodName = L"y";
68 ThrowParamCountMismatchException(methodName);
454 const FX_WCHAR* methodName;
456 methodName = L"absPage";
458 methodName = L"page";
460 ThrowParamCountMismatchException(methodName);
    [all...]
  /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...]
  /cts/hostsidetests/numberblocking/src/com/android/cts/numberblocking/hostside/
NumberBlockingTest.java 161 private void runTestAsPrimaryUser(String className, String methodName) throws Exception {
162 runTestAsUser(className, methodName, getDevice().getPrimaryUserId());
165 private void runTestAsSecondaryUser(String className, String methodName) throws Exception {
166 runTestAsUser(className, methodName, mSecondaryUserId);
169 private void runTestAsUser(String className, String methodName, int userId) throws Exception {
171 className, methodName, userId);
178 testRunner.setMethodName(NUMBER_BLOCKING_TESTS_PKG + "." + className, methodName);
  /system/extras/simpleperf/inferno/
script.js 39 methodName = title.textContent.substring(0, title.textContent.indexOf("|"));
42 for (numCharacters=methodName.length; numCharacters>4; numCharacters--) {
50 if (numCharacters == methodName.length) {
51 text.textContent = methodName;
55 text.textContent = methodName.substring(0, numCharacters-2) + "..";
223 methodName = method_and_info[0];
240 barTextElement.textContent = methodName
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
JDWPMethodVariableTableTestCase.java 265 checkerMap.put(checker.methodName, checker);
320 logWriter.println("# Check method \"" + checker.methodName + "\"");
380 assertEquals("Not all variables have been checked for method " + checker.methodName,
393 private VariableTableChecker getCheckerForMethod(String methodName) {
394 return checkerMap.get(methodName);
398 final String methodName;
402 public VariableTableChecker(String methodName) {
403 this.methodName = methodName;
  /external/testng/src/main/java/org/testng/internal/
MethodHelper.java 87 String methodName = usePackage ?
90 Pair<String, String> cacheKey = Pair.create(regexp, methodName);
93 match = pattern.matcher(methodName).matches();
134 String className, methodName;
137 methodName = regExp;
139 methodName = regExp.substring(lastDot + 1);
146 if (methodName.equals(m.getName())) {
316 protected static String calculateMethodCanonicalName(Class<?> methodClass, String methodName) {
320 if (methodName.equals(m.getName())) {
  /frameworks/base/core/java/android/os/
Trace.java 224 * @param methodName The method name to appear in the trace.
228 public static void traceBegin(long traceTag, String methodName) {
230 nativeTraceBegin(traceTag, methodName);
256 * @param methodName The method name to appear in the trace.
261 public static void asyncTraceBegin(long traceTag, String methodName, int cookie) {
263 nativeAsyncTraceBegin(traceTag, methodName, cookie);
273 * @param methodName The method name to appear in the trace.
278 public static void asyncTraceEnd(long traceTag, String methodName, int cookie) {
280 nativeAsyncTraceEnd(traceTag, methodName, cookie);
  /cts/tests/core/runner/src/com/android/cts/core/runner/support/
SingleTestNgTestExecutor.java 40 public static Result execute(Class<?> klass, String methodName) {
45 if (methodName == null) {
46 throw new NullPointerException("methodName must not be null");
59 TestNG testng = createTestNG(klass.getName(), methodName, listener);
65 Log.w("TestNgExec", "execute class " + klass.getName() + ", method " + methodName +
  /cts/tools/dex-tools/test/dex/reader/
DexTestsCommon.java 129 protected DexMethod getMethod(DexClass clazz, String methodName, String... typeNames) {
131 assertNotNull(methodName);
135 if(methodName.equals(method.getName()) && paramTypeNames.equals(methodsParamTypeNames)){
139 fail("Method: " + methodName +" not present in class: " + clazz.getName());
140 throw new IllegalArgumentException("Method: " + methodName +" not present in class: " + clazz.getName());