Searched defs:before (Results 1 - 25 of 165) sorted by relevance

1234567

/external/compiler-rt/test/asan/TestCases/
H A Dmax_redzone.cc17 size_t before = __sanitizer_get_heap_size(); local
24 size_t diff = after - before;
/external/testng/src/test/java/test/testng317/
H A DVerifyTest.java16 public void before() { method in class:VerifyTest
/external/testng/src/test/java/test/thread/
H A DSample2.java10 public void before(ITestContext ctx) { method in class:Sample2
/external/junit/src/org/junit/rules/
H A DExternalResource.java8 * resource before a test (a file, socket, server, database connection, etc.),
18 * protected void before() throws Throwable {
44 before();
58 protected void before() throws Throwable { method in class:ExternalResource
H A DTemporaryFolder.java31 protected void before() throws Throwable { method in class:TemporaryFolder
/external/testng/src/test/java/test/
H A DReturnValueTest.java19 public void before() { method in class:ReturnValueTest
/external/testng/src/test/java/test/configuration/
H A DBeforeMethodTest.java16 public void before(Method m, ITestContext ctx) { method in class:BeforeMethodTest
H A DConfigurationDisabledSampleTest.java12 public void before() { method in class:ConfigurationDisabledSampleTest
/external/testng/src/test/java/test/dependent/
H A DDependsOnProtectedMethodTest.java16 protected void before() { method in class:DependsOnProtectedMethodTest
/external/valgrind/none/tests/ppc64/
H A Dstd_reg_imm.c45 char before[2]; member in struct:__anon20216
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DContentProviderOperationBuilderTest.java26 public void before() { method in class:ContentProviderOperationBuilderTest
H A DPowerManagerTest.java23 public void before() { method in class:PowerManagerTest
H A DVibratorTest.java24 public void before() { method in class:VibratorTest
/external/slf4j/slf4j-simple/src/test/java/org/slf4j/impl/
H A DSimpleLoggerTest.java39 public void before() { method in class:SimpleLoggerTest
/external/testng/src/test/java/test/inject/
H A DInjectAfterMethodWithTestResultSampleTest.java34 public void before(Method m, ITestResult r) { method in class:InjectAfterMethodWithTestResultSampleTest
H A DInjectBeforeAndAfterMethodsWithTestResultSampleTest.java19 Assert.assertEquals(m_testResult.getAttribute("before"), 10);
38 public void before(Method m, ITestResult r) { method in class:InjectBeforeAndAfterMethodsWithTestResultSampleTest
40 r.setAttribute("before", 10);
H A DInjectBeforeMethodTest.java20 public void before(Object[] parameters) { method in class:InjectBeforeMethodTest
/external/testng/src/test/java/test/mannotation/
H A DMTest1.java47 public void before() {} method in class:MTest1
/external/curl/tests/libtest/
H A Dlib1501.c37 static int elapsed(struct timeval *before, argument
42 result = (after->tv_sec - before->tv_sec) * 1000000 +
43 after->tv_usec - before->tv_usec;
81 struct timeval before; local
101 before = tutil_tvnow();
108 e = elapsed(&before, &after);
/external/libchrome/base/profiler/
H A Dtracked_time_unittest.cc66 Duration before = now - TrackedTime(ticks_before); local
67 EXPECT_LE(0, before.InMilliseconds());
99 Duration before = now - TrackedTime(ticks_before); local
100 EXPECT_LE(0, before.InMilliseconds());
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue318/
H A DContextClassLoaderTest.java77 public void before() throws MalformedURLException { method in class:ContextClassLoaderTest
/external/testng/src/main/java/org/testng/internal/
H A DMethodInheritance.java43 * respect inheritance (before methods are invoked in the order Base first
47 * @param before true if we are handling a before method (meaning, the methods
51 public static void fixMethodInheritance(ITestNGMethod[] methods, boolean before) { argument
86 sortMethodsByInheritance(l, before);
/external/eigen/bench/btl/data/
H A Dsmooth.cxx141 int before=i-j; local
144 if ((before>=0)&&(after<size)) // inside of the vector
146 sample.push_front(tab_mflops[before]);
/external/freetype/src/base/
H A Dftutil.c270 FT_ListNode before; local
276 before = list->tail;
279 node->prev = before;
281 if ( before )
282 before->next = node;
322 FT_ListNode before, after; local
328 before = node->prev;
331 if ( before )
332 before->next = after;
337 after->prev = before;
349 FT_ListNode before, after; local
[all...]
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
H A DMoreExecutorsDirectExecutorBenchmark.java68 @BeforeExperiment void before() { method in class:MoreExecutorsDirectExecutorBenchmark

Completed in 1100 milliseconds

1234567