HomeSort by relevance Sort by last modified time
    Searched refs:fromList (Results 1 - 3 of 3) sorted by null

  /external/guava/src/com/google/common/collect/
Lists.java 312 * fromList}. The returned list is a transformed view of {@code fromList};
313 * changes to {@code fromList} will be reflected in the returned list and vice
328 * <p>If {@code fromList} implements {@link RandomAccess}, so will the
330 * but serialization will succeed only when {@code fromList} and
335 List<F> fromList, Function<? super F, ? extends T> function) {
336 return (fromList instanceof RandomAccess)
337 ? new TransformingRandomAccessList<F, T>(fromList, function)
338 : new TransformingSequentialList<F, T>(fromList, function);
348 final List<F> fromList;
    [all...]
  /external/webkit/WebCore/svg/
SVGPathSegList.h 42 static PassRefPtr<SVGPathSegList> createAnimated(const SVGPathSegList* fromList, const SVGPathSegList* toList, float progress);
SVGPathSegList.cpp 182 PassRefPtr<SVGPathSegList> SVGPathSegList::createAnimated(const SVGPathSegList* fromList, const SVGPathSegList* toList, float progress)
184 unsigned itemCount = fromList->numberOfItems();
187 RefPtr<SVGPathSegList> result = create(fromList->associatedAttributeName());
190 SVGPathSeg* from = fromList->getItem(n, ec).get();

Completed in 308 milliseconds