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

  /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/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/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/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
cpp.c 219 StoreStr("Macro Redefined");
837 MacroSymbol macro = {0}; local
841 macro.body = NewTokenStream(name, macros->pool);
844 RecordToken(macro.body, CPP_INTCONSTANT, &val);
847 symbol->details.mac = macro;
881 n = NewTokenStream("macro arg", 0);
901 ** return the next token for a macro expanion, handling macro args
927 ** check an identifier (atom) to see if it a macro that should be expanded.
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 171 case clang::ento::PathDiagnosticPiece::Macro:
237 case PathDiagnosticPiece::Macro: {
238 PathDiagnosticMacroPiece *macro = cast<PathDiagnosticMacroPiece>(piece); local
239 if (!RemoveUnneededCalls(macro->subPieces, R))
894 // PathDiagnosticPieces that occur within a macro.
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 30 aTReg(1), reorder(true), macro(true) {
40 bool isMacro() {return macro;}
41 void setMacro() {macro = true;}
42 void setNomacro() {macro = false;}
47 bool macro; member in class:__anon11689::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...]
  /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 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 1410 milliseconds