HomeSort by relevance Sort by last modified time
    Searched full:unexpanded (Results 1 - 25 of 156) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p5.mm 5 for (id x in values) { } // expected-error {{expression contains unexpanded parameter pack 'values'}}
6 @synchronized(values) { // expected-error {{expression contains unexpanded parameter pack 'values'}}
7 @throw values; // expected-error {{expression contains unexpanded parameter pack 'values'}}
p5.cpp 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}}
40 // Test for unexpanded parameter packs in each of the type nodes.
43 : public Types, public T // expected-error{{base type contains unexpanded parameter pack 'Types'}}
48 typedef Types *types_pointer; // expected-error{{declaration type contains unexpanded parameter pack 'Types'}}
51 typedef Types (^block_pointer_1)(int); // expected-error{{declaration type contains unexpanded parameter pack 'Types'}}
52 typedef int (^block_pointer_2)(Types); // expected-error{{declaration type contains unexpanded parameter pack 'Types'}}
55 typedef Types &lvalue_ref; // expected-error{{declaration type contains unexpanded parameter pack 'Types'}}
58 typedef Types &&rvalue_ref; // expected-error{{declaration type contains unexpanded parameter pack 'Types'}}
61 typedef Types TestPPName::* member_pointer_1; // expected-error{{declaration type contains unexpanded parameter pack 'Types'}
    [all...]
ext-blocks.cpp 44 return f1(block_args); // expected-error{{expression contains unexpanded parameter pack 'block_args'}}
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 26 // Visitor that collects unexpanded parameter packs
30 /// \brief A class that collects unexpanded parameter packs.
37 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded;
43 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded)
44 : Unexpanded(Unexpanded), InLambda(false) { }
49 // Recording occurrences of (unexpanded) parameter packs.
55 Unexpanded.push_back(std::make_pair(TL.getTypePtr(), TL.getNameLoc()));
66 Unexpanded.push_back(std::make_pair(T, SourceLocation()));
75 Unexpanded.push_back(std::make_pair(E->getDecl(), E->getLocation()))
    [all...]
SemaTemplateInstantiateDecl.cpp 91 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
94 Unexpanded);
97 Unexpanded);
98 assert(!Unexpanded.empty() && "Pack expansion without parameter packs?");
106 Unexpanded, TemplateArgs, Expand,
    [all...]
  /external/clang/test/SemaTemplate/
ms-if-exists.cpp 63 __if_exists(T::operator Ts) { // expected-error{{__if_exists name contains unexpanded parameter pack 'Ts'}}
66 __if_not_exists(Ts::operator T) { // expected-error{{__if_not_exists name contains unexpanded parameter pack 'Ts'}}
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
blocks.mm 96 (void)^(Args args) { // expected-error{{block contains unexpanded parameter pack 'Args'}}
104 ^(Args args) // expected-error{{block contains unexpanded parameter pack 'Args'}}
106 ... // expected-error{{pack expansion does not contain any unexpanded parameter packs}}
112 (void)[](Args args) { // expected-error{{expression contains unexpanded parameter pack 'Args'}}
p23.cpp 14 auto unexp = [values] {}; // expected-error{{initializer contains unexpanded parameter pack 'values'}}
40 auto l1 = [x...] {}; // expected-error{{pack expansion does not contain any unexpanded parameter packs}}
  /external/clang/test/Parser/
cxx0x-ambig.cpp 119 void h(T(...)); // function type, expected-error {{unexpanded parameter pack}}
123 void i(int(T, ...)); // function type, expected-error {{unexpanded parameter pack}}
124 void i(int(T, ...a)); // expected-error {{expected ')'}} expected-note {{to match}} expected-error {{unexpanded parameter pack}}
126 void j(int(int...a)); // expected-error {{does not contain any unexpanded parameter packs}}
127 void j(T(int...)); // expected-error {{unexpanded parameter pack}}
128 void j(T(T...)); // expected-error {{unexpanded parameter pack}}
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p13.cpp 40 // expected-error{{data member type contains unexpanded parameter pack}}
47 void f4(T ...args); // expected-error{{type 'T' of function parameter pack does not contain any unexpanded parameter packs}}
  /libcore/luni/src/main/java/javax/xml/transform/
Templates.java 66 * be returned unexpanded (since there is no context at this point). The
67 * namespace prefixes inside Attribute Value Templates will be unexpanded,
  /external/clang/include/clang/Lex/
MacroArgs.h 30 /// NumUnexpArgTokens - The number of raw, unexpanded tokens for the
74 /// getUnexpArgument - Return a pointer to the first token of the unexpanded
79 /// getArgLength - Given a pointer to an expanded or unexpanded argument,
PTHLexer.h 79 /// isNextPPTokenLParen - Return 1 if the next unexpanded token will return a
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
p2-0x.cpp 67 using U = T*; // expected-error {{declaration type contains unexpanded parameter pack 'T'}}
97 using f = T; // expected-error {{declaration type contains unexpanded parameter pack 'T'}}
  /external/clang/test/SemaObjCXX/
literals.mm 135 id arr1 = @[ args ]; // expected-error{{initializer contains unexpanded parameter pack 'args'}}
148 id dict = @{ args : @17 }; // expected-error{{initializer contains unexpanded parameter pack 'args'}}
objc-container-subscripting.mm 105 arr1[3] = args; // expected-error {{expression contains unexpanded parameter pack 'args'}}
  /external/clang/lib/Lex/
MacroArgs.cpp 63 // Copy the actual unexpanded tokens to immediately after the result ptr.
100 /// getArgLength - Given a pointer to an expanded or unexpanded argument,
111 /// getUnexpArgument - Return the unexpanded tokens for the specified formal.
114 // The unexpanded argument tokens start immediately after the MacroArgs object
165 // this, we set up a fake TokenLexer to lex from the unexpanded argument
  /external/chromium_org/ui/webui/resources/css/
expandable_bubble.css 67 z-index: 3; /* One higher then the close button on an unexpanded bubble. */
  /external/clang/test/SemaCXX/
attr-cxx0x.cpp 26 struct alignas(int...) alignas_expansion_no_packs {}; // expected-error {{pack expansion does not contain any unexpanded parameter packs}}
alias-template.cpp 57 template<typename Z> using U = T*; // expected-error {{declaration type contains unexpanded parameter pack 'T'}}
82 template<typename U> using f = T; // expected-error {{declaration type contains unexpanded parameter pack 'T'}}
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
omxVCCOMM_ExpandFrame_I.c 26 * This function expands a reconstructed frame in-place. The unexpanded
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 29 // A template parameter pack that [contains an unexpanded parameter pack] is a
120 template<template<typename T = Default> class ...Classes> struct Inner { // expected-error {{default argument contains unexpanded parameter pack}} expected-note {{here}}
  /external/chromium_org/ui/webui/resources/js/cr/ui/
expandable_bubble.js 14 * width of the node it is overlapping when unexpanded. Expanded, it is of a
201 // Save the height of the unexpanded bubble, so we can make sure to
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/chromium_org/sandbox/win/tests/validation_tests/
suite.cc 51 // input path can contain unexpanded environment strings. Returns false on any

Completed in 1747 milliseconds

1 2 3 4 5 6 7