HomeSort by relevance Sort by last modified time
    Searched defs:second (Results 1 - 25 of 1918) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/113-multidex/src/
Main.java 21 Inf1 second = new Second(); local
22 System.out.println(second.getClass().getName());
23 second.zcall();
24 second.zcall1();
25 second.zcall2();
26 second.zcall3();
27 second.zcall4();
28 second.zcall5();
29 second.zcall6()
    [all...]
  /art/test/MultiDex/
Main.java 19 Second second = new Second(); local
20 System.out.println(second.getSecond());
  /art/test/MultiDexModifiedSecondary/
Main.java 19 Second second = new Second(); local
20 System.out.println(second.getSecond());
  /cts/tests/framework/base/activitymanager/appSecondUid/src/android/server/am/second/
SecondActivity.java 17 package android.server.am.second;
SecondActivityNoEmbedding.java 17 package android.server.am.second;
  /external/testng/src/test/java/test/priority/
WithPrioritySample2Test.java 13 public void second() { method in class:WithPrioritySample2Test
14 add("second");
WithPrioritySampleTest.java 13 public void second() { method in class:WithPrioritySampleTest
14 add("second");
WithoutPrioritySampleTest.java 13 public void second() { method in class:WithoutPrioritySampleTest
14 add("second");
  /art/test/626-const-class-linking/src/
ClassPair.java 19 public Class<?> second; field in class:ClassPair
21 public ClassPair(Class<?> first, Class<?> second) {
23 this.second = second;
29 String second_loader_name = second.getClassLoader().getClass().getName();
30 System.out.println("second: " + second.getName() + " class loader: " + second_loader_name);
  /external/autotest/client/site_tests/power_LoadTest/extension/
time.js 21 second: 'numeric',
20 minute: 'numeric', property in class:dateToString.formatting
  /external/clang/test/CodeGenCXX/
pr18635.cpp 12 S second; member in struct:unique_ptr::pair
  /external/compiler-rt/test/asan/TestCases/Linux/
unpoison_tls.cc 22 void *second(void *arg) { function
32 assert(0 == pthread_create(&p, 0, second, 0));
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_standard_layout.pass.cpp 51 T2 second; member in struct:pair
  /frameworks/av/media/img_utils/include/img_utils/
Pair.h 32 S second; member in class:android::img_utils::Pair
36 Pair(const Pair& o) : first(o.first), second(o.second) {}
38 Pair(const F& f, const S& s) : first(f), second(s) {}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_standard_layout.pass.cpp 51 T2 second; member in struct:pair
  /art/test/001-HelloWorld/src/
Main.java 30 final CountDownLatch second = new CountDownLatch(1); local
37 second.await();
47 second.countDown();
  /art/test/170-interface-init/src/
Main.java 29 final CountDownLatch second = new CountDownLatch(1); local
36 second.await();
46 second.countDown();
  /external/ImageMagick/Magick++/tests/
readWriteImages.cpp 54 list<Image> second; local
55 readImages(&second,"testmagick_anim_out.miff");
58 list<Image>::iterator secondIter = second.begin();
59 while (firstIter != first.end() && secondIter != second.end())
  /external/annotation-tools/annotation-file-utilities/tests/
LocalSimpleMultiple.java 15 LocalSimpleMultiple second = null; local
16 bar(second);
  /external/clang/test/SemaCXX/
non-empty-class-size-zero.cpp 15 int second; member in struct:Y
  /external/curl/tests/unit/
unit1323.c 38 struct curltime second; member in struct:a
53 timediff_t result = Curl_timediff(tests[i].first, tests[i].second);
58 tests[i].second.tv_sec,
59 tests[i].second.tv_usec,
  /external/droiddriver/src/io/appium/droiddriver/finders/
ChainFinder.java 24 * first Finder as context for the second Finder. It is conceptually similar to
27 * second(first(context)).
29 * Note typically first Finder finds the ancestor, then second Finder finds the
35 private final Finder second; field in class:ChainFinder
37 protected ChainFinder(Finder first, Finder second) {
39 this.second = Preconditions.checkNotNull(second);
44 return String.format("Chain{%s, %s}", first, second);
49 return second.find(first.find(context));
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Pair.java 13 * A pair of objects: first and second.
16 * @param <S> second object type
21 public final S second; field in class:Pair
23 protected Pair(F first, S second) {
25 this.second = second;
31 * @param second must be non-null
34 public static <F, S> Pair<F, S> of(F first, S second) {
35 if (first == null || second == null) {
38 return new Pair<F, S>(first, second);
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowWindowManagerGlobalUnitTest.java 30 public void second() throws Exception { method in class:ShadowWindowManagerGlobalUnitTest.DummyTest
  /frameworks/base/core/java/android/util/
Pair.java 28 public final S second; field in class:Pair
34 * @param second the second object in the pair
36 public Pair(F first, S second) {
38 this.second = second;
55 return Objects.equals(p.first, first) && Objects.equals(p.second, second);
65 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode())
    [all...]

Completed in 618 milliseconds

1 2 3 4 5 6 7 8 91011>>