HomeSort by relevance Sort by last modified time
    Searched defs:fromList (Results 1 - 4 of 4) 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...]
  /packages/apps/Email/src/com/android/email/activity/
MessageViewFragmentBase.java     [all...]
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 87 milliseconds