Searched defs:times (Results 1 - 25 of 99) sorted by relevance

1234

/external/mockito/src/test/java/org/mockito/internal/progress/
H A DVerificationModeBuilder.java14 private Integer times = 1; field in class:VerificationModeBuilder
17 return VerificationModeFactory.times(times);
20 public VerificationModeBuilder times(int times) { argument
21 this.times = times;
/external/syslinux/com32/include/sys/
H A Dtimes.h2 * sys/times.h
21 static inline clock_t times(struct tms *buf) function
/external/toybox/toys/posix/
H A Dwho.c37 char *times; local
40 times = ctime(&time);
41 time_size = strlen(times) - 2;
/external/mockito/src/main/java/org/mockito/verification/
H A DVerificationWithTimeout.java14 * verify(mock, timeout(100).times(5)).foo();
33 * verify(mock, timeout(100).times(2)).someMethod("some arg");
42 VerificationMode times(int wantedNumberOfInvocations); method in interface:VerificationWithTimeout
H A DVerificationAfterDelay.java34 VerificationMode times(int wantedNumberOfInvocations); method in interface:VerificationAfterDelay
/external/mockito/src/test/java/org/mockitousage/stacktrace/
H A DClickableStackTracesTest.java16 import static org.mockito.Mockito.times;
27 private void verifyTheMock(int times, String param) { argument
28 verify(mock, times(times)).simpleMethod(param);
/external/ltp/testcases/kernel/syscalls/utime/
H A Dutime04.c25 * and access times of a file to the time specified by times argument, if
26 * the times argument is not null, and the user ID of the process is "root".
30 * times of the file to that specified by the times argument.
58 * -i n : Execute test n times.
92 struct utimbuf times; /* struct. buffer for utime() */ variable in typeref:struct:utimbuf
114 * modification times to that specified by
115 * times argument.
117 TEST(utime(TEMP_FILE, &times));
[all...]
H A Dutime05.c25 * and access times of a file to the value specified by the times argument
27 * - The times argument is not null,
33 * times of the file to that specified by the times argument.
61 * -i n : Execute test n times.
98 struct utimbuf times; /* struct. buffer for utime() */ variable in typeref:struct:utimbuf
120 * modification times to that specified by
121 * times argument.
123 TEST(utime(TEMP_FILE, &times));
[all...]
/external/strace/tests/
H A Dfutimesat.c55 const kernel_ulong_t times)
57 long rc = syscall(__NR_futimesat, dirfd, pathname, times);
109 /* times */
53 k_futimesat(const kernel_ulong_t dirfd, const kernel_ulong_t pathname, const kernel_ulong_t times) argument
H A Dutime.c43 k_utime(const void *const filename, const void *const times) argument
45 return syscall(__NR_utime, filename, times);
H A Dutimensat.c55 const kernel_ulong_t times,
58 long rc = syscall(__NR_utimensat, dirfd, pathname, times, flags);
111 /* times */
53 k_utimensat(const kernel_ulong_t dirfd, const kernel_ulong_t pathname, const kernel_ulong_t times, const kernel_ulong_t flags) argument
H A Dxutimes.c60 k_utimes(const kernel_ulong_t pathname, const kernel_ulong_t times) argument
62 long rc = syscall(TEST_SYSCALL_NR, pathname, times);
98 /* times */
/external/strace/tests-m32/
H A Dfutimesat.c55 const kernel_ulong_t times)
57 long rc = syscall(__NR_futimesat, dirfd, pathname, times);
109 /* times */
53 k_futimesat(const kernel_ulong_t dirfd, const kernel_ulong_t pathname, const kernel_ulong_t times) argument
H A Dutime.c43 k_utime(const void *const filename, const void *const times) argument
45 return syscall(__NR_utime, filename, times);
H A Dutimensat.c55 const kernel_ulong_t times,
58 long rc = syscall(__NR_utimensat, dirfd, pathname, times, flags);
111 /* times */
53 k_utimensat(const kernel_ulong_t dirfd, const kernel_ulong_t pathname, const kernel_ulong_t times, const kernel_ulong_t flags) argument
H A Dxutimes.c60 k_utimes(const kernel_ulong_t pathname, const kernel_ulong_t times) argument
62 long rc = syscall(TEST_SYSCALL_NR, pathname, times);
98 /* times */
/external/strace/tests-mx32/
H A Dfutimesat.c55 const kernel_ulong_t times)
57 long rc = syscall(__NR_futimesat, dirfd, pathname, times);
109 /* times */
53 k_futimesat(const kernel_ulong_t dirfd, const kernel_ulong_t pathname, const kernel_ulong_t times) argument
H A Dutime.c43 k_utime(const void *const filename, const void *const times) argument
45 return syscall(__NR_utime, filename, times);
H A Dutimensat.c55 const kernel_ulong_t times,
58 long rc = syscall(__NR_utimensat, dirfd, pathname, times, flags);
111 /* times */
53 k_utimensat(const kernel_ulong_t dirfd, const kernel_ulong_t pathname, const kernel_ulong_t times, const kernel_ulong_t flags) argument
H A Dxutimes.c60 k_utimes(const kernel_ulong_t pathname, const kernel_ulong_t times) argument
62 long rc = syscall(TEST_SYSCALL_NR, pathname, times);
98 /* times */
/external/syslinux/com32/include/
H A Dlibansi.h65 /* Print one character, one or more times */
86 static inline void scrollup(int times) argument
88 if (times > 0)
89 printf(CSI "%dS", times);
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dget_scaling_square.c22 size_t times)
24 int16_t nbits = WebRtcSpl_GetSizeInBits((uint32_t)times);
20 WebRtcSpl_GetScalingSquare(int16_t* in_vector, size_t in_vector_length, size_t times) argument
/external/jcommander/src/test/java/com/beust/jcommander/command/
H A DCommandAliasTest.java169 private void patternMatchesTimes(String pattern, String input, int times) { argument
173 Assert.assertEquals(matches, times);
/external/mockito/src/main/java/org/mockito/internal/verification/
H A DVerificationModeFactory.java24 public static Times times(int wantedNumberOfInvocations) { method in class:VerificationModeFactory
H A DVerificationWrapper.java24 public VerificationMode times(int wantedNumberOfInvocations) { method in class:VerificationWrapper
25 return copySelfWithNewVerificationMode(VerificationModeFactory.times(wantedNumberOfInvocations));

Completed in 425 milliseconds

1234