Home
last modified time | relevance | path

Searched refs:low (Results 1 – 9 of 9) sorted by relevance

/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
DAlertServiceTest.java826 ArrayList<NotificationInfo> low = new ArrayList<NotificationInfo>(); in testRedistributeBuckets_withinLimits() local
827 AlertService.redistributeBuckets(high, medium, low, maxNotifications); in testRedistributeBuckets_withinLimits()
830 assertEquals(0, low.size()); in testRedistributeBuckets_withinLimits()
835 low = new ArrayList<NotificationInfo>(); in testRedistributeBuckets_withinLimits()
836 AlertService.redistributeBuckets(high, medium, low, maxNotifications); in testRedistributeBuckets_withinLimits()
839 assertEquals(0, low.size()); in testRedistributeBuckets_withinLimits()
845 low = new ArrayList<NotificationInfo>(); in testRedistributeBuckets_withinLimits()
846 AlertService.redistributeBuckets(high, medium, low, maxNotifications); in testRedistributeBuckets_withinLimits()
849 assertEquals(0, low.size()); in testRedistributeBuckets_withinLimits()
856 ArrayList<NotificationInfo> low = new ArrayList<NotificationInfo>(); in testRedistributeBuckets_tooManyHighPriority() local
[all …]
/packages/apps/Camera/jni/feature_mos/src/mosaic/
DDelaunay.cpp77 int low, high; in build() local
79 low = lo; in build()
82 if ( low < (high-2) ) { in build()
84 minx = sp[low]; in build()
87 spsorty( sp, low, high); in build()
91 split = low - 1 + (int) in build()
92 (0.5 + ((double)(high-low+1) * ((double)lowrows / (double)rows))); in build()
93 build( low, split, &ldo, &ldi, lowrows ); in build()
105 else if (low >= (high - 1)) { // two or one points in build()
106 a = makeEdge(sp[low], sp[high]); in build()
[all …]
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
DDelaunay.cpp77 int low, high; in build() local
79 low = lo; in build()
82 if ( low < (high-2) ) { in build()
84 minx = sp[low]; in build()
87 spsorty( sp, low, high); in build()
91 split = low - 1 + (int) in build()
92 (0.5 + ((double)(high-low+1) * ((double)lowrows / (double)rows))); in build()
93 build( low, split, &ldo, &ldi, lowrows ); in build()
105 else if (low >= (high - 1)) { // two or one points in build()
106 a = makeEdge(sp[low], sp[high]); in build()
[all …]
/packages/apps/Email/src/org/apache/commons/io/
DEndianUtils.java185 long low = ( ( ( data[ offset + 0 ] & 0xff ) << 0 ) + in readSwappedUnsignedInteger() local
191 return (high << 24) + (0xffffffffL & low); in readSwappedUnsignedInteger()
220 long low = in readSwappedLong() local
230 return (high << 32) + (0xffffffffL & low); in readSwappedLong()
374 long low = ( ( ( value1 & 0xff ) << 0 ) + in readSwappedUnsignedInteger() local
380 return (high << 24) + (0xffffffffL & low); in readSwappedUnsignedInteger()
/packages/apps/Email/src/org/apache/james/mime4j/decoder/
DQuotedPrintableInputStream.java183 byte low = asciiCharToNumericValue(b); in fillBuffer()
185 byteq.enqueue((byte)((msd << 4) | low)); in fillBuffer()
/packages/experimental/RpcPerformance/
DREADME3 A small test utility to run certain low-level microbenchmarks
/packages/inputmethods/OpenWnn/
DREADME.txt36 Index 2: English dictionary for normal prediction (low priority)
42 Index 1: Japanese dictionary for normal prediction (low priority)
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
DMediaItemView.java536 private static int clamp(int v, int low, int high) { in clamp() argument
537 return Math.min(Math.max(v, low), high); in clamp()
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
DPinyinIME.java709 char low = (char) (unicode & 0x0000ffff); in tryInputRawUnicode() local
711 commitResultText(String.valueOf(low)); in tryInputRawUnicode()