Searched defs:macro (Results 1 - 25 of 29) sorted by relevance

12

/external/clang/test/Misc/
H A Dinclude-stack-for-note-flag.cpp12 bool macro(int x, int y) { function
21 // STACK: note: expanded from macro
28 // STACKLESS: note: expanded from macro
/external/elfutils/src/libdw/
H A Ddwarf_macro_getparamcnt.c1 /* Return number of parameters of a macro.
36 dwarf_macro_getparamcnt (Dwarf_Macro *macro, size_t *paramcntp) argument
38 if (macro == NULL)
41 *paramcntp = libdw_macro_nforms (macro);
H A Ddwarf_macro_opcode.c1 /* Return macro opcode.
38 dwarf_macro_opcode (Dwarf_Macro *macro, unsigned int *opcodep) argument
40 if (macro == NULL)
43 *opcodep = macro->opcode;
H A Ddwarf_macro_param.c1 /* Return a given parameter of a macro.
36 dwarf_macro_param (Dwarf_Macro *macro, size_t idx, Dwarf_Attribute *ret) argument
38 if (macro == NULL)
41 if (idx >= libdw_macro_nforms (macro))
44 *ret = macro->attributes[idx];
H A Ddwarf_macro_param1.c1 /* Return first macro parameter.
38 dwarf_macro_param1 (Dwarf_Macro *macro, Dwarf_Word *paramp) argument
40 if (macro == NULL)
44 if (dwarf_macro_param (macro, 0, &param) != 0)
H A Ddwarf_macro_param2.c1 /* Return second macro parameter.
38 dwarf_macro_param2 (Dwarf_Macro *macro, Dwarf_Word *paramp, const char **strp) argument
40 if (macro == NULL)
44 if (dwarf_macro_param (macro, 1, &param) != 0)
H A Ddwarf_macro_getsrcfiles.c1 /* Find line information for a given macro.
36 dwarf_macro_getsrcfiles (Dwarf *dbg, Dwarf_Macro *macro, argument
39 if (macro == NULL)
42 Dwarf_Macro_Op_Table *const table = macro->table;
56 - The macro unit is not bound to a CU. It's an auxiliary
60 - The macro unit is bound to a CU, but there's no
63 - The macro unit is bound to a CU, but we don't know that,
66 one macro unit imports another CU's macro unit, but that is
H A Ddwarf_getmacros.c1 /* Get macro information.
382 Dwarf_Macro macro = { local
388 if (callback (&macro, arg) != DWARF_CB_OK)
403 macro unit.
408 callers (which in practice decreases the permissible macro unit
H A DlibdwP.h370 /* If this macro unit was opened through dwarf_getmacros or
399 libdw_macro_nforms (Dwarf_Macro *macro) argument
401 return macro->table->table[macro->table->opcodes[macro->opcode - 1]].nforms;
413 /* Memory handling, the easy parts. This macro does not do any locking. */
/external/elfutils/src/tests/
H A Ddwarf-getmacros.c33 mac (Dwarf_Macro *macro, void *dbg) argument
38 dwarf_macro_opcode (macro, &opcode);
44 int r = dwarf_macro_param (macro, 0, &at);
63 if (dwarf_macro_getsrcfiles (dbg, macro, &files, &nfiles) < 0)
68 dwarf_macro_param2 (macro, &w, NULL);
87 dwarf_macro_param2 (macro, NULL, &value);
99 dwarf_macro_getparamcnt (macro, &paramcnt);
/external/jsilver/src/com/google/clearsilver/jsilver/template/
H A DRenderingContext.java94 * Register a macro in the current rendering context. This macro will be available to all other
97 void registerMacro(String name, Macro macro); argument
100 * Lookup a macro that's already been registered. Throws JSilverInterpreterException if macro not
H A DDefaultRenderingContext.java185 public void registerMacro(String name, Macro macro) { argument
186 macros.put(name, macro);
191 Macro macro = macros.get(name);
192 if (macro == null) {
193 throw new JSilverInterpreterException("No such macro: " + name);
195 return macro;
279 // We do not allow a macro call to change context of the rest of the template.
281 // with the assumption that the macro call will not modify the context.
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJavaExpression.java371 public static JavaExpression macro(final String value) { method in class:JavaExpression
/external/libedit/src/
H A Dchared.h66 Char **macro; member in struct:c_macro_t
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dr600_texture.c593 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/r600/
H A Dr600_texture.c371 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)
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp.h141 macro_t *macro; member in struct:expansion_node
/external/selinux/libsepol/cil/src/
H A Dcil_copy_ast.c1340 new->macro = orig->macro;
1422 cil_log(CIL_INFO, "cil_copy_macro: macro cannot be redefined\n");
1891 struct cil_macro *macro = namespace->data; local
1892 struct cil_list *param_list = macro->params;
1899 cil_log(CIL_ERR, "%s %s shadows a macro parameter (%s line:%d)\n", cil_node_to_string(new), ((struct cil_symtab_datum*)orig->data)->name, orig->path, orig->line);
1900 cil_log(CIL_ERR, "Note: macro declaration (%s line:%d)\n", namespace->path, namespace->line);
1953 // if the copy is for a call to a macro, dest should be a pointer to the call
H A Dcil_tree.c1510 struct cil_macro *macro = node->data; local
1511 cil_log(CIL_INFO, "MACRO %s:", macro->datum.name);
1513 if (macro->params != NULL && macro->params->head != NULL) {
1516 cil_list_for_each(curr_param, macro->params) {
1528 cil_log(CIL_INFO, "CALL: macro name:");
1530 if (call->macro != NULL) {
1531 cil_log(CIL_INFO, " %s", call->macro->datum.name);
H A Dcil.c202 CIL_KEY_MACRO = cil_strpool_add("macro");
2404 (*call)->macro = NULL;
2425 void cil_macro_init(struct cil_macro **macro) argument
2427 *macro = cil_malloc(sizeof(**macro));
2429 cil_symtab_datum_init(&(*macro)->datum);
2430 cil_symtab_array_init((*macro)->symtab, cil_sym_sizes[CIL_SYM_ARRAY_MACRO]);
2431 (*macro)->params = NULL;
H A Dcil_resolve_ast.c57 struct cil_tree_node *macro; member in struct:cil_args_resolve
71 struct cil_macro *macro = NULL; local
87 macro = call->macro;
89 macro = parent->data;
91 if (macro != NULL) {
93 cil_list_for_each(item, macro->params) {
2410 printf("Failed to resolve macro %s\n", new_call->macro_str);
2414 new_call->macro = (struct cil_macro*)macro_datum;
2416 if (new_call->macro
3583 struct cil_macro *macro = node->data; local
3680 struct cil_macro *macro = node->data; local
[all...]
H A Dcil_build_ast.c52 struct cil_tree_node *macro; member in struct:cil_args_build
127 cil_log(CIL_ERR, "%s %s shadows a macro parameter in macro declaration\n", cil_node_to_string(ast_node), key);
4682 struct cil_macro *macro = NULL; local
4702 cil_macro_init(&macro);
4722 if (macro->params == NULL) {
4723 cil_list_init(&macro->params, CIL_LIST_ITEM);
4775 cil_list_for_each(curr_param, macro->params) {
4785 cil_list_append(macro->params, CIL_PARAM, param);
4790 /* we don't want the tree walker to walk the macro parameter
4815 cil_destroy_macro(struct cil_macro *macro) argument
5556 struct cil_tree_node *macro = NULL; local
[all...]
/external/mksh/src/
H A Dfuncs.c1533 bool macro = false; local
1552 macro = true;
1577 macro,
H A Dedit.c862 #define AEDIT &aedit /* area for kill ring and macro defns */
934 static char *(*x_atab)[X_TABSZ]; /* macro definitions */
942 static char *macroptr; /* bind key macro active? */
1226 /* avoid bind key macro recursion */
2434 bool macro,
2464 || (macro && f != XFUNC_ins_string)
2509 } else if (macro) {
3487 unsigned char *buf; /* pointer to macro(s) being expanded */
3490 static struct macro_state macro; variable in typeref:struct:macro_state
3543 if (macro
2431 x_bind(const char *a1, const char *a2, bool macro, bool list) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp184 PathDiagnosticMacroPiece *macro = cast<PathDiagnosticMacroPiece>(piece); local
185 if (!removeUnneededCalls(macro->subPieces, R, LCM))
882 // PathDiagnosticPieces that occur within a macro.
1108 // FIXME: Ignore intra-macro edges for now.
3003 // Is the PathDiagnosticPiece within the same macro group?
3009 // We aren't in the same group. Are we descending into a new macro
3017 // Walk the entire macro stack.
3033 // Create a new macro group and add it to the stack.
3520 // FIXME: Print which macro is being invoked.

Completed in 470 milliseconds

12