HomeSort by relevance Sort by last modified time
    Searched defs:Macro (Results 1 - 25 of 35) sorted by null

1 2

  /external/jsilver/src/com/google/clearsilver/jsilver/template/
Macro.java 22 * An executable macro. This exhibits all the same characteristics of a Template.
24 public interface Macro extends Template {
27 * Name of macro (e.g. showTable). Used to generate error messages.
32 * Get the name of the nth argument defined in the macro. Throws exception if the argument is not
38 * Return the number of arguments this macro expects. Must be equal to the number of arguments
  /external/chromium-trace/catapult/third_party/webapp2/tests/resources/jinja2_templates_compiled/
tmpl_3a79873b1b49be244fd5444b1258ce348be26de8.py 2 from jinja2.runtime import LoopContext, TemplateReference, Macro, Markup, TemplateRuntimeError, missing, concat, escape, markup_join, unicode_join, to_string, TemplateNotFound
  /external/clang/include/clang/Lex/
TokenLexer.h 25 /// TokenLexer - This implements a lexer that returns tokens from a macro body
27 /// macro expansion and _Pragma handling, for example.
30 /// Macro - The macro we are expanding from. This is null if expanding a
33 MacroInfo *Macro;
35 /// ActualArgs - The actual arguments specified for a function-like macro, or
43 /// Tokens - This is the pointer to an array of tokens that the macro is
46 /// the macro definition we are lexing from, a cache buffer that is owned by
62 /// ExpandLocStart/End - The source location range where this macro was
67 /// was reserved for the current macro expansion
    [all...]
MacroInfo.h 31 /// \brief Encapsulates the data about a macro definition (e.g. its tokens).
36 // State set when the macro is defined.
38 /// \brief The location the macro is defined.
40 /// \brief The location of the last token in the macro.
43 /// \brief The list of arguments for a function-like macro.
48 /// macro, this includes the \c __VA_ARGS__ identifier on the list.
54 /// \brief This is the list of tokens that the macro is defined to.
57 /// \brief Length in characters of the macro definition.
61 /// \brief True if this macro is function-like, false if it is object-like.
64 /// \brief True if this macro is of the form "#define X(...)" o
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
SyntaxHighlighting.h 20 enum HighlightColor { Address, String, Tag, Attribute, Enumerator, Macro };
  /external/clang/lib/Lex/
PPExpressions.cpp 77 /// indicates the macro that was checked.
111 MacroDefinition Macro = PP.getMacroDefinition(II);
112 Result.Val = !!Macro;
115 // If there is a macro, mark it used.
117 PP.markMacroAsUsed(Macro.getMacroInfo());
119 // Save macro token for callback.
145 Callbacks->Defined(macroToken, Macro,
175 // 'defined' or if it is a macro. Note that we check here because many
183 // preprocessor keywords and it wasn't macro expanded, it turns
734 // 'DisableMacroExpansion' is true, then we must be in a macro argument lis
    [all...]
  /external/clang/tools/libclang/
CIndexHigh.cpp 132 /// \brief For a macro \arg Loc, returns the file spelling location and sets
133 /// to \arg isMacroArg whether the spelling resides inside a macro definition or
134 /// a macro argument.
203 // FIXME: For a macro definition make sure that all expansions
250 const IdentifierInfo *Macro;
254 const IdentifierInfo *Macro,
256 : Unit(Unit), File(File), Macro(Macro), visitor(visitor) { }
268 const IdentifierInfo *Macro = nullptr;
270 Macro = getCursorMacroDefinition(cursor)->getName()
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFContext.h 51 std::unique_ptr<DWARFDebugMacro> Macro;
  /external/opencv3/3rdparty/jinja2/
runtime.py 22 __all__ = ['LoopContext', 'TemplateReference', 'Macro', 'Markup',
377 class Macro(object):
378 """Wraps a macro function."""
425 raise TypeError('macro %r takes no keyword argument %r' %
430 raise TypeError('macro %r takes not more than %d argument(s)' %
nodes.py 291 class Macro(Stmt):
292 """A macro definition. `name` is the name of the macro, `args` a list of
294 a list of nodes for the macro body.
300 """Like a macro without a name but a call instead. `call` is called with
301 the unnamed macro as `caller` argument this node holds.
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 339 enum Kind { ControlFlow, Event, Macro, Call };
455 return P->getKind() == Event || P->getKind() == Macro;
690 : PathDiagnosticSpotPiece(pos, "", Macro) {}
705 return P->getKind() == Macro;
  /external/clang/lib/Parse/
Parser.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 84 case PathDiagnosticPiece::Macro: {
85 PathDiagnosticMacroPiece *Macro = cast<PathDiagnosticMacroPiece>(Piece);
87 Macro->subPieces.flattenTo(Primary, Primary, ShouldFlattenMacros);
91 Macro->subPieces.flattenTo(Primary, NewPath, ShouldFlattenMacros);
93 Macro->subPieces = NewPath;
128 // If the call is within a macro, don't do anything (for now).
246 else if (const PathDiagnosticMacroPiece *macro =
248 WorkList.push_back(&macro->subPieces);
351 case clang::ento::PathDiagnosticPiece::Macro:
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp 451 /// \brief Collect the macro definitions provided by the given preprocessor
458 StringRef Macro = PPOpts.Macros[I].first;
461 std::pair<StringRef, StringRef> MacroPair = Macro.split('=');
465 // For an #undef'd macro, we only care about the name.
474 // For a #define'd macro, figure out the actual definition.
475 if (MacroName.size() == Macro.size())
499 // Check macro definitions.
507 // Dig out the macro definition in the existing preprocessor options.
511 // Check whether we know anything about this macro name or not.
533 // If the macro was defined in one but undef'd in the other, we have
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-core/1.0/
doxia-core-1.0.jar 
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 48 ATReg(1), Reorder(true), Macro(true), Features(Features_) {}
53 Macro = Opts->isMacro();
70 bool isMacro() const { return Macro; }
71 void setMacro() { Macro = true; }
72 void setNoMacro() { Macro = false; }
87 bool Macro;
    [all...]
  /external/guice/lib/build/
bnd-0.0.384.jar 
  /prebuilts/tools/common/m2/repository/biz/aQute/bnd/1.50.0/
bnd-1.50.0.jar 
  /prebuilts/tools/common/m2/repository/biz/aQute/bndlib/1.50.0/
bndlib-1.50.0.jar 
  /external/guice/extensions/struts2/lib/
freemarker-2.3.16.jar 
  /prebuilts/tools/common/m2/repository/org/freemarker/freemarker/2.3.20/
freemarker-2.3.20.jar 
  /prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.5/
velocity-1.5.jar 
  /frameworks/opt/setupwizard/tools/docs/
jsilver.jar 

Completed in 615 milliseconds

1 2