Home
last modified time | relevance | path

Searched refs:expand (Results 1 – 25 of 1254) sorted by relevance

12345678910>>...51

/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_autoexpand.py66 expand = self.auto_expand.expand_word_event
71 expand('event')
73 expand('event')
75 expand('event')
77 expand('event')
84 expand = self.auto_expand.expand_word_event
90 expand('event')
92 expand('event')
94 expand('event')
96 expand('event')
[all …]
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_autoexpand.py79 expand = self.auto_expand.expand_word_event
84 expand('event')
86 expand('event')
88 expand('event')
90 expand('event')
97 expand = self.auto_expand.expand_word_event
103 expand('event')
105 expand('event')
107 expand('event')
109 expand('event')
[all …]
/external/webrtc/modules/audio_coding/neteq/
Dnormal_unittest.cc52 Expand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs, channels); in TEST() local
53 Normal normal(fs, &db, bgn, &expand); in TEST()
65 MockExpand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs, in TEST() local
67 Normal normal(fs, &db, bgn, &expand); in TEST()
77 EXPECT_CALL(expand, SetParametersForNormalAfterExpand()); in TEST()
78 EXPECT_CALL(expand, Process(_)); in TEST()
79 EXPECT_CALL(expand, Reset()); in TEST()
89 EXPECT_CALL(expand, Die()); // Called when |expand| goes out of scope. in TEST()
100 MockExpand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs, in TEST() local
102 Normal normal(fs, &db, bgn, &expand); in TEST()
[all …]
Dexpand_unittest.cc34 Expand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs, channels); in TEST() local
45 Expand* expand = expand_factory.Create(&bgn, &sync_buffer, &random_vector, in TEST() local
47 EXPECT_TRUE(expand != NULL); in TEST()
48 delete expand; in TEST()
174 void ExpandUntilMuted(size_t num_channels, Expand* expand) { in ExpandUntilMuted() argument
175 EXPECT_FALSE(expand->Muted()) << "Instance is muted from the start"; in ExpandUntilMuted()
178 while (!expand->Muted()) { in ExpandUntilMuted()
180 EXPECT_EQ(0, expand->Process(&output)); in ExpandUntilMuted()
/external/rust/crates/regex/tests/
Dapi.rs175 expand!(expand1, r"(?-u)(?P<foo>\w+)", "abc", "$foo", "abc");
176 expand!(expand2, r"(?-u)(?P<foo>\w+)", "abc", "$0", "abc");
177 expand!(expand3, r"(?-u)(?P<foo>\w+)", "abc", "$1", "abc");
178 expand!(expand4, r"(?-u)(?P<foo>\w+)", "abc", "$$1", "$1");
179 expand!(expand5, r"(?-u)(?P<foo>\w+)", "abc", "$$foo", "$foo");
180 expand!(expand6, r"(?-u)(?P<a>\w+)\s+(?P<b>\d+)", "abc 123", "$b$a", "123abc");
181 expand!(expand7, r"(?-u)(?P<a>\w+)\s+(?P<b>\d+)", "abc 123", "z$bz$az", "z");
182 expand!(
189 expand!(
196 expand!(expand10, r"(?-u)(?P<a>\w+)\s+(?P<b>\d+)", "abc 123", "$bz$az", "");
[all …]
Dmacros_str.rs21 macro_rules! expand { macro
22 ($name:ident, $re:expr, $text:expr, $expand:expr, $expected:expr) => {
29 cap.expand(t!($expand), &mut got);
Dmacros_bytes.rs27 macro_rules! expand { macro
28 ($name:ident, $re:expr, $text:expr, $expand:expr, $expected:expr) => {
35 cap.expand(t!($expand), &mut got);
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/examples/
DExpander.java66 public void expand(File archive, File targetDirectory) throws IOException, ArchiveException { in expand() method in Expander
71 expand(format, archive, targetDirectory); in expand()
84 …public void expand(String format, File archive, File targetDirectory) throws IOException, ArchiveE… in expand() method in Expander
87 expand(format, c, targetDirectory); in expand()
92 expand(format, i, targetDirectory); in expand()
106 …public void expand(InputStream archive, File targetDirectory) throws IOException, ArchiveException… in expand() method in Expander
107 expand(new ArchiveStreamFactory().createArchiveInputStream(archive), targetDirectory); in expand()
120 public void expand(String format, InputStream archive, File targetDirectory) in expand() method in Expander
122expand(new ArchiveStreamFactory().createArchiveInputStream(format, archive), targetDirectory); in expand()
135 public void expand(String format, SeekableByteChannel archive, File targetDirectory) in expand() method in Expander
[all …]
/external/python/cpython2/Tools/webchecker/
Dtktools.py85 frame.pack(fill=BOTH, expand=1)
96 vbar.pack(in_=vbarframe, expand=1, fill=Y, side=TOP)
135 fill=BOTH, expand=1, wrap=WORD, pack=1, argument
156 widget.pack(expand=expand, fill=fill, side=LEFT)
164 fill=BOTH, expand=1, pack=1, class_=None, name=None, argument
178 widget.pack(expand=expand, fill=fill, side=LEFT)
186 fill=BOTH, expand=1, pack=1, class_=None, name=None, argument
202 widget.pack(expand=expand, fill=fill, side=LEFT)
233 entry.pack(side=LEFT, fill=X, expand=1)
268 entry.pack(side=RIGHT, expand=1, fill=X)
[all …]
/external/llvm-project/clang/unittests/Format/
DMacroExpanderTest.cpp22 std::string expand(MacroExpander &Macros, llvm::StringRef Name, in expand() function in clang::format::__anon02b5ee4e0111::MacroExpanderTest
25 return text(Macros.expand(Lex.id(Name), lexArgs(Args)));
97 EXPECT_EQ("", expand(*Macros, "A")); in TEST_F()
98 EXPECT_EQ("b", expand(*Macros, "B")); in TEST_F()
99 EXPECT_EQ("c+c", expand(*Macros, "C")); in TEST_F()
100 EXPECT_EQ("", expand(*Macros, "D")); in TEST_F()
108 EXPECT_EQ("", expand(*Macros, "A", {"a"})); in TEST_F()
109 EXPECT_EQ("b1+b2+b3", expand(*Macros, "B", {"b1", "b2 + b3"})); in TEST_F()
110 EXPECT_EQ("x+", expand(*Macros, "B", {"x"})); in TEST_F()
120 auto Result = Macros->expand(A, AArgs); in TEST_F()
[all …]
/external/skia/site/docs/user/sample/
Dpdf.md30 + **expand** means to implement something in a non-PDF-ish way.
31 This may mean to rasterize vector graphics, to expand paths with
43 <tr><th>SkPathEffect</th> <td>ignore</td> <td>n/a</td> <td>expand</td></tr>
44 <tr><th>SkColorFilter</th> <td>ignore</td> <td>expand</td> <td>ignore</td></tr>
45 <tr><th>SkImageFilter</th> <td>expand</td> <td>expand</td> <td>expand</td></tr>
47 <tr><th>non-gradient SkShader</th> <td>expand</td> <td>n/a</td> <td>expand</td></tr>
63 - *drawTextOnPath* — expand. (Text-as-text is lost.)
/external/skqp/site/user/sample/
Dpdf.md50 + **expand** means to implement something in a non-PDF-ish way.
51 This may mean to rasterize vector graphics, to expand paths with
63 <tr><th>SkPathEffect</th> <td>ignore</td> <td>n/a</td> <td>expand</td></tr>
64 <tr><th>SkColorFilter</th> <td>ignore</td> <td>expand</td> <td>ignore</td></tr>
65 <tr><th>SkImageFilter</th> <td>expand</td> <td>expand</td> <td>expand</td></tr>
67 <tr><th>non-gradient SkShader</th> <td>expand</td> <td>n/a</td> <td>expand</td></tr>
83 - *drawTextOnPath* — expand. (Text-as-text is lost.)
/external/llvm/test/CodeGen/MIR/Generic/
DmultiRunPass.mir1 # RUN: llc -run-pass expand-isel-pseudos -run-pass peephole-opt -debug-pass=Arguments -o - %s 2>&1…
2 # RUN: llc -run-pass expand-isel-pseudos,peephole-opt -debug-pass=Arguments -o - %s 2>&1 | FileChec…
3 # RUN: llc -run-pass peephole-opt -run-pass expand-isel-pseudos -debug-pass=Arguments -o - %s 2>&1 …
4 # RUN: llc -run-pass peephole-opt,expand-isel-pseudos -debug-pass=Arguments -o - %s 2>&1 | FileChec…
10 # PSEUDO_PEEPHOLE: -expand-isel-pseudos -peephole-opt
11 # PEEPHOLE_PSEUDO: -peephole-opt -expand-isel-pseudos
/external/tensorflow/tensorflow/compiler/xla/tests/
Dall_reduce_test.cc115 …%reshape.5 = u8[1]{0} reshape(u8[] %constant.4), metadata={op_type="aten::expand" source_file="mai… in XLA_TEST_F()
116 …broadcast(u8[1]{0} %reshape.5), dimensions={0}, metadata={op_type="aten::expand" source_file="main… in XLA_TEST_F()
117 …%reshape.7 = u8[] reshape(u8[1]{0} %broadcast.6), metadata={op_type="aten::expand" source_file="ma… in XLA_TEST_F()
118 …]{0} broadcast(u8[] %reshape.7), dimensions={}, metadata={op_type="aten::expand" source_file="main… in XLA_TEST_F()
157 …%reshape.5 = s32[1]{0} reshape(s32[] %constant.4), metadata={op_type="aten::expand" source_file="m… in XLA_TEST_F()
158 …roadcast(s32[1]{0} %reshape.5), dimensions={0}, metadata={op_type="aten::expand" source_file="main… in XLA_TEST_F()
159 …%reshape.7 = s32[] reshape(s32[1]{0} %broadcast.6), metadata={op_type="aten::expand" source_file="… in XLA_TEST_F()
160 …{0} broadcast(s32[] %reshape.7), dimensions={}, metadata={op_type="aten::expand" source_file="main… in XLA_TEST_F()
/external/rust/crates/ring/tests/
Dhkdf_tests.rs67 .expand(&[&info], My(expected_out.len())) in hkdf_tests()
87 let okm = prk.expand(&[b"info"], My(0)).unwrap(); in hkdf_output_len_tests()
96 let okm = prk.expand(&[b"info"], My(max_out_len)).unwrap(); in hkdf_output_len_tests()
103 assert!(prk.expand(&[b"info"], My(max_out_len + 1)).is_err()); in hkdf_output_len_tests()
108 let okm = prk.expand(&[b"info"], My(2)).unwrap(); in hkdf_output_len_tests()
115 let okm = prk.expand(&[b"info"], My(2)).unwrap(); in hkdf_output_len_tests()
122 let okm = prk.expand(&[b"info"], My(2)).unwrap(); in hkdf_output_len_tests()
/external/llvm-project/llvm/lib/Target/AVR/
DAVRExpandPseudoInsts.cpp62 template <unsigned OP> bool expand(Block &MBB, BlockIt MBBI);
259 bool AVRExpandPseudo::expand<AVR::ADDWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anonb8746b9f0111::AVRExpandPseudo
264 bool AVRExpandPseudo::expand<AVR::ADCWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anonb8746b9f0111::AVRExpandPseudo
269 bool AVRExpandPseudo::expand<AVR::SUBWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anonb8746b9f0111::AVRExpandPseudo
274 bool AVRExpandPseudo::expand<AVR::SUBIWRdK>(Block &MBB, BlockIt MBBI) { in expand() function in __anonb8746b9f0111::AVRExpandPseudo
321 bool AVRExpandPseudo::expand<AVR::SBCWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anonb8746b9f0111::AVRExpandPseudo
326 bool AVRExpandPseudo::expand<AVR::SBCIWRdK>(Block &MBB, BlockIt MBBI) { in expand() function in __anonb8746b9f0111::AVRExpandPseudo
364 bool AVRExpandPseudo::expand<AVR::ANDWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anonb8746b9f0111::AVRExpandPseudo
369 bool AVRExpandPseudo::expand<AVR::ANDIWRdK>(Block &MBB, BlockIt MBBI) { in expand() function in __anonb8746b9f0111::AVRExpandPseudo
374 bool AVRExpandPseudo::expand<AVR::ORWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anonb8746b9f0111::AVRExpandPseudo
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/
DAVRExpandPseudoInsts.cpp62 template <unsigned OP> bool expand(Block &MBB, BlockIt MBBI);
259 bool AVRExpandPseudo::expand<AVR::ADDWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anonccded0930111::AVRExpandPseudo
264 bool AVRExpandPseudo::expand<AVR::ADCWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anonccded0930111::AVRExpandPseudo
269 bool AVRExpandPseudo::expand<AVR::SUBWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anonccded0930111::AVRExpandPseudo
274 bool AVRExpandPseudo::expand<AVR::SUBIWRdK>(Block &MBB, BlockIt MBBI) { in expand() function in __anonccded0930111::AVRExpandPseudo
321 bool AVRExpandPseudo::expand<AVR::SBCWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anonccded0930111::AVRExpandPseudo
326 bool AVRExpandPseudo::expand<AVR::SBCIWRdK>(Block &MBB, BlockIt MBBI) { in expand() function in __anonccded0930111::AVRExpandPseudo
364 bool AVRExpandPseudo::expand<AVR::ANDWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anonccded0930111::AVRExpandPseudo
369 bool AVRExpandPseudo::expand<AVR::ANDIWRdK>(Block &MBB, BlockIt MBBI) { in expand() function in __anonccded0930111::AVRExpandPseudo
374 bool AVRExpandPseudo::expand<AVR::ORWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anonccded0930111::AVRExpandPseudo
[all …]
/external/rust/crates/async-trait/src/
Dlib.rs320 mod expand; module
326 use crate::expand::expand;
336 expand(&mut item, args.local); in async_trait()
/external/python/uritemplates/
DREADME.rst10 from uritemplate import URITemplate, expand
16 print(t.expand(gist_id='123456'))
20 print(expand(gist_uri, gist_id='123456'))
23 t.expand({'gist_id': '123456'})
24 print(expand(gist_uri, {'gist_id': '123456'}))
35 self.api_url = url.expand(login=name)
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/examples/
DExpanderTest.java61 new Expander().expand("7z", archive, resultDir); in sevenZTwoFileVersion()
68 new Expander().expand(archive, resultDir); in sevenZTwoFileVersionWithAutoDetection()
76 new Expander().expand("7z", i, resultDir); in sevenZInputStreamVersion()
84 new Expander().expand(i, resultDir); in sevenZInputStreamVersionWithAutoDetection()
92 new Expander().expand("7z", c, resultDir); in sevenZChannelVersion()
101 new Expander().expand(f, resultDir); in sevenZFileVersion()
110 new Expander().expand(f, resultDir); in zipFileVersion()
119 new Expander().expand(f, resultDir); in fileCantEscapeViaAbsolutePath()
130 new Expander().expand(f, resultDir); in fileCantEscapeDoubleDotPath()
147 new Expander().expand(f, resultDir); in fileCantEscapeDoubleDotPathWithSimilarSibling()
/external/eigen/Eigen/src/SparseLU/
DSparseLU_Memory.h63 Index SparseLUImpl<Scalar,StorageIndex>::expand(VectorType& vec, Index& length, Index nbElts, Inde… in expand() function
180 if( (expand<ScalarVector>(glu.lusup, glu.nzlumax, 0, 0, num_expansions)<0) in memInit()
181 || (expand<ScalarVector>(glu.ucol, glu.nzumax, 0, 0, num_expansions)<0) in memInit()
182 || (expand<IndexVector> (glu.lsub, glu.nzlmax, 0, 0, num_expansions)<0) in memInit()
183 || (expand<IndexVector> (glu.usub, glu.nzumax, 0, 1, num_expansions)<0) ) in memInit()
213 failed_size = this->expand<VectorType>(vec, maxlen, nbElts, 1, num_expansions); in memXpand()
215 failed_size = this->expand<VectorType>(vec, maxlen, nbElts, 0, num_expansions); in memXpand()
/external/mesa3d/src/compiler/glsl/glcpp/tests/
D037-finalize-unexpanded-macro.c1 #define expand(x) expand(x once) macro
3 foo(expand(just))
/external/python/uritemplates/tests/
Dtest_uritemplate.py2 from uritemplate import URITemplate, expand, partial, variables
373 self.assertEqual(t.expand(v['expansion']), v['expected'])
397 self.assertEqual(t.expand(), uri)
398 self.assertEqual(t.expand(users='foo'), uri)
422 self.assertEqual(t.expand(user='sigmavirus24'), expanded)
424 self.assertEqual(v.expand({'user': None}), {'/user': ''})
430 t.expand({'repo': 'github3.py'}, user='sigmavirus24'),
449 self.assertEqual(t.expand(),
451 self.assertEqual(t.expand(user='lukasa'),
543 t.expand(args, key=1)
[all …]
/external/skqp/src/compute/skc/platforms/cl_12/
Dcq_pool_cl.c154 skc_uint expand) in skc_cq_pool_expand() argument
157 fprintf(stderr,"Expanding the cq_pool by: %u (%u)\n",expand,pool->size); in skc_cq_pool_expand()
164 pool->size += expand; in skc_cq_pool_expand()
167 pool->writes = expand; in skc_cq_pool_expand()
169 for (skc_uint ii=0; ii<expand; ii++) in skc_cq_pool_expand()
/external/apache-http/src/org/apache/http/util/
DCharArrayBuffer.java63 private void expand(int newlen) { in expand() method in CharArrayBuffer
82 expand(newlen); in append()
95 expand(newlen); in append()
118 expand(newlen); in append()
138 expand(newlen); in append()
192 expand(this.len + required); in ensureCapacity()

12345678910>>...51