HomeSort by relevance Sort by last modified time
    Searched defs:t1 (Results 201 - 225 of 1682) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/testng/src/test/java/test/invokedmethodlistener/
Sample2.java 11 public void t1() { method in class:Sample2
  /external/valgrind/coregrind/
m_vki.c 106 { struct __sigaction t1; local
110 vg_assert(sizeof(t1.sa_handler) == sizeof(t2.ksa_handler));
111 vg_assert(sizeof(t1.sa_tramp) == sizeof(t2.sa_tramp));
112 vg_assert(sizeof(t1.sa_mask) == sizeof(t2.sa_mask));
113 vg_assert(sizeof(t1.sa_flags) == sizeof(t2.sa_flags));
118 vg_assert(offsetof(t1,sa_handler) == offsetof(t2.ksa_handler));
119 vg_assert(offsetof(t1.sa_tramp) == offsetof(t2.sa_tramp));
120 vg_assert(offsetof(t1.sa_mask) == offsetof(t2.sa_mask));
121 vg_assert(offsetof(t1.sa_flags) == offsetof(t2.sa_flags));
  /external/valgrind/helgrind/tests/
hg03_inherit.c 13 static void *t1(void *v) function
44 pthread_create(&a, NULL, t1, (void *)&shared[0]);
  /libcore/ojluni/src/test/java/time/test/java/time/
TestInstant.java 94 Instant t1 = Instant.ofEpochMilli(millis); local
95 long m = t1.toEpochMilli();
  /packages/apps/Browser2/src/org/chromium/webview_shell/
StartupTimeActivity.java 23 long t1 = SystemClock.elapsedRealtime(); local
27 android.util.Log.i("WebViewShell", "WebViewStartupTimeMillis=" + (t2 - t1));
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue8028.go 13 t1 = T{F, "s2"}
15 tt = [...]T{t1, t2}
12 t1 = T{F, "s2"} var
  /prebuilts/go/darwin-x86/test/
func3.go 12 type t1 int type
17 func f2(t1, *t2, x t3) // ERROR "named"
20 func f4() (t1 t1) // legal - scope of parameter named t1 starts in body of f4.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue8028.go 13 t1 = T{F, "s2"}
15 tt = [...]T{t1, t2}
12 t1 = T{F, "s2"} var
  /prebuilts/go/linux-x86/test/
func3.go 12 type t1 int type
17 func f2(t1, *t2, x t3) // ERROR "named"
20 func f4() (t1 t1) // legal - scope of parameter named t1 starts in body of f4.
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/array/
at.pass.cpp 85 constexpr T t1 = c.at(0); local
86 static_assert (t1 == 1, "");
indexing.pass.cpp 66 constexpr T t1 = c[0]; local
67 static_assert (t1 == 1, "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/forwardlist.cons/
assign_move.pass.cpp 31 T t1[] = {10, 11, 12, 13}; local
34 C c1(I(std::begin(t1)), I(std::end(t1)), A(10));
48 T t1[] = {10, 11, 12, 13}; local
51 C c1(I(std::begin(t1)), I(std::end(t1)), A(11));
65 T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
68 C c1(I(std::begin(t1)), I(std::end(t1)), A(10));
82 T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} local
100 T t1[] = {10, 11, 12, 13}; local
117 T t1[] = {10, 11, 12, 13}; local
134 T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
151 T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
168 T t1[] = {10, 11, 12, 13}; local
185 T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/forwardlist.ops/
remove_if.pass.cpp 34 const T t1[] = {0, 5, 5, 0, 0, 0, 5}; local
36 C c1(std::begin(t1), std::end(t1));
41 assert(cp.count() == static_cast<std::size_t>(std::distance(std::begin(t1), std::end(t1))));
47 const T t1[] = {0, 0, 0, 0}; local
48 C c1(std::begin(t1), std::end(t1));
53 assert(cp.count() == static_cast<std::size_t>(std::distance(std::begin(t1), std::end(t1))));
59 const T t1[] = {5, 5, 5}; local
83 const T t1[] = {5, 5, 5, 0}; local
97 const T t1[] = {0, 5, 5, 0, 0, 0, 5}; local
110 const T t1[] = {0, 0, 0, 0}; local
122 const T t1[] = {5, 5, 5}; local
146 const T t1[] = {5, 5, 5, 0}; local
    [all...]
splice_after_flist.pass.cpp 22 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7}; variable
24 const std::ptrdiff_t size_t1 = std::end(t1) - std::begin(t1);
34 assert(*i == t1[n1]);
38 assert(*i == t1[n1]);
51 C c1(std::begin(t1), std::end(t1));
67 C c1(std::begin(t1), std::end(t1));
unique_pred.pass.cpp 30 const T t1[] = {0, 5, 5, 0, 0, 0, 5}; local
32 C c1(std::begin(t1), std::end(t1));
40 const T t1[] = {0, 0, 0, 0}; local
42 C c1(std::begin(t1), std::end(t1));
50 const T t1[] = {5, 5, 5}; local
52 C c1(std::begin(t1), std::end(t1));
68 const T t1[] = {5, 5, 5, 0} local
79 const T t1[] = {0, 5, 5, 0, 0, 0, 5}; local
89 const T t1[] = {0, 0, 0, 0}; local
99 const T t1[] = {5, 5, 5}; local
117 const T t1[] = {5, 5, 5, 0}; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.condition/
notify_all_at_thread_exit.pass.cpp 46 Clock::time_point t1 = Clock::now(); local
47 assert(t1-t0 > ms(250));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/
adopt_lock.pass.cpp 34 time_point t1; local
38 t1 = Clock::now();
40 ns d = t1 - t0 - ms(250);
mutex.pass.cpp 39 time_point t1; local
42 t1 = Clock::now();
44 ns d = t1 - t0 - ms(250);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/
mutex_try_to_lock.pass.cpp 54 time_point t1 = Clock::now(); local
55 ns d = t1 - t0 - ms(250);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/
mutex.pass.cpp 39 time_point t1; local
42 t1 = Clock::now();
44 ns d = t1 - t0 - ms(250);
mutex_duration.pass.cpp 39 time_point t1 = Clock::now(); local
40 ns d = t1 - t0 - ms(250);
49 time_point t1 = Clock::now();
50 ns d = t1 - t0 - ms(250);
mutex_time_point.pass.cpp 39 time_point t1 = Clock::now(); local
40 ns d = t1 - t0 - ms(250);
49 time_point t1 = Clock::now();
50 ns d = t1 - t0 - ms(250);
mutex_try_to_lock.pass.cpp 52 time_point t1 = Clock::now(); local
53 ns d = t1 - t0 - ms(250);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
lock.pass.cpp 38 time_point t1 = Clock::now(); local
40 ns d = t1 - t0 - ms(250);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/
lock.pass.cpp 37 time_point t1 = Clock::now(); local
39 ns d = t1 - t0 - ms(250);

Completed in 1477 milliseconds

1 2 3 4 5 6 7 891011>>