Lines Matching refs:method

170          * When resolveId is true, and if the annotated field/method return value
477 * Only one view recycler can be traced at the same time. After calling this method, any
483 * This method will return immediately if TRACE_RECYCLER is false.
511 * Calling this method creates the file <code>/EXTERNAL/view-recycler/PREFIX.traces</code>
512 * containing all the traces (or method calls) relative to the specified view's recycler.
514 * Calling this method creates the file <code>/EXTERNAL/view-recycler/PREFIX.recycler</code>
518 * This method will return immediately if TRACE_RECYCLER is false.
615 * Only one view hierarchy can be traced at the same time. After calling this method, any
619 * Calling this method creates the file <code>/EXTERNAL/view-hierarchy/PREFIX.traces</code>
620 * containing all the traces (or method calls) relative to the specified view's hierarchy.
622 * This method will return immediately if TRACE_HIERARCHY is false.
659 * Stops the current view hierarchy tracing. This method closes the file
662 * Calling this method creates the file <code>/EXTERNAL/view-hierarchy/PREFIX.tree</code>
666 * This method will return immediately if TRACE_HIERARCHY is false.
751 * Only one view hierarchy can be traced at the same time. After calling this method, any
755 * Calling this method creates the file <code>/EXTERNAL/motion-events/PREFIX.traces</code>
756 * containing all the traces (or method calls) relative to the specified view's hierarchy.
758 * This method will return immediately if TRACE_HIERARCHY is false.
797 * Stops the current motion events tracing. This method closes the file
800 * Calling this method creates the file <code>/EXTERNAL/motion-events/PREFIX.tree</code>
804 * This method will return immediately if TRACE_HIERARCHY is false.
1335 final Method method = methods[i];
1336 if (method.getParameterTypes().length == 0 &&
1337 method.isAnnotationPresent(ExportedProperty.class) &&
1338 method.getReturnType() != Void.class) {
1339 method.setAccessible(true);
1340 foundMethods.add(method);
1341 annotations.put(method, method.getAnnotation(ExportedProperty.class));
1376 final Method method = methods[i];
1380 Object methodValue = method.invoke(view, (Object[]) null);
1381 final Class<?> returnType = method.getReturnType();
1382 final ExportedProperty property = sAnnotations.get(method);
1396 categoryPrefix + prefix + method.getName() + '_';
1421 final String valuePrefix = categoryPrefix + prefix + method.getName() + '_';
1435 writeEntry(out, categoryPrefix + prefix, method.getName(), "()", methodValue);
1701 final Method method = methods[i];
1702 if (method.getParameterTypes().length == 0 &&
1703 method.isAnnotationPresent(CapturedViewProperty.class) &&
1704 method.getReturnType() != Void.class) {
1705 method.setAccessible(true);
1706 foundMethods.add(method);
1728 final Method method = methods[i];
1730 Object methodValue = method.invoke(obj, (Object[]) null);
1731 final Class<?> returnType = method.getReturnType();
1733 CapturedViewProperty property = method.getAnnotation(CapturedViewProperty.class);
1736 sb.append(capturedViewExportMethods(methodValue, returnType, method.getName() + "#"));
1739 sb.append(method.getName());
1752 //we simply ignore this method
1755 //we simply ignore this method