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

  /external/clang/test/Preprocessor/
mi_opt.c 6 #define MACRO
8 #undef MACRO
9 #define MACRO || 1
  /external/clang/test/Frontend/
verify.c 41 #define MACRO some_value // expected-error {{define_error}}
42 #undef MACRO extra_token // expected-warning {{undef_error}}
  /external/clang/test/Index/
annotate-macro-args.h 6 #define MACRO(x) MACRO2(x)
9 MACRO([MyClass meth]);
get-cursor-macro-args.h 6 #define MACRO(x) MACRO2((x))
9 MACRO([MyClass meth]);
fix-its.c 7 #define MACRO(X) X
13 MACRO(x->wobble = 17);
26 MACRO(printf("%d", index));
complete-macro-args.c 8 #define MACRO(x) MACRO2(x)
12 MACRO(p->x);
53 // With these, code-completion is unknown because the macro argument (and the
54 // completion point) is not expanded by the macro definition.
  /external/clang/test/SemaCXX/
PR7944.cpp 4 #define MACRO(x) x
11 MACRO(a.b->f()); // expected-error{{reference to non-static member function must be called; did you mean to call it with no arguments?}}
  /external/chromium_org/v8/tools/
check-name-clashes.py 14 MACRO = re.compile(r"^#define ([^ ]+)\(([^)]*)\) *([^\\]*)\\?\n$")
34 class Macro(object):
86 match = MACRO.match(line)
88 found_macro = Macro(match)

Completed in 996 milliseconds