HomeSort by relevance Sort by last modified time
    Searched defs:Expansion (Results 1 - 13 of 13) sorted by null

  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 23 // The pseudo expansion really should take a list of dags, not just
45 assert(BaseIdx == 0 && "Named subargument in pseudo expansion?!");
49 "' does not match expansion operand type '" +
70 llvm_unreachable("Unhandled pseudo-expansion argument type!");
81 assert(Dag && "Missing result instruction in pseudo expansion!");
161 PseudoExpansion &Expansion = Expansions[i];
162 CodeGenInstruction &Source = Expansion.Source;
163 CodeGenInstruction &Dest = Expansion.Dest;
174 // expansion DAG.
181 switch (Expansion.OperandMap[MIOpNo + i].Kind)
    [all...]
  /external/clang/lib/AST/
TemplateBase.cpp 437 PackExpansionTypeLoc Expansion
439 Ellipsis = Expansion.getEllipsisLoc();
441 TypeLoc Pattern = Expansion.getPatternLoc();
442 NumExpansions = Expansion.getTypePtr()->getNumExpansions();
458 PackExpansionExpr *Expansion
460 Expr *Pattern = Expansion->getPattern();
461 Ellipsis = Expansion->getEllipsisLoc();
462 NumExpansions = Expansion->getNumExpansions();
  /external/clang/lib/Lex/
TokenLexer.cpp 72 // expanded. The macro must be disabled only after argument pre-expansion of
258 // expansion.
286 // expansion.
308 // Discard the argument token and skip (don't copy to the expansion
360 // Lexing off the end of the macro, pop this macro off the expansion stack.
427 // Handle recursive expansion!
436 // from a macro expansion.
557 // Explicitly convert the token location to have proper expansion
605 // Now that we got the result token, it will be subject to expansion. Since
617 /// expansion stack, return 2. If the next unexpanded token is a '(', retur
    [all...]
Lexer.cpp 104 // of tokens (e.g. identifiers, thus disabling macro expansion). It is used
157 /// _Pragma expansion. This has a variety of magic semantics that this method
162 /// expansion location that indicates where all lexed tokens should be
238 /// after trigraph expansion and escaped-newline folding. In particular, this
286 /// after trigraph expansion and escaped-newline folding. In particular, this
398 // If this comes from a macro expansion, we really do want the macro name, not
662 // Figure out how many physical characters away the specified expansion
725 return SourceLocation(); // Points inside the macro expansion.
738 /// token of the macro expansion.
764 /// token of the macro expansion
    [all...]
  /external/clang/lib/Rewrite/
HTMLRewrite.cpp 302 " .expansion { display: none; }\n"
303 " .macro:hover .expansion { display: block; border: 2px solid #FF0000; "
514 // Okay, we have the first token of a macro expansion: highlight the
515 // expansion by inserting a start tag before the macro expansion and
527 "Start and end of expansion must be in the same ultimate file!");
529 std::string Expansion = EscapeText(TmpPP.getSpelling(Tok));
530 unsigned LineLen = Expansion.size();
542 // Insert a newline if the macro expansion is getting large.
544 Expansion += "<br>"
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p5.cpp 7 // expansion is expanded by that pack expansion. An appearance of the
9 // enclosing pack expansion. The pattern of a pack expansion shall
11 // pack expansion.
13 struct Expansion {
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)}
    [all...]
  /external/clang/include/clang/Basic/
SourceManager.h 42 /// location, an expansion location, and a presumed location.
51 /// The expansion location is the line in the source code where the macro
263 /// ExpansionInfo - Each ExpansionInfo encodes the expansion location - where
272 /// ExpansionLocStart/ExpansionLocEnd - In a macro expansion, these
273 /// indicate the start and end of the expansion. In object-like macros,
274 /// these will be the same. In a function-like macro expansion, the start
308 /// create - Return a ExpansionInfo for an expansion. Start and End specify
309 /// the expansion range (where the macro is expanded), and SpellingLoc
311 /// come from). All three can refer to normal File SLocs or expansion
322 /// createForMacroArg - Return a special ExpansionInfo for the expansion o
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 420 // Use up FileID #0 as an invalid expansion.
688 // location or are "near" the cached expansion location. 2) others are just
716 // If this isn't an expansion, remember it. We have good locality across
757 // If this isn't a macro expansion, remember it. We have good locality
840 // expansion (e.g. the 5th character of the token) we do not want to add
841 // this offset when going to the expansion location. The expansion
    [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 204 /// \brief The location of the ellipsis, if this is a pack expansion.
207 /// \brief The number of elements this pack expansion will expand to, if
208 /// this is a pack expansion and is known.
211 /// \brief Determines whether this dictionary element is a pack expansion.
226 /// \brief Data that describes an element that is a pack expansion, used if any
230 /// expansion.
234 /// expansion will expand to (+1).
244 /// be an array of pack expansion data following the array of
246 /// any) and number of elements in the expansion (if known). If
306 const ExpansionData &Expansion = getExpansionData()[Index]
    [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 556 // by this pack expansion, then clear out the deduction.
592 // pack expansion.
691 const PackExpansionType *Expansion
693 if (!Expansion) {
735 // parameter packs expanded by the pack expansion.
737 QualType Pattern = Expansion->getPattern();
751 assert(!PackIndices.empty() && "Pack expansion without unexpanded packs?");
754 // expanded by this pack expansion (the outer index) and for each
776 // by this pack expansion, add them to the list of arguments we've deduced
788 // pack expansion
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
TreeTransform.h 211 /// \brief Determine whether we should expand a pack expansion with the
219 /// pack expansion.
222 /// the pack expansion.
235 /// pack expansion after all of the expanded arguments. This is used
240 /// the expanded form of the corresponding pack expansion. This is both an
334 /// derived class permits such expansion) along the way. When pack expansions
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]

Completed in 146 milliseconds