/frameworks/base/tools/preload2/src/com/android/preload/actions/ |
ComputeThresholdXAction.java | 31 String value = Main.getUI().showInputDialog("Threshold?"); 35 threshold = Integer.parseInt(value);
|
ComputeThresholdAction.java | 39 * appears in at least the number of threshold given packages. An optional blacklist can be 43 protected int threshold; field in class:ComputeThresholdAction 51 public ComputeThresholdAction(String name, DumpTableModel dataTableModel, int threshold, 55 this.threshold = threshold; 89 Set<String> result = fromThreshold(uses, blacklist, threshold); 105 int threshold) { 109 if (e.getValue().size() >= threshold) {
|
/hardware/bsp/intel/peripheral/libupm/src/gas/ |
gas.h | 40 * sampling, threshold checking, basic printing function, and standard read function. 70 * Given the sampled buffer, this method returns TRUE/FALSE if the threshold 73 * @param ctx Threshold context 74 * @param threshold Sample threshold 78 virtual int findThreshold (thresholdContext* ctx, unsigned int threshold, uint16_t * buffer, int len); 83 * @param ctx Threshold context 94 * Prints a running average of the threshold context 96 * @param ctx Threshold context
|
/hardware/bsp/intel/peripheral/libupm/src/mic/ |
mic.h | 86 * Given the sampled buffer, this method returns TRUE/FALSE if threshold 89 * @param ctx Threshold context 90 * @param threshold Sample threshold 94 int findThreshold (thresholdContext* ctx, unsigned int threshold, uint16_t * buffer, int len); 98 * Prints a running average of the threshold context 100 * @param ctx Threshold context
|
/libcore/ojluni/src/main/java/sun/net/ |
ProgressSource.java | 54 // threshold for notification 55 private int threshold = 8192; field in class:ProgressSource 78 this.threshold = progressMonitor.getProgressUpdateThreshold(); 171 // The threshold effectively divides the progress into 174 // Range 0: 0..threshold-1, 175 // Range 1: threshold .. 2*threshold-1 177 // Range n: n*threshold .. (n+1)*threshold-1 182 // range number = progress / threshold [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
DeferredFileOutputStream.java | 30 * threshold is reached, and only then commit it to disk. If the stream is 31 * closed before the threshold is reached, the data will not be written to 67 * The file to which output will be directed if the threshold is exceeded. 97 * specified threshold, and save data to a file beyond that point. 99 * @param threshold The number of bytes at which to trigger an event. 100 * @param outputFile The file to which data is saved beyond the threshold. 102 public DeferredFileOutputStream(int threshold, File outputFile) 104 super(threshold); 114 * specified threshold, and save data to a temporary file beyond that point. 116 * @param threshold The number of bytes at which to trigger an event [all...] |
/external/autotest/client/tests/kvm/deps/ |
heartbeat_slu.py | 45 def run_server(host, port, daemon, file, queue_size, threshold, drift): 51 timeout_interval = threshold * 2 57 drift = check_heartbeat(heartbeat, local_timestamp, threshold, check_drift) 61 if local_timestamp - prev_check_timestamp > threshold * 2.0: 62 check_for_timeouts(threshold, check_drift) 92 def check_heartbeat(heartbeat, local_timestamp, threshold, check_drift): 97 if delta > threshold: 112 def check_for_timeouts(threshold, check_drift): 118 if delta > threshold * 2: 132 [--threshold <heartbeat threshold> 149 threshold = 10 # seconds late till alert variable [all...] |
/external/autotest/client/tests/monotonic_time/ |
monotonic_time.py | 19 def run_once(self, test_type = None, duration = 300, threshold = None): 25 if threshold: 26 cmd += ' --threshold ' + str(threshold)
|
/external/autotest/client/tests/tsc/ |
tsc.py | 46 threshold = int(args.split()[1]) 54 if max_delta > threshold: 55 reason = "Latency %s exceeds threshold %d" % (reason, 56 threshold)
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
CalendarCache.java | 31 threshold = (int)(arraySize * 0.75); 47 if (size >= threshold) { 119 private int threshold = (arraySize * 3) / 4; field in class:CalendarCache
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
CalendarCache.java | 29 threshold = (int)(arraySize * 0.75); 45 if (size >= threshold) { 117 private int threshold = (arraySize * 3) / 4; field in class:CalendarCache
|
/external/opencv3/modules/imgproc/test/ocl/ |
test_medianfilter.cpp | 83 void Near(double threshold = 0.0) 85 EXPECT_MAT_NEAR(dst, udst, threshold); 86 EXPECT_MAT_NEAR(dst_roi, udst_roi, threshold);
|
test_houghlines.cpp | 30 int threshold; local 40 threshold = GET_PARAM(2); 88 OCL_OFF(cv::HoughLines(src, dst, rhoStep, thetaStep, threshold)); 89 OCL_ON(cv::HoughLines(usrc, udst, rhoStep, thetaStep, threshold)); 100 OCL_OFF(cv::HoughLines(src, dst, rhoStep, thetaStep, threshold)); 101 OCL_ON(cv::HoughLines(usrc, udst, rhoStep, thetaStep, threshold)); 112 int threshold; local 122 threshold = GET_PARAM(0); 168 OCL_OFF(cv::HoughLinesP(src, dst, rhoStep, thetaStep, threshold, minLineLength, maxGap)); 169 OCL_ON(cv::HoughLinesP(usrc, udst, rhoStep, thetaStep, threshold, minLineLength, maxGap)) [all...] |
/external/opencv3/modules/java/src/ |
video+BackgroundSubtractorKNN.java | 199 // C++: void setShadowThreshold(double threshold) 202 //javadoc: BackgroundSubtractorKNN::setShadowThreshold(threshold) 203 public void setShadowThreshold(double threshold) 206 setShadowThreshold_0(nativeObj, threshold); 258 // C++: void setShadowThreshold(double threshold) 259 private static native void setShadowThreshold_0(long nativeObj, double threshold);
|
/system/tpm/tpm_manager/server/ |
tpm2_status_impl.cc | 54 int* threshold, 63 if (threshold) { 64 *threshold = trunks_tpm_state_->GetLockoutThreshold();
|
tpm2_status_test.cc | 110 int threshold; local 114 &threshold, 133 int threshold; local 137 &threshold, 141 EXPECT_EQ(threshold, lockout_threshold); 150 int threshold; local 154 &threshold,
|
tpm_status_impl.cc | 45 int* threshold, 61 if (threshold) { *threshold = da_info.thresholdCount; }
|
tpm2_status_impl.h | 41 int* threshold,
|
tpm_status_impl.h | 42 int* threshold,
|
/external/opencv3/modules/features2d/src/ |
fast.cpp | 56 void FAST_t(InputArray _img, std::vector<KeyPoint>& keypoints, int threshold, bool nonmax_suppression) 69 threshold = std::min(std::max(threshold, 0), 255); 72 __m128i delta = _mm_set1_epi8(-128), t = _mm_set1_epi8((char)threshold), K16 = _mm_set1_epi8((char)K); 79 threshold_tab[i+255] = (uchar)(i < -threshold ? 1 : i > threshold ? 2 : 0); 156 curr[j+k] = (uchar)cornerScore<patternSize>(ptr+k, pixel, threshold); 184 int vt = v - threshold, count = 0; 195 curr[j] = (uchar)cornerScore<patternSize>(ptr, pixel, threshold); 206 int vt = v + threshold, count = 0 419 int threshold; member in class:cv::FastFeatureDetector_Impl [all...] |
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/ |
MagnitudeVerification.java | 38 // sensorType: {expected, threshold} 55 * @param threshold the threshold 57 public MagnitudeVerification(float expected, float threshold) { 59 mThreshold = threshold; 74 Float threshold = DEFAULTS.get(sensorType)[1]; local 75 return new MagnitudeVerification(expected, threshold);
|
/external/iptables/extensions/ |
libxt_NFLOG.c | 26 {.name = "nflog-threshold", .id = O_THRESHOLD, .type = XTTYPE_UINT16, 27 .flags = XTOPT_PUT, XTOPT_POINTER(s, threshold)}, 37 " --nflog-threshold NUM Message threshold of in-kernel queue\n" 45 info->threshold = XT_NFLOG_DEFAULT_THRESHOLD; 70 if (info->threshold != XT_NFLOG_DEFAULT_THRESHOLD) 71 printf(" %snflog-threshold %u", prefix, info->threshold);
|
/external/opencv3/modules/imgproc/perf/opencl/ |
perf_houghLines.cpp | 37 int threshold = 250; local 52 OCL_TEST_CYCLE() cv::HoughLines(usrc, lines, rhoStep, thetaStep, threshold); 73 int threshold = 100; local 83 OCL_TEST_CYCLE() cv::HoughLinesP(usrc, lines, rhoStep, thetaStep, threshold, minLineLength, maxGap);
|
/frameworks/base/libs/common_time/ |
common_time_config_service.cpp | 92 status_t CommonTimeConfigService::getPanicThreshold(int *threshold) { 93 return mTimeServer.getPanicThreshold(threshold); 96 status_t CommonTimeConfigService::setPanicThreshold(int threshold) { 97 return mTimeServer.setPanicThreshold(threshold);
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/ |
FileFilterUtils.java | 174 * @param cutoff the time threshold 185 * @param cutoff the time threshold 198 * @param cutoffDate the time threshold 209 * @param cutoffDate the time threshold 223 * time is usesd as the threshold age of the files 235 * time is usesd as the threshold age of the files 248 * @param threshold the file size threshold 252 public static IOFileFilter sizeFileFilter(long threshold) { 253 return new SizeFileFilter(threshold); [all...] |