/external/icu/icu4c/source/i18n/ |
D | number_decimfmtprops.cpp | 43 formatWidth = -1; in clear() 44 groupingSize = -1; in clear() 47 maximumFractionDigits = -1; in clear() 48 maximumIntegerDigits = -1; in clear() 49 maximumSignificantDigits = -1; in clear() 50 minimumExponentDigits = -1; in clear() 51 minimumFractionDigits = -1; in clear() 52 minimumGroupingDigits = -1; in clear() 53 minimumIntegerDigits = -1; in clear() 54 minimumSignificantDigits = -1; in clear() [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_base64.py | 9 eq = self.assertEqual 10 eq(base64.encodestring("www.python.org"), "d3d3LnB5dGhvbi5vcmc=\n") 11 eq(base64.encodestring("a"), "YQ==\n") 12 eq(base64.encodestring("ab"), "YWI=\n") 13 eq(base64.encodestring("abc"), "YWJj\n") 14 eq(base64.encodestring(""), "") 15 eq(base64.encodestring("abcdefghijklmnopqrstuvwxyz" 21 # Non-bytes 22 eq(base64.encodestring(bytearray('abc')), 'YWJj\n') 25 eq = self.assertEqual [all …]
|
D | test_gettext.py | 11 # - Add new tests, for example for "dgettext" 12 # - Remove dummy tests, for example testing for single and double quotes 14 # - Tests should have only one assert. 98 eq = self.assertEqual 100 eq(_('albatross'), 'albatross') 101 eq(_(u'mullusk'), 'bacon') 102 eq(_(r'Raymond Luxury Yach-t'), 'Throatwobbler Mangrove') 103 eq(_(ur'nudge nudge'), 'wink wink') 106 eq = self.assertEqual 108 eq(_("albatross"), 'albatross') [all …]
|
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/ |
D | erase_key.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 58 typedef std::pair<C::const_iterator, C::const_iterator> Eq; in main() typedef 59 Eq eq = c.equal_range(1); in main() local 60 assert(std::distance(eq.first, eq.second) == 2); in main() 61 C::const_iterator k = eq.first; in main() 62 assert(k->first == 1); in main() 63 assert(k->second == "one"); in main() 65 assert(k->first == 1); in main() 66 assert(k->second == "four"); in main() [all …]
|
D | erase_range.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 45 typedef std::pair<C::iterator, C::iterator> Eq; in main() typedef 46 Eq eq = c.equal_range(1); in main() local 47 assert(std::distance(eq.first, eq.second) == 2); in main() 48 k = eq.first; in main() 49 assert(k->first == 1); in main() 50 assert(k->second == "one"); in main() 52 assert(k->first == 1); in main() 53 assert(k->second == "four"); in main() [all …]
|
D | insert_init.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 45 typedef std::pair<C::iterator, C::iterator> Eq; in main() typedef 46 Eq eq = c.equal_range(1); in main() local 47 assert(std::distance(eq.first, eq.second) == 2); in main() 48 C::iterator k = eq.first; in main() 49 assert(k->first == 1); in main() 50 assert(k->second == "one"); in main() 52 assert(k->first == 1); in main() 53 assert(k->second == "four"); in main() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_future.py | 111 def f() -> {ann}: 113 def g(arg: {ann}) -> None: 137 expected = annotation if not is_tuple else annotation[1:-1] 145 eq = self.assertAnnotationEqual 146 eq('...') 147 eq("'some_string'") 148 eq("b'\\xa3'") 149 eq('Name') 150 eq('None') 151 eq('True') [all …]
|
D | test_base64.py | 30 eq = self.assertEqual 31 eq(base64.encodebytes(b"www.python.org"), b"d3d3LnB5dGhvbi5vcmc=\n") 32 eq(base64.encodebytes(b"a"), b"YQ==\n") 33 eq(base64.encodebytes(b"ab"), b"YWI=\n") 34 eq(base64.encodebytes(b"abc"), b"YWJj\n") 35 eq(base64.encodebytes(b""), b"") 36 eq(base64.encodebytes(b"abcdefghijklmnopqrstuvwxyz" 42 # Non-bytes 43 eq(base64.encodebytes(bytearray(b'abc')), b'YWJj\n') 44 eq(base64.encodebytes(memoryview(b'abc')), b'YWJj\n') [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/CostModel/X86/ |
D | cmp.ll | 2 ; RUN: opt < %s -mtriple=x86_64-apple-macosx10.8.0 -cost-model -analyze -mattr=+sse2 | FileCheck %s… 3 ; RUN: opt < %s -mtriple=x86_64-apple-macosx10.8.0 -cost-model -analyze -mattr=+sse3 | FileCheck %s… 4 ; RUN: opt < %s -mtriple=x86_64-apple-macosx10.8.0 -cost-model -analyze -mattr=+ssse3 | FileCheck %… 5 ; RUN: opt < %s -mtriple=x86_64-apple-macosx10.8.0 -cost-model -analyze -mattr=+sse4.1 | FileCheck … 6 ; RUN: opt < %s -mtriple=x86_64-apple-macosx10.8.0 -cost-model -analyze -mattr=+sse4.2 | FileCheck … 7 ; RUN: opt < %s -mtriple=x86_64-apple-macosx10.8.0 -cost-model -analyze -mattr=+avx | FileCheck %s … 8 ; RUN: opt < %s -mtriple=x86_64-apple-macosx10.8.0 -cost-model -analyze -mattr=+avx2 | FileCheck %s… 9 ; RUN: opt < %s -mtriple=x86_64-apple-macosx10.8.0 -cost-model -analyze -mattr=+avx512f | FileCheck… 10 ; RUN: opt < %s -mtriple=x86_64-apple-macosx10.8.0 -cost-model -analyze -mattr=+avx512f,+avx512bw |… 12 ; RUN: opt < %s -mtriple=x86_64-apple-macosx10.8.0 -cost-model -analyze -mcpu=slm | FileCheck %s --… [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/ |
D | implicit-it-generation.s | 1 @ RUN: llvm-mc -triple thumbv7a--none-eabi -arm-implicit-it=always < %s -show-encoding | FileCheck … 5 @ CHECK-LABEL: test1 7 @ CHECK: it eq 12 @ CHECK-LABEL: test2 17 @ CHECK: itttt eq 25 @ CHECK-LABEL: test3 30 @ CHECK: itete eq 38 @ CHECK-LABEL: test4 43 @ CHECK: it eq 47 @ CHECK: it eq [all …]
|
D | thumb2-narrow-dp.ll | 1 // RUN: llvm-mc -triple thumbv7 -show-encoding < %s | FileCheck %s 3 // Test each of the Thumb1 data-processing instructions 7 // - Rd == Rn 8 // - Rd, Rn and Rm are < r8 11 // - Rd == Rn || Rd == Rm 12 // - Rd, Rn and Rm are < r8 24 IT EQ 25 // CHECK: it eq @ encoding: [0x08,0xbf] 28 IT EQ 29 // CHECK: it eq @ encoding: [0x08,0xbf] [all …]
|
/external/python/cpython2/Lib/email/test/ |
D | test_email_renamed.py | 1 # Copyright (C) 2001-2007 Python Software Foundation 2 # Contact: email-sig@python.org 76 eq = self.assertEqual 78 eq(msg.get_all('cc'), ['ccc@zzz.org', 'ddd@zzz.org', 'eee@zzz.org']) 79 eq(msg.get_all('xx', 'n/a'), 'n/a') 82 eq = self.assertEqual 84 eq(msg.get_charset(), None) 85 charset = Charset('iso-8859-1') 87 eq(msg['mime-version'], '1.0') 88 eq(msg.get_content_type(), 'text/plain') [all …]
|
D | test_email.py | 1 # Copyright (C) 2001-2010 Python Software Foundation 2 # Contact: email-sig@python.org 81 eq = self.assertEqual 83 eq(msg.get_all('cc'), ['ccc@zzz.org', 'ddd@zzz.org', 'eee@zzz.org']) 84 eq(msg.get_all('xx', 'n/a'), 'n/a') 87 eq = self.assertEqual 89 eq(msg.get_charset(), None) 90 charset = Charset('iso-8859-1') 92 eq(msg['mime-version'], '1.0') 93 eq(msg.get_content_type(), 'text/plain') [all …]
|
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.cnstr/ |
D | init.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 52 typedef std::pair<C::const_iterator, C::const_iterator> Eq; in main() typedef 53 Eq eq = c.equal_range(1); in main() local 54 assert(std::distance(eq.first, eq.second) == 2); in main() 55 C::const_iterator i = eq.first; in main() 56 assert(i->first == 1); in main() 57 assert(i->second == "one"); in main() 59 assert(i->first == 1); in main() 60 assert(i->second == "four"); in main() [all …]
|
D | assign_move.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 67 typedef std::pair<C::const_iterator, C::const_iterator> Eq; in main() typedef 68 Eq eq = c.equal_range(1); in main() local 69 assert(std::distance(eq.first, eq.second) == 2); in main() 70 C::const_iterator i = eq.first; in main() 71 assert(i->first == 1); in main() 72 assert(i->second == "one"); in main() 74 assert(i->first == 1); in main() 75 assert(i->second == "four"); in main() [all …]
|
D | move_alloc.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 63 typedef std::pair<C::const_iterator, C::const_iterator> Eq; in main() typedef 64 Eq eq = c.equal_range(1); in main() local 65 assert(std::distance(eq.first, eq.second) == 2); in main() 66 C::const_iterator i = eq.first; in main() 67 assert(i->first == 1); in main() 68 assert(i->second == "one"); in main() 70 assert(i->first == 1); in main() 71 assert(i->second == "four"); in main() [all …]
|
D | range.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 55 typedef std::pair<C::const_iterator, C::const_iterator> Eq; in main() typedef 56 Eq eq = c.equal_range(1); in main() local 57 assert(std::distance(eq.first, eq.second) == 2); in main() 58 C::const_iterator i = eq.first; in main() 59 assert(i->first == 1); in main() 60 assert(i->second == "one"); in main() 62 assert(i->first == 1); in main() 63 assert(i->second == "four"); in main() [all …]
|
D | init_size_hash_equal_allocator.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 58 typedef std::pair<C::const_iterator, C::const_iterator> Eq; in main() typedef 59 Eq eq = c.equal_range(1); in main() local 60 assert(std::distance(eq.first, eq.second) == 2); in main() 61 C::const_iterator i = eq.first; in main() 62 assert(i->first == 1); in main() 63 assert(i->second == "one"); in main() 65 assert(i->first == 1); in main() 66 assert(i->second == "four"); in main() [all …]
|
D | range_size_hash_equal_allocator.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 62 typedef std::pair<C::const_iterator, C::const_iterator> Eq; in main() typedef 63 Eq eq = c.equal_range(1); in main() local 64 assert(std::distance(eq.first, eq.second) == 2); in main() 65 C::const_iterator i = eq.first; in main() 66 assert(i->first == 1); in main() 67 assert(i->second == "one"); in main() 69 assert(i->first == 1); in main() 70 assert(i->second == "four"); in main() [all …]
|
/external/llvm/test/MC/ARM/ |
D | thumb2-narrow-dp.ll | 1 // RUN: llvm-mc -triple thumbv7 -show-encoding < %s | FileCheck %s 3 // Test each of the Thumb1 data-processing instructions 7 // - Rd == Rn 8 // - Rd, Rn and Rm are < r8 11 // - Rd == Rn || Rd == Rm 12 // - Rd, Rn and Rm are < r8 24 IT EQ 25 // CHECK: it eq @ encoding: [0x08,0xbf] 28 IT EQ 29 // CHECK: it eq @ encoding: [0x08,0xbf] [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | compare-3way.ll | 1 ; RUN: opt -S -instcombine < %s | FileCheck %s 7 ; 3way compare function (-1, 0, 1) 10 ; CHECK-LABEL: @test_low_sgt 13 %eq = icmp eq i64 %a, %b 15 %. = select i1 %slt, i32 -1, i32 1 16 %result = select i1 %eq, i32 0, i32 %. 17 %cmp = icmp sgt i32 %result, -1 27 ; CHECK-LABEL: @test_low_slt 29 %eq = icmp eq i64 %a, %b 31 %. = select i1 %slt, i32 -1, i32 1 [all …]
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_configdialog.py | 100 fontlist.event_generate('<Key-Down>') 101 fontlist.event_generate('<KeyRelease-Down>') 110 fontlist.event_generate('<Key-Up>') 111 fontlist.event_generate('<KeyRelease-Up>') 132 fontlist.event_generate('<Button-1>', x=x, y=y) 133 fontlist.event_generate('<ButtonRelease-1>', x=x, y=y) 170 'font-size': default_size, 171 'font-bold': str(default_bold)}} 178 'font-size': '20', 179 'font-bold': str(default_bold)}} [all …]
|
D | test_codecontext.py | 86 eq = self.assertEqual 90 eq(cc.editwin, ed) 91 eq(cc.text, ed.text) 92 eq(cc.textfont, ed.text['font']) 94 eq(cc.info, [(0, -1, '', False)]) 95 eq(cc.topvisible, 1) 96 eq(self.root.tk.call('after', 'info', self.cc.t1)[1], 'timer') 97 eq(self.root.tk.call('after', 'info', self.cc.t2)[1], 'timer') 119 eq = self.assertEqual 128 eq(toggle(), 'break') [all …]
|
/external/adhd/cras/src/dsp/tests/ |
D | eq_test.c | 2 * Use of this source code is governed by a BSD-style license that can be 12 #include "eq.h" 23 return (tp2->tv_sec - tp1->tv_sec) in tp_diff() 24 + (tp2->tv_nsec - tp1->tv_nsec) * 1e-9; in tp_diff() 32 struct eq *eq; in test_ir() local 41 eq = eq_new(); in test_ir() 42 eq_append_biquad(eq, BQ_PEAKING, 380/NQ, 3, -10); in test_ir() 43 eq_append_biquad(eq, BQ_PEAKING, 720/NQ, 3, -12); in test_ir() 44 eq_append_biquad(eq, BQ_PEAKING, 1705/NQ, 3, -8); in test_ir() 45 eq_append_biquad(eq, BQ_HIGHPASS, 218/NQ, 0.7, -10.2); in test_ir() [all …]
|
/external/adhd/cras/src/dsp/ |
D | eq.h | 2 * Use of this source code is governed by a BSD-style license that can be 13 /* An EQ is a chain of biquad filters. See Web Audio API spec for details of the 18 /* Maximum number of biquad filters an EQ can have */ 21 struct eq; 23 /* Create an EQ. */ 24 struct eq *eq_new(); 26 /* Free an EQ. */ 27 void eq_free(struct eq *eq); 29 /* Append a biquad filter to an EQ. An EQ can have at most MAX_BIQUADS_PER_EQ 32 * eq - The EQ we want to use. [all …]
|