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

1 2

  /external/clang/test/Misc/
include-stack-for-note-flag.cpp 12 bool macro(int x, int y) { function
21 // STACK: note: expanded from macro
28 // STACKLESS: note: expanded from macro
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
MacroExpander.h 15 #include "Macro.h"
38 bool pushMacro(const Macro& macro, const Token& identifier);
41 bool expandMacro(const Macro& macro,
46 bool collectMacroArgs(const Macro& macro,
49 void replaceMacroParams(const Macro& macro,
55 const Macro* macro member in struct:pp::MacroExpander::MacroContext
    [all...]
Preprocessor.cpp 14 #include "Macro.h"
75 Macro macro; local
76 macro.predefined = true;
77 macro.type = Macro::kTypeObj;
78 macro.name = name;
79 macro.replacements.push_back(token);
81 mImpl->macroSet[name] = macro;
MacroExpander.cpp 82 const Macro& macro = iter->second; local
83 if (macro.disabled)
89 if ((macro.type == Macro::kTypeFunc) && !isNextTokenLeftParen())
91 // If the token immediately after the macro name is not a '(',
92 // this macro should not be expanded.
96 pushMacro(macro, *token);
109 // First pop all empty macro contexts.
151 bool MacroExpander::pushMacro(const Macro& macro, const Token& identifier
    [all...]
DirectiveParser.cpp 351 Macro macro; local
352 macro.type = Macro::kTypeObj;
353 macro.name = token->text;
358 // Function-like macro. Collect arguments.
359 macro.type = Macro::kTypeFunc;
364 macro.parameters.push_back(token->text);
385 macro.replacements.push_back(*token)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/ext/macros/
MacroGroup.java 32 private List<Macro> macros;
40 macros = new ArrayList<Macro>();
44 public void addMacro(Macro macro) {
45 macros.add(macro);
48 public void removeMacro(Macro macro) {
49 macros.remove(macro);
52 public Macro getMacroByTitle(String title) {
53 Collection<Macro> col = Collections.unmodifiableList(macros);
56 Macro macro = (Macro)iter.next(); local
    [all...]
Macros.java 93 * An IQProvider for Macro packets.
126 public Macro parseMacro(XmlPullParser parser) throws Exception {
127 Macro macro = new Macro(); local
134 macro.setTitle(parser.getText());
137 macro.setDescription(parser.nextText());
140 macro.setResponse(parser.nextText());
143 macro.setType(Integer.valueOf(parser.nextText()).intValue());
147 if (parser.getName().equals("macro")) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
r600_texture.c 593 enum radeon_bo_layout micro, macro; local
606 rscreen->ws->buffer_get_tiling(buf, &micro, &macro,
612 if (macro == RADEON_LAYOUT_TILED)
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_texture.c 593 enum radeon_bo_layout micro, macro; local
606 rscreen->ws->buffer_get_tiling(buf, &micro, &macro,
612 if (macro == RADEON_LAYOUT_TILED)
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
TemplateInterpreter.java 56 import com.google.clearsilver.jsilver.template.Macro;
430 * &lt;?cs def:someMacro(x,y) &gt; ... &lt;?cs /def &gt; command. Define a macro (available for
441 throw new JSilverInterpreterException("Invalid name for macro '" + macroName
446 // TODO: Should we enforce that macro args can't repeat the same
467 * &lt;?cs call:someMacro(x,y) command. Call a macro. Need to create a new variable scope to hold
468 * the local variables defined by the parameters of the macro definition
473 Macro macro = context.findMacro(macroName); local
475 // Make sure that the number of arguments passed to the macro match the
477 if (node.getArguments().size() != macro.getArgumentCount())
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/template/
DefaultRenderingContext.java 57 private Map<String, Macro> macros = new HashMap<String, Macro>();
185 public void registerMacro(String name, Macro macro) {
186 macros.put(name, macro);
190 public Macro findMacro(String name) {
191 Macro macro = macros.get(name); local
192 if (macro == null) {
193 throw new JSilverInterpreterException("No such macro: " + name)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_texture.c 371 printf("CMASK: macro tile width = %u, macro tile height = %u, "
526 enum radeon_bo_layout micro, macro; local
539 rscreen->ws->buffer_get_tiling(buf, &micro, &macro,
545 if (macro == RADEON_LAYOUT_TILED)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
glcpp.h 141 macro_t *macro; member in struct:expansion_node
  /external/mesa3d/src/gallium/drivers/r600/
r600_texture.c 371 printf("CMASK: macro tile width = %u, macro tile height = %u, "
526 enum radeon_bo_layout micro, macro; local
539 rscreen->ws->buffer_get_tiling(buf, &micro, &macro,
545 if (macro == RADEON_LAYOUT_TILED)
    [all...]
  /external/mesa3d/src/glsl/glcpp/
glcpp.h 141 macro_t *macro; member in struct:expansion_node
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 31 aTReg(1), reorder(true), macro(true) {
41 bool isMacro() {return macro;}
42 void setMacro() {macro = true;}
43 void setNomacro() {macro = false;}
48 bool macro; member in class:__anon23806::MipsAssemblerOptions
    [all...]
  /external/mksh/src/
funcs.c 1510 bool macro = false; local
    [all...]
edit.c 863 #define AEDIT &aedit /* area for kill ring and macro defns */
936 static char *(*x_atab)[X_TABSZ]; /* macro definitions */
944 static char *macroptr; /* bind key macro active? */
1232 /* avoid bind key macro recursion */
3490 static struct macro_state macro; variable in typeref:struct:macro_state
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glcpp-parse.c 118 const char *macro,
124 const char *macro,
193 /* Perform macro expansion in-place on the given list. */
2004 macro_t *macro = hash_table_find (parser->defines, (yyvsp[(2) - (3)].str)); local
2074 macro_t *macro = hash_table_find (parser->defines, (yyvsp[(2) - (4)].str)); local
2085 macro_t *macro = hash_table_find (parser->defines, (yyvsp[(2) - (4)].str)); local
2161 macro_t *macro = hash_table_find (parser->defines, "__VERSION__"); local
3862 macro_t *macro; local
3977 macro_t *macro; local
4214 macro_t *macro, *previous; local
4247 macro_t *macro, *previous; local
4323 macro_t *macro; local
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 118 case clang::ento::PathDiagnosticPiece::Macro:
183 case PathDiagnosticPiece::Macro: {
184 PathDiagnosticMacroPiece *macro = cast<PathDiagnosticMacroPiece>(piece); local
185 if (!removeUnneededCalls(macro->subPieces, R, LCM))
852 // PathDiagnosticPieces that occur within a macro.
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasm-pp.c 2 /* preproc.c macro preprocessor for the Netwide Assembler
16 * from a macro expansion
24 * expand_mmac_params is used to expand %1 etc., unless a macro is being
60 * Store the definition of a single-line macro.
74 * Store the definition of a multi-line macro. This is also used to
97 int nolist; /* is this macro listing-inhibited? */
147 SMacro *mac; /* associated macro for TOK_SMAC_END */
158 * Multi-line macro definitions are stored as a linked list of
165 * if walked, would give the macro lines in reverse order; this
166 * means that we can walk the list when expanding a macro, and thu
5289 char *macro; local
    [all...]
  /prebuilts/devtools/tools/lib/
jsilver-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/jsilver/jsilver/1.0.0/
jsilver-1.0.0.jar 
  /prebuilts/tools/common/freemarker/
freemarker-2.3.19.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 

Completed in 1488 milliseconds

1 2