/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/ |
p13.cpp | 24 int (...f2)(int); // expected-error{{only function and template parameters can be parameter packs}} 27 int ...x; // expected-error{{only function and template parameters can be parameter packs}} 28 if (int ...y = 17) { } // expected-error{{only function and template parameters can be parameter packs}} 30 for (int ...z = 0; z < 10; ++z) { } // expected-error{{only function and template parameters can be parameter packs}} 33 } catch (int ...e) { // expected-error{{only function and template parameters can be parameter packs}} 39 Types ...members; // expected-error{{only function and template parameters can be parameter packs}} \ 47 void f4(T ...args); // expected-error{{type 'T' of function parameter pack does not contain any unexpanded parameter packs}}
|
p14.cpp | 32 // FIXME: Once function parameter packs are implemented, we can test all of the disambiguation
|
/external/nist-sip/java/gov/nist/javax/sip/message/ |
Content.java | 17 * The default packing method. This packs the content to be appended to the
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_audioop.py | 17 packs = { variable 27 2: packs[2](0, 0x1234, 0x4567, -0x4567, 0x7fff, -0x8000, -1), 28 4: packs[4](0, 0x12345678, 0x456789ab, -0x456789ab, 44 p = packs[w] 55 p = packs[w] 68 self.assertEqual(audioop.maxpp(packs[w](*range(100)), w), 0) 69 self.assertEqual(audioop.maxpp(packs[w](9, 10, 5, 5, 0, 1), w), 10) 76 p = packs[w] 84 self.assertEqual(audioop.avg(packs[4](0x50000000, 0x70000000), 4), 86 self.assertEqual(audioop.avg(packs[4](-0x50000000, -0x70000000), 4) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_audioop.py | 17 packs = { variable 27 2: packs[2](0, 0x1234, 0x4567, -0x4567, 0x7fff, -0x8000, -1), 28 4: packs[4](0, 0x12345678, 0x456789ab, -0x456789ab, 44 p = packs[w] 55 p = packs[w] 68 self.assertEqual(audioop.maxpp(packs[w](*range(100)), w), 0) 69 self.assertEqual(audioop.maxpp(packs[w](9, 10, 5, 5, 0, 1), w), 10) 76 p = packs[w] 84 self.assertEqual(audioop.avg(packs[4](0x50000000, 0x70000000), 4), 86 self.assertEqual(audioop.avg(packs[4](-0x50000000, -0x70000000), 4) [all...] |
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/ |
p12.cpp | 5 // parameter packs is independent of the number of deduced arguments 6 // for those template parameter packs.
|
/external/clang/test/CodeGenCXX/ |
mangle-variadic-templates.cpp | 21 // Mangling for template argument packs 30 // Mangling function parameter packs 39 // Mangling non-trivial function parameter packs
|
variadic-templates.cpp | 12 // PR10260 - argument packs that expand to nothing
|
/external/jmonkeyengine/engine/src/terrain/Common/MatDefs/Terrain/ |
HeightBasedTerrain.j3md | 9 // it might not be the most elegant way for storing these 3 values, but it packs the data nicely :)
|
/external/libnfc-nxp/src/ |
nfc_osal_deferred_call.h | 26 *\note: This API packs upper timer specific callback notification information and post
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
p5.cpp | 10 // name one or more parameter packs that are not expanded by a nested 15 typedef pair<Types, int...> expand_no_packs; // expected-error{{pack expansion does not contain any unexpanded parameter packs}} 16 typedef pair<pair<Types..., int>..., int> expand_with_expanded_nested; // expected-error{{pack expansion does not contain any unexpanded parameter packs}} 19 // All of the parameter packs expanded by a pack expansion shall have 25 typedef tuple<pair<Types, OtherTypes>...> type; // expected-error{{pack expansion contains parameter packs 'Types' and 'OtherTypes' that have different lengths (3 vs. 2)}} 40 // Test for unexpanded parameter packs in each of the type nodes. 130 // FIXME: Test for unexpanded parameter packs in each of the expression nodes. 162 // Test for unexpanded parameter packs in declarations. 226 // FIXME: Test for unexpanded parameter packs in each of the statements. 258 (void)static_cast<Types&>(values); // expected-error{{expression contains unexpanded parameter packs 'Types' and 'values'} [all...] |
/external/clang/lib/Sema/ |
SemaTemplateVariadic.cpp | 26 // Visitor that collects unexpanded parameter packs 30 /// \brief A class that collects unexpanded parameter packs. 49 // Recording occurrences of (unexpanded) parameter packs. 52 /// \brief Record occurrences of template type parameter packs. 59 /// \brief Record occurrences of template type parameter packs 72 /// parameter packs in an expression. 80 /// \brief Record occurrences of template template parameter packs. 108 // Pruning the search for unexpanded parameter packs. 112 /// do not contain unexpanded parameter packs. 122 /// unexpanded parameter packs [all...] |
/external/chromium_org/chrome/browser/managed_mode/ |
managed_mode_site_list.h | 27 // required to use it. All sites from all installed content packs together with 31 // union of the whitelists in all sites in all content packs. See
|
/development/ndk/sources/android/libportable/arch-mips/ |
jboffsets.h | 8 * packs the register together.
|
/external/chromium_org/chrome/browser/extensions/ |
test_extension_dir.h | 31 // Packs the extension into a .crx, and returns the path to that
|
/external/chromium_org/third_party/angle/src/compiler/ |
VariablePacker.cpp | 206 // Packs the 4 column variables. 220 // Packs the 3 column variables. 236 // Packs the 2 column variables. 264 // Packs the 1 column variables.
|
/external/clang/test/CXX/expr/expr.unary/expr.sizeof/ |
p5-0x.cpp | 16 // Test instantiation involving function parameter packs.
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
p21.cpp | 4 // Note: Template argument deduction involving parameter packs
|
/external/openfst/src/include/fst/script/ |
arcsort.h | 21 #include <fst/script/arg-packs.h>
|
closure.h | 20 #include <fst/script/arg-packs.h>
|
concat.h | 20 #include <fst/script/arg-packs.h>
|
connect.h | 20 #include <fst/script/arg-packs.h>
|
convert.h | 22 #include <fst/script/arg-packs.h>
|
decode.h | 22 #include <fst/script/arg-packs.h>
|
encode.h | 22 #include <fst/script/arg-packs.h>
|