HomeSort by relevance Sort by last modified time
    Searched refs:times (Results 151 - 175 of 712) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/easymock/src/org/easymock/internal/
RecordState.java 98 times(MocksControl.ONCE);
107 times(MocksControl.ONCE);
116 times(MocksControl.ONCE);
125 times(MocksControl.ONCE);
135 times(MocksControl.ONCE);
147 times(MocksControl.ONCE);
176 times(MocksControl.ONCE);
187 times(MocksControl.ONCE);
199 times(MocksControl.ONCE);
209 times(MocksControl.ONCE);
216 public void times(Range range) { method in class:RecordState
    [all...]
IMocksControlState.java 44 void times(Range range); method in interface:IMocksControlState
MocksControl.java 218 public IExpectationSetters<Object> times(int times) { method in class:MocksControl
220 state.times(new Range(times));
227 public IExpectationSetters<Object> times(int min, int max) { method in class:MocksControl
229 state.times(new Range(min, max));
238 state.times(ONCE);
247 state.times(AT_LEAST_ONCE);
256 state.times(ZERO_OR_MORE);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ForwardingCheckedFutureTest.java 49 expect(delegate.checkedGet()).andReturn(VALUE).times(2);
57 expect(delegate.checkedGet(100, TIME_UNIT)).andReturn(VALUE).times(2);
67 .andThrow(new TimeoutException()).times(2);
82 expect(delegate.checkedGet()).andThrow(expected).times(2);
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
opj_clock.c 37 #include <sys/times.h>
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
clone_test.S 15 dec %rcx # repeat count times
63 dec %rcx # repeat count times
72 dec %rcx # repeat count times
87 dec %rcx # repeat count times
million.S 12 dec %rcx # repeat count times
rep_prefix.S 3 # only count as one instruction, even though they repeat many times
58 rep stosb # store d 16384 times, auto-increment
64 rep lodsb # load byte 16384 times, auto-increment
75 rep stosw # store 8192 times, auto-increment
81 rep lodsw # load 8192 times, auto-increment
92 rep stosl # store 4096 times, auto-increment
98 rep lodsl # load 4096 times, auto-increment
109 rep stosq # store 2048 times, auto-increment
115 rep lodsq # load 2048 times, auto-increment
  /external/valgrind/main/exp-bbv/tests/x86-linux/
clone_test.S 15 dec %ecx # repeat count times
63 dec %ecx # repeat count times
72 dec %ecx # repeat count times
87 dec %ecx # repeat count times
  /libcore/luni/src/main/native/
java_io_File.cpp 69 utimbuf times; local
70 times.actime = sb.st_atime;
71 times.modtime = static_cast<time_t>(ms / 1000);
72 return (utime(path.c_str(), &times) == 0);
  /external/chromium_org/base/
platform_file_posix.cc 61 static int CallFutimes(PlatformFile file, const struct timeval times[2]) {
67 ts_times[0].tv_sec = times[0].tv_sec;
68 ts_times[0].tv_nsec = times[0].tv_usec * 1000;
69 ts_times[1].tv_sec = times[1].tv_sec;
70 ts_times[1].tv_nsec = times[1].tv_usec * 1000;
74 return futimes(file, times);
107 static int CallFutimes(PlatformFile file, const struct timeval times[2]) {
258 timeval times[2];
259 times[0] = last_access_time.ToTimeVal();
260 times[1] = last_modified_time.ToTimeVal()
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-370384.js 5 // Flags: --deopt-every-n-times=1 --no-enable_sse4_1
regress-373283.js 5 // Flags: --allow-natives-syntax --deopt-every-n-times=1
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaInserterTest.java 152 EasyMock.expectLastCall().times(4);
167 EasyMock.expectLastCall().times(4);
191 EasyMock.expectLastCall().times(4);
207 EasyMock.expectLastCall().times(8);
229 EasyMock.expectLastCall().times(1);
233 EasyMock.expectLastCall().times(2);
237 EasyMock.expectLastCall().times(3);
241 EasyMock.expectLastCall().times(4);
  /external/chromium_org/base/i18n/
streaming_utf8_validator_perftest.cc 83 // Run fuction |target| over |test_string| |times| times, and report the results
88 int times) {
91 for (int i = 0; i < times; ++i) {
98 // Construct a string by repeating |input| enough times to equal or exceed
155 const int times = (1 << 24) / real_length; local
160 times),
163 times)); local
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Rectangle.java 78 return p0.plus(p1).plus(p2).plus(p3).times(0.25f);
83 return new Rectangle(p0.times(s), p1.times(s), p2.times(s), p3.times(s));
Quad.java 63 return new Quad(p0.times(s), p1.times(s), p2.times(s), p3.times(s));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
InputPointers.java 93 * Append the times, x-coordinates and y-coordinates in the specified {@link ResizableIntArray}
96 * @param times the source {@link ResizableIntArray} to read the event times from.
99 * @param startPos the starting index of the data in {@code times} and etc.
102 public void append(int pointerId, ResizableIntArray times, ResizableIntArray xCoordinates,
110 mTimes.append(times, startPos, length);
164 final int[] times = mTimes.getPrimitiveArray(); local
170 final int time = times[i];
175 Log.d(TAG, "--- (" + j + ") " + times[j]);
  /external/chromium_org/third_party/smhasher/src/
SpeedTest.cpp 185 std::vector<double> times; local
186 times.reserve(trials);
194 if(t > 0) times.push_back(t);
199 std::sort(times.begin(),times.end());
201 FilterOutliers(times);
205 return CalcMean(times);
  /frameworks/base/core/java/android/gesture/
GestureStroke.java 52 final long[] times = new long[count]; local
62 times[index] = p.timestamp;
79 timestamps = times;
88 private GestureStroke(RectF bbx, float len, float[] pts, long[] times) {
92 timestamps = times.clone();
203 final long[] times = timestamps; local
215 out.writeLong(times[i / 2]);
  /cts/suite/cts/deviceTests/filesystemperf/src/com/android/cts/filesystemperf/
SequentialRWTest.java 60 double[] times = FileUtil.measureIO(numberOfFiles, rdAmount, wrAmount, new MeasureRun() { local
67 double[] mbps = ReportLog.calcRatePerSecArray((double)BUFFER_SIZE / 1024 / 1024, times);
105 double[] times = MeasureTime.measure(NUMBER_READ, new MeasureRun() { local
118 double[] mbps = ReportLog.calcRatePerSecArray((double)fileSize / 1024 / 1024, times);
  /cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/primitive/
GLPrimitiveActivity.java 140 double[] times = new double[2]; local
161 success = startBenchmark(mNumFrames, times);
168 mFpsValues[i] = mNumFrames * 1000.0f / (times[1] - times[0]);
  /external/ceres-solver/internal/ceres/
execution_summary.h 45 // information about their execution. e.g., ExecutionSummary::times
46 // can be used for reporting times associated with various activities.
59 const map<string, double>& times() const { return times_; } function in class:ceres::internal::ExecutionSummary
  /external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
gki_int.h 28 #include <sys/times.h>
  /external/libnfc-nci/src/gki/ulinux/
gki_int.h 28 #include <sys/times.h>

Completed in 1797 milliseconds

1 2 3 4 5 67 8 91011>>