/cts/suite/audio_quality/test_description/processing/ |
gen_random.py | 41 for i in range(iHigh, freqSamples - 1): 53 for i in range(len(filteredData)): 57 for i in range(len(filteredData)):
|
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_edit_view_views.cc | 81 explicit ViewState(const ui::Range& selection_range) 85 // Range of selected text. 86 ui::Range selection_range; 288 ui::Range selection; 371 const ui::Range range(caret_pos, caret_pos); 372 SetTextAndSelectedRange(text, range); 397 ui::Range range; local 398 textfield_->GetSelectedRange(&range); [all...] |
/external/chromium/chrome/browser/safe_browsing/ |
chunk_range.cc | 29 // The following code requires the range to be sorted. 40 // Extend the range forward across duplicates and increments. 59 const ChunkRange& range = ranges[i]; local 60 for (int chunk = range.start(); chunk <= range.stop(); ++chunk) { 71 // range. 106 return true; // chunk_number is in range.
|
/external/chromium_org/chrome/browser/safe_browsing/ |
chunk_range.cc | 29 // The following code requires the range to be sorted. 40 // Extend the range forward across duplicates and increments. 59 const ChunkRange& range = ranges[i]; local 60 for (int chunk = range.start(); chunk <= range.stop(); ++chunk) { 71 // range. 106 return true; // chunk_number is in range.
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
backward.py | 46 # range or xrange? 48 range = xrange variable 50 range = range variable
|
/external/chromium_org/v8/test/webkit/fast/js/ |
regexp-ranges-and-escaped-hyphens.js | 25 'Tests for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=21232">#21232</a>, and related range issues described in bug.' 32 // range it is no longer a range - hyphens should now match, two should not. 46 // hyphens are normal charaters if a range is not fully specified. 52 // Similar to the above tests, but where the hyphen is escaped this is never a range. 67 // Test that an escaped hyphen can be used as a bound on a range.
|
/external/guava/guava/src/com/google/common/collect/ |
ContiguousSet.java | 92 * Returns a range, closed on both ends, whose endpoints are the minimum and maximum values 93 * contained in this set. This is equivalent to {@code range(CLOSED, CLOSED)}. 97 public abstract Range<C> range(); method in class:ContiguousSet 100 * Returns the minimal range with the given boundary types for which all values in this set are 101 * {@linkplain Range#contains(Comparable) contained} within the range. 105 * range {@code [1..Integer.MAX_VALUE]} then {@code set.range(CLOSED, OPEN)} must return 110 public abstract Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) method in class:ContiguousSet [all...] |
/hardware/ti/omap4xxx/test/CameraHal/ |
camera_test.h | 30 #define KEY_EXP_BRACKETING_RANGE "exp-bracketing-range" 32 #define KEY_TEMP_BRACKETING_POS "temporal-bracketing-range-positive" 33 #define KEY_TEMP_BRACKETING_NEG "temporal-bracketing-range-negative" 146 const char *range; member in struct:fps_ranges_t 151 const char *range; member in struct:fpsConst_Ranges_t 157 const char *range; member in struct:fpsConst_RangesSec_t
|
/pdk/apps/CameraITS/tests/ |
test_param_color_correction.py | 41 linear_tonemap = sum([[i/31.0,i/31.0] for i in range(32)], []) 78 for i in range(len(transforms)): 93 domain = range(len(transforms))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 825 self.assertEqual([(lambda a:[a**i for i in range(a+1)])(j) for j in range(5)], 871 g = ([x for x in range(10)] for x in range(1)) 872 self.assertEqual(g.next(), [x for x in range(10)]) 890 a = [x for x in range(10)] 892 self.assertEqual(sum(b), sum([x for x in range(10)])) 894 self.assertEqual(sum(x**2 for x in range(10)), sum([x**2 for x in range(10)])) 895 self.assertEqual(sum(x*x for x in range(10) if x%2), sum([x*x for x in range(10) if x%2]) [all...] |
py3_test_grammar.py | 773 self.assertEqual([(lambda a:[a**i for i in range(a+1)])(j) for j in range(5)], 819 g = ([x for x in range(10)] for x in range(1)) 820 self.assertEqual(next(g), [x for x in range(10)]) 838 a = [x for x in range(10)] 840 self.assertEqual(sum(b), sum([x for x in range(10)])) 842 self.assertEqual(sum(x**2 for x in range(10)), sum([x**2 for x in range(10)])) 843 self.assertEqual(sum(x*x for x in range(10) if x%2), sum([x*x for x in range(10) if x%2]) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_grammar.py | 858 self.assertEqual([(lambda a:[a**i for i in range(a+1)])(j) for j in range(5)], 904 g = ([x for x in range(10)] for x in range(1)) 905 self.assertEqual(g.next(), [x for x in range(10)]) 923 a = [x for x in range(10)] 925 self.assertEqual(sum(b), sum([x for x in range(10)])) 927 self.assertEqual(sum(x**2 for x in range(10)), sum([x**2 for x in range(10)])) 928 self.assertEqual(sum(x*x for x in range(10) if x%2), sum([x*x for x in range(10) if x%2]) [all...] |
test_heapq.py | 36 for i in range(256): 67 for size in range(30): 68 heap = [random.random() for dummy in range(size)] 75 data = [random.randrange(2000) for i in range(1000)] 98 data = [random.randrange(2000) for i in range(1000)] 111 data = [random.randrange(2000) for i in range(1000)] 142 data = [random.randrange(25) for i in range(size)] 150 heap_sorted = [self.module.heappop(heap) for i in range(size)] 156 row = sorted(random.randrange(1000) for j in range(random.randrange(10))) 165 for i in range(20000) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 825 self.assertEqual([(lambda a:[a**i for i in range(a+1)])(j) for j in range(5)], 871 g = ([x for x in range(10)] for x in range(1)) 872 self.assertEqual(g.next(), [x for x in range(10)]) 890 a = [x for x in range(10)] 892 self.assertEqual(sum(b), sum([x for x in range(10)])) 894 self.assertEqual(sum(x**2 for x in range(10)), sum([x**2 for x in range(10)])) 895 self.assertEqual(sum(x*x for x in range(10) if x%2), sum([x*x for x in range(10) if x%2]) [all...] |
py3_test_grammar.py | 773 self.assertEqual([(lambda a:[a**i for i in range(a+1)])(j) for j in range(5)], 819 g = ([x for x in range(10)] for x in range(1)) 820 self.assertEqual(next(g), [x for x in range(10)]) 838 a = [x for x in range(10)] 840 self.assertEqual(sum(b), sum([x for x in range(10)])) 842 self.assertEqual(sum(x**2 for x in range(10)), sum([x**2 for x in range(10)])) 843 self.assertEqual(sum(x*x for x in range(10) if x%2), sum([x*x for x in range(10) if x%2]) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_grammar.py | 858 self.assertEqual([(lambda a:[a**i for i in range(a+1)])(j) for j in range(5)], 904 g = ([x for x in range(10)] for x in range(1)) 905 self.assertEqual(g.next(), [x for x in range(10)]) 923 a = [x for x in range(10)] 925 self.assertEqual(sum(b), sum([x for x in range(10)])) 927 self.assertEqual(sum(x**2 for x in range(10)), sum([x**2 for x in range(10)])) 928 self.assertEqual(sum(x*x for x in range(10) if x%2), sum([x*x for x in range(10) if x%2]) [all...] |
test_heapq.py | 36 for i in range(256): 67 for size in range(30): 68 heap = [random.random() for dummy in range(size)] 75 data = [random.randrange(2000) for i in range(1000)] 98 data = [random.randrange(2000) for i in range(1000)] 111 data = [random.randrange(2000) for i in range(1000)] 142 data = [random.randrange(25) for i in range(size)] 150 heap_sorted = [self.module.heappop(heap) for i in range(size)] 156 row = sorted(random.randrange(1000) for j in range(random.randrange(10))) 165 for i in range(20000) [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/ |
v3_asid.c | 85 ASN1_SIMPLE(ASIdOrRange, u.range, ASRange) 131 if ((s = i2s_ASN1_INTEGER(NULL, aor->u.range->min)) == NULL) 135 if ((s = i2s_ASN1_INTEGER(NULL, aor->u.range->max)) == NULL) 175 (a->type == ASIdOrRange_range && a->u.range != NULL && 176 a->u.range->min != NULL && a->u.range->max != NULL)); 179 (b->type == ASIdOrRange_range && b->u.range != NULL && 180 b->u.range->min != NULL && b->u.range->max != NULL)); 186 int r = ASN1_INTEGER_cmp(a->u.range->min, b->u.range->min) [all...] |
/external/openssl/crypto/x509v3/ |
v3_asid.c | 85 ASN1_SIMPLE(ASIdOrRange, u.range, ASRange) 131 if ((s = i2s_ASN1_INTEGER(NULL, aor->u.range->min)) == NULL) 135 if ((s = i2s_ASN1_INTEGER(NULL, aor->u.range->max)) == NULL) 175 (a->type == ASIdOrRange_range && a->u.range != NULL && 176 a->u.range->min != NULL && a->u.range->max != NULL)); 179 (b->type == ASIdOrRange_range && b->u.range != NULL && 180 b->u.range->min != NULL && b->u.range->max != NULL)); 186 int r = ASN1_INTEGER_cmp(a->u.range->min, b->u.range->min) [all...] |
/external/libvpx/libvpx/vp8/encoder/arm/armv5te/ |
vp8_packtokens_partitions_armv5.asm | 135 sub r7, r5, #1 ; range-1 141 mul r6, r4, r7 ; ((range-1) * pp[i>>1])) 149 add r4, r7, r6, lsr #8 ; 1 + (((range-1) * pp[i>>1]) >> 8) 152 subcs r4, r5, r4 ; if (bb) range = range-split 154 ; Counting the leading zeros is used to normalize range. 161 lsl r5, r4, r6 ; range <<= shift 243 sub r7, r5, #1 ; range-1 245 mul r6, r4, r7 ; (range-1) * pp[i>>1] 250 add r4, r7, r6, lsr #8 ; split = 1 + (((range-1) * pp[i>>1]) >> 8 [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct_range/d/ |
T_invoke_direct_range_1.d | 23 invoke-direct/range {v1}, dot/junit/opcodes/invoke_direct_range/TSuper/<init>()V 30 invoke-direct/range {v2}, dot/junit/opcodes/invoke_direct_range/TSuper/toInt()I
|
T_invoke_direct_range_10.d | 23 invoke-direct/range {v1}, java/lang/Object/<init>()V 38 invoke-direct/range {v0}, dot/junit/opcodes/invoke_direct_range/d/T_invoke_direct_range_10/getInt()I
|
T_invoke_direct_range_11.d | 23 invoke-direct/range {v1}, java/lang/Object/<init>()V 30 invoke-direct/range {v2}, dot.junit.opcodes.invoke_direct_range.d.T_invoke_direct_range_11/toInt()I
|
T_invoke_direct_range_12.d | 23 invoke-direct/range {v1}, dot/junit/opcodes/invoke_direct_range/TSuper/<init>()V 30 invoke-direct/range {v2}, dot/junit/opcodes/invoke_direct_range/TSuper/toIntPvt()I
|
T_invoke_direct_range_13.d | 23 invoke-direct/range {v1}, dot/junit/opcodes/invoke_direct_range/TAbstract/<init>()V 29 invoke-direct/range {v2}, dot/junit/opcodes/invoke_direct_range/TAbstract/toInt()I
|