HomeSort by relevance Sort by last modified time
    Searched defs:macro (Results 1 - 10 of 10) 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/jsilver/src/com/google/clearsilver/jsilver/interpreter/
TemplateInterpreter.java 56 import com.google.clearsilver.jsilver.template.Macro;
430 * <?cs def:someMacro(x,y) > ... <?cs /def > 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 * <?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/mesa3d/src/glsl/glcpp/
glcpp.h 140 macro_t *macro; member in struct:expansion_node
glcpp-parse.c 115 const char *macro,
121 const char *macro,
1879 macro_t *macro = hash_table_find (parser->defines, (yyvsp[(2) - (3)].str)); local
1934 macro_t *macro = hash_table_find (parser->defines, (yyvsp[(2) - (4)].str)); local
1945 macro_t *macro = hash_table_find (parser->defines, (yyvsp[(2) - (4)].str)); local
2020 macro_t *macro = hash_table_find (parser->defines, "__VERSION__"); local
3594 macro_t *macro; local
3745 macro_t *macro; local
3975 macro_t *macro, *previous; local
4007 macro_t *macro, *previous; local
4082 macro_t *macro; local
    [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/mksh/src/
funcs.c 1701 bool macro = false; local
    [all...]
edit.c 779 #define AEDIT &aedit /* area for kill ring and macro defns */
850 static char *(*x_atab)[X_TABSZ]; /* macro definitions */
858 static char *macroptr = NULL; /* bind key macro active? */
1137 /* avoid bind key macro recursion */
3354 static struct macro_state macro; variable in typeref:struct:macro_state
    [all...]
  /external/clang/include/clang-c/
Index.h 232 * #ifndef/#define/#endif macro guards or with #pragma once.
352 * If the location refers into a macro expansion, retrieves the
353 * location of the macro expansion.
437 * If the location refers into a macro instantiation, return where the
845 * preprocessing record, including all macro definitions and instantiations.
911 * if requested, should also contain nested macro expansions.
913 * Nested macro expansions (i.e., macro expansions that occur
914 * inside another macro expansion) can, in some code bases, require
922 * if requested, should contain nested macro expansions
3897 CXIdxMacro macro; member in struct:__anon4157
3903 CXIdxMacro macro; member in struct:__anon4158
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 378 milliseconds