HomeSort by relevance Sort by last modified time
    Searched refs:cycle (Results 51 - 75 of 294) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-21/arch-mips/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-21/arch-x86_64/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/
firewire-cdev.h 95 __u32 cycle; member in struct:fw_cdev_event_iso_interrupt
275 __s32 cycle; member in struct:fw_cdev_start_iso
  /external/guava/guava-tests/test/com/google/common/io/
ByteSourceTest.java 304 Iterable<ByteSource> cycle = Iterables.cycle(ImmutableList.of(source)); local
305 ByteSource concatenated = ByteSource.concat(cycle);
CharSourceTest.java 226 Iterable<CharSource> cycle = Iterables.cycle(ImmutableList.of(source)); local
227 CharSource concatenated = CharSource.concat(cycle);
  /external/guava/guava/src/com/google/common/collect/
Iterables.java 374 * Returns an iterable whose iterators cycle indefinitely over the elements of
387 * <p>To cycle over the iterable {@code n} times, use the following:
390 public static <T> Iterable<T> cycle(final Iterable<T> iterable) { method in class:Iterables
395 return Iterators.cycle(iterable);
404 * Returns an iterable whose iterators cycle indefinitely over the provided
410 * as {@code Iterables.cycle(Lists.newArrayList(elements))}. The iterator's
418 * <p>To cycle over the elements {@code n} times, use the following:
421 public static <T> Iterable<T> cycle(T... elements) {
422 return cycle(Lists.newArrayList(elements));
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterables.java 357 * Returns an iterable whose iterators cycle indefinitely over the elements of
370 * <p>To cycle over the iterable {@code n} times, use the following:
373 public static <T> Iterable<T> cycle(final Iterable<T> iterable) { method in class:Iterables
378 return Iterators.cycle(iterable);
387 * Returns an iterable whose iterators cycle indefinitely over the provided
393 * as {@code Iterables.cycle(Lists.newArrayList(elements))}. The iterator's
401 * <p>To cycle over the elements {@code n} times, use the following:
404 public static <T> Iterable<T> cycle(T... elements) {
405 return cycle(Lists.newArrayList(elements));
    [all...]
  /external/icu/icu4c/source/i18n/
chnsecal.cpp 65 * resulting in EXTENDED_YEAR values 60 years greater and ERA (cycle)
215 * YEAR field as the cycle and year-of-cycle, or the EXTENDED_YEAR
224 int32_t cycle = internalGet(UCAL_ERA, 1) - 1; // 0-based cycle local
226 year = cycle * 60 + internalGet(UCAL_YEAR, 1) - (fEpochYear - CHINESE_EPOCH_YEAR);
713 // Extended year and cycle year is based on the epoch year
728 int32_t cycle = ClockMath::floorDivide(cycle_year - 1, 60, yearOfCycle); local
729 internalSet(UCAL_ERA, cycle + 1);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterMirrorRepresentation.java 132 public void cycle() { method in class:FilterMirrorRepresentation
  /external/testng/src/main/java/org/testng/internal/
Graph.java 137 List<T> cycle = new Tarjan<>(this, nodes2.get(0).getObject()).getCycle(); local
140 for (T m : cycle) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ResizeHandler.java 222 match.cycle = true;
246 match.cycle = true;

Completed in 1114 milliseconds

1 23 4 5 6 7 8 91011>>