HomeSort by relevance Sort by last modified time
    Searched defs:before (Results 76 - 100 of 814) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
RuntimeWorker.java 120 long before = ticker.read(); local
122 return ticker.read() - before;
137 long before = ticker.read(); local
139 return ticker.read() - before;
  /external/google-breakpad/src/testing/gtest/test/
gtest-typed-test_test.cc 229 "foo\\.cc.2.?: Test D must be defined before REGISTER_TYPED_TEST_CASE_P"
305 IntBeforeRegisterTypedTestCaseP before = 0; variable
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
MoreExecutorsDirectExecutorBenchmark.java 68 @BeforeExperiment void before() { method in class:MoreExecutorsDirectExecutorBenchmark
  /external/junit/src/main/java/org/junit/rules/
TemporaryFolder.java 44 protected void before() throws Throwable { method in class:TemporaryFolder
  /external/mockito/src/test/java/org/concurrentmockito/
ThreadsRunAllTestsHalfManualTest.java 171 long before = System.currentTimeMillis(); local
174 long executionTime = (after-before)/1000;
  /external/mockito/src/test/java/org/mockito/internal/invocation/
MatcherApplicationStrategyTest.java 17 import org.junit.Before;
38 @Before
39 public void before() { method in class:MatcherApplicationStrategyTest
  /external/mockito/src/test/java/org/mockitousage/junitrunner/
StrictRunnerTest.java 3 import org.junit.Before;
100 @Before public void before() { method in class:StrictRunnerTest.StubbingInBeforeUnused
132 @Before public void before() { method in class:StrictRunnerTest.WithUnrelatedAssertionFailure
  /external/protobuf/gtest/test/
gtest-typed-test_test.cc 229 "foo\\.cc.2.?: Test D must be defined before REGISTER_TYPED_TEST_CASE_P"
305 IntBeforeRegisterTypedTestCaseP before = 0; variable
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/
ClassCacheTest.java 37 long before = System.currentTimeMillis(); local
41 Assert.assertEquals(1, (after - before) / timeToWait);
76 long before = System.currentTimeMillis(); local
80 Assert.assertEquals(1, (after - before) / timeToWait);
  /external/skia/src/core/
SkStrokerPriv.cpp 45 static bool is_clockwise(const SkVector& before, const SkVector& after) {
46 return before.fX * after.fY > before.fY * after.fX;
105 SkVector before = beforeUnitNormal;
109 if (!is_clockwise(before, after)) {
111 before.negate();
120 int count = SkConic::BuildUnitArc(before, after, dir, &matrix, conics);
139 SkVector before = beforeUnitNormal; local
153 ccw = !is_clockwise(before, after);
156 before.negate()
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
TypeSafeCollectionsTest.java 94 assertTrue(d.before(new Date(time + 1000 * 60 * 60 * 24)));
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue318/
ContextClassLoaderTest.java 32 import org.junit.Before;
76 @Before
77 public void before() throws MalformedURLException { method in class:ContextClassLoaderTest
  /external/toybox/toys/posix/
grep.c 27 -A Show NUM lines after -B Show NUM lines before match
85 long lcount = 0, mcount = 0, offset = 0, after = 0, before = 0; local
199 outline(dl->data, '-', name, lcount-before, 0, -1);
202 before--;
227 if (++before>TT.b) {
233 before--;
236 // If we discarded a line while displaying context, show bars before next
  /external/v8/src/
date.cc 323 DST* before = NULL; local
329 if (before == NULL || before->start_sec < dst_[i].start_sec) {
330 before = &dst_[i];
339 // If before or after segments were not found,
341 if (before == NULL) {
342 before = InvalidSegment(before_) ? before_ : LeastRecentlyUsedDST(after);
345 after = InvalidSegment(after_) && before != after_
346 ? after_ : LeastRecentlyUsedDST(before);
349 DCHECK(before != NULL)
    [all...]
  /external/vboot_reference/firmware/stub/
tpm_lite_stub.c 212 struct timeval before, after; local
213 gettimeofday(&before, NULL);
230 (int) ((after.tv_sec - before.tv_sec) * 1000 +
231 (after.tv_usec - before.tv_usec) / 1000)));
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-typed-test_test.cc 229 "foo\\.cc.2.?: Test D must be defined before REGISTER_TYPED_TEST_CASE_P"
305 IntBeforeRegisterTypedTestCaseP before = 0; variable
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
GridLayoutManagerNoOpUpdateTest.java 70 Map<Long, Rect> before = takeSnapshot(); local
78 assertSnapshotsEqual(before, after);
81 private void assertSnapshotsEqual(Map<Long, Rect> before, Map<Long, Rect> after) {
82 for (Map.Entry<Long, Rect> entry : before.entrySet()) {
87 assertEquals("visible view count should be equal", before.size(), after.size());
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogRecordTest.java 31 long before = lr.getMillis(); local
39 assertTrue(after-before>0);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
Security2Test.java 107 int before = table.get(key); local
108 table.put(key, before + 1);
  /libcore/ojluni/src/main/java/java/time/zone/
ZoneOffsetTransition.java 111 * The offset before transition.
127 * actually occurs, expressed local to the before offset, not null
128 * @param offsetBefore the offset before the transition, not null
150 * @param transition the transition date-time with the offset before the transition, not null
151 * @param offsetBefore the offset before the transition, not null
164 * @param offsetBefore the offset before the transition, not null
226 ZoneOffset before = Ser.readOffset(in); local
228 if (before.equals(after)) {
231 return new ZoneOffsetTransition(epochSecond, before, after);
261 * Gets the local transition date-time, as would be expressed with the 'before' offset
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/roots/
RootCursorWrapper.java 61 final String[] before = cursor.getColumnNames(); local
62 mColumnNames = new String[before.length + 2];
63 System.arraycopy(before, 0, mColumnNames, 0, before.length);
64 mAuthorityIndex = before.length;
65 mRootIdIndex = before.length + 1;
  /packages/apps/Email/tests/src/com/android/emailcommon/provider/
HostAuthTests.java 254 final HostAuth before = new HostAuth(); local
255 before.mProtocol = "IMAP";
256 before.mAddress = "dhoff@example.com";
257 before.mPort = 1337;
258 before.mFlags = 293847;
259 before.setLogin("dhoff", "daknightrida");
260 before.mDomain = "example.com";
261 before.mClientCertAlias = "I'm a client cert alias";
262 before.mServerCert = new byte[] {(byte) 0xFF, (byte) 0xAA};
263 before.mCredentialKey = 9873425
    [all...]
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
testing.go 29 // If a benchmark needs some expensive setup before running, the timer
155 // before the test exited. If a test deferred an important cleanup
235 before()
331 // before runs before all testing.
332 func before() { func
  /prebuilts/go/linux-x86/src/go/doc/testdata/
testing.go 29 // If a benchmark needs some expensive setup before running, the timer
155 // before the test exited. If a test deferred an important cleanup
235 before()
331 // before runs before all testing.
332 func before() { func
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
gtest-typed-test_test.cc 229 "foo\\.cc.2.?: Test D must be defined before REGISTER_TYPED_TEST_CASE_P"
305 IntBeforeRegisterTypedTestCaseP before = 0; variable

Completed in 1835 milliseconds

1 2 34 5 6 7 8 91011>>