HomeSort by relevance Sort by last modified time
    Searched defs:trip (Results 1 - 2 of 2) sorted by null

  /external/chromium/base/
sys_string_conversions_unittest.cc 185 std::wstring trip = base::SysNativeMBToWide(base::SysWideToNativeMB(wide)); local
186 EXPECT_EQ(wide.size(), trip.size());
187 EXPECT_EQ(wide, trip);
193 std::wstring trip = base::SysNativeMBToWide(WideToUTF8(wide)); local
194 EXPECT_EQ(wide.size(), trip.size());
195 EXPECT_EQ(wide, trip);
200 std::wstring trip = UTF8ToWide(base::SysWideToNativeMB(wide)); local
201 EXPECT_EQ(wide.size(), trip.size());
202 EXPECT_EQ(wide, trip);
  /libcore/luni/src/main/java/java/util/concurrent/
CyclicBarrier.java 124 private final Condition trip = lock.newCondition(); field in class:CyclicBarrier
140 * Updates state on barrier trip and wakes up everyone.
145 trip.signalAll();
158 trip.signalAll();
200 trip.await();
202 nanos = trip.awaitNanos(nanos);
232 * Creates a new <tt>CyclicBarrier</tt> that will trip when the
251 * Creates a new <tt>CyclicBarrier</tt> that will trip when the
264 * Returns the number of parties required to trip this barrier.
266 * @return the number of parties required to trip this barrie
    [all...]

Completed in 66 milliseconds