Searched defs:macros (Results 1 - 10 of 10) sorted by relevance

/external/smack/src/org/jivesoftware/smackx/workgroup/ext/macros/
H A DMacroGroup.java20 package org.jivesoftware.smackx.workgroup.ext.macros;
32 private List<Macro> macros; field in class:MacroGroup
40 macros = new ArrayList<Macro>();
45 macros.add(macro);
49 macros.remove(macro);
53 Collection<Macro> col = Collections.unmodifiableList(macros);
73 return (Macro)macros.get(location);
94 return macros;
97 public void setMacros(List<Macro> macros) { argument
98 this.macros
[all...]
H A DMacros.java20 package org.jivesoftware.smackx.workgroup.ext.macros;
31 * Macros iq is responsible for handling global and personal macros in the a Live Assistant
68 public static final String ELEMENT_NAME = "macros";
111 String macros = parser.nextText();
112 MacroGroup group = parseMacroGroups(macros);
181 public MacroGroup parseMacroGroups(String macros) throws Exception { argument
185 parser.setInput(new StringReader(macros));
H A DMacro.java20 package org.jivesoftware.smackx.workgroup.ext.macros;
/external/clang/test/Modules/
H A Dmacros.c5 // RUN: %clang_cc1 -fmodules -x objective-c -emit-module -fmodules-cache-path=%t -fmodule-name=macros %S/Inputs/module.map
17 @import macros; variable
40 i += macros; // expanded from __MODULE__ within the 'macros' module.
47 #if __building_module(macros)
52 // their macros should not be visible.
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/raw/
H A Draw-preproc.c134 /* no pre-defining macros */
140 /* no undefining macros */
150 raw_preproc_add_standard(yasm_preproc *preproc, const char **macros) argument
152 /* no standard macros */
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/cpp/
H A Dcpp-preproc.c381 cpp_preproc_add_standard(yasm_preproc *preproc, const char **macros) argument
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
H A Dnasm-preproc.c302 nasm_preproc_add_standard(yasm_preproc *preproc, const char **macros) argument
304 pp_extra_stdmac(macros);
H A Dnasm-pp.c30 * expand_smacro is used to expand single line macros
32 * expand_mmacro is used to expand multi-line macros
76 * effectively self-re-invoking multi-line macros which simply
198 MMacro *mstk; /* stack of active macros/reps */
372 * The current set of multi-line macros we have defined.
377 * The current set of single-line macros we have defined.
1073 /* Turn multiline macros into several lines */
1096 * macros having case-insensitive names, the hash function must be
1553 /* Expand local macros here and not during preprocessing */
2303 * Expand macros i
5283 pp_extra_stdmac(const char **macros) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/template/
H A DDefaultRenderingContext.java57 private Map<String, Macro> macros = new HashMap<String, Macro>(); field in class:DefaultRenderingContext
186 macros.put(name, macro);
191 Macro macro = macros.get(name);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dcoretype.h56 * standard macros with a parser/preprocessor combination.
64 /** NULL-terminated array of standard macros. May be NULL if no standard
65 * macros should be added for this preprocessor.
67 const char **macros; member in struct:yasm_stdmac

Completed in 201 milliseconds