Home | History | Annotate | Download | only in view

Lines Matching refs:strategy

40     private static native int nativeInitialize(String strategy);
63 * Obtains a velocity tracker with the specified strategy.
66 * @param strategy The strategy, or null to use the default.
71 public static VelocityTracker obtain(String strategy) {
72 if (strategy == null) {
75 return new VelocityTracker(strategy);
89 private VelocityTracker(String strategy) {
90 mPtr = nativeInitialize(strategy);
91 mStrategy = strategy;