Home
last modified time | relevance | path

Searched refs:macro (Results 1 – 25 of 2704) sorted by relevance

12345678910>>...109

/external/clang/test/SemaObjCXX/
Dreserved-keyword-methods.mm4 #define FOR_EACH_KEYWORD(macro) \
5 macro(asm) \
6 macro(bool) \
7 macro(catch) \
8 macro(class) \
9 macro(const_cast) \
10 macro(delete) \
11 macro(dynamic_cast) \
12 macro(explicit) \
13 macro(export) \
[all …]
/external/llvm-project/clang/test/SemaObjCXX/
Dreserved-keyword-methods.mm4 #define FOR_EACH_KEYWORD(macro) \
5 macro(asm) \
6 macro(bool) \
7 macro(catch) \
8 macro(class) \
9 macro(const_cast) \
10 macro(delete) \
11 macro(dynamic_cast) \
12 macro(explicit) \
13 macro(export) \
[all …]
/external/llvm-project/llvm/test/MC/Mips/
Dset-nomacro.s3 # CHECK-NOT: warning: macro instruction expanded into multiple instructions
4 .set macro define
81 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
83 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
85 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
88 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
90 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
92 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
94 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
96 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
[all …]
/external/llvm/test/MC/Mips/
Dset-nomacro.s3 # CHECK-NOT: warning: macro instruction expanded into multiple instructions
4 .set macro define
81 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
83 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
85 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
88 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
90 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
92 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
94 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
96 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
[all …]
/external/llvm-project/openmp/runtime/src/
Dkmp_stats.h95 #define KMP_FOREACH_COUNTER(macro, arg) \ argument
96 macro(OMP_PARALLEL,stats_flags_e::onlyInMaster|stats_flags_e::noTotal,arg) \
97 macro(OMP_NESTED_PARALLEL, 0, arg) \
98 macro(OMP_LOOP_STATIC, 0, arg) \
99 macro(OMP_LOOP_STATIC_STEAL, 0, arg) \
100 macro(OMP_LOOP_DYNAMIC, 0, arg) \
101 macro(OMP_DISTRIBUTE, 0, arg) \
102 macro(OMP_BARRIER, 0, arg) \
103 macro(OMP_CRITICAL, 0, arg) \
104 macro(OMP_SINGLE, 0, arg) \
[all …]
/external/llvm/test/MC/AsmParser/
Dmacro-qualifier-diagnostics.s3 .macro missing_qualifier parameter:
5 # CHECK: error: missing parameter qualifier for 'parameter' in macro 'missing_qualifier'
6 # CHECK: .macro missing_qualifier parameter:
9 .macro non_identifier_qualifier parameter:0
11 # CHECK: error: missing parameter qualifier for 'parameter' in macro 'non_identifier_qualifier'
12 # CHECK: .macro non_identifier_qualifier parameter:0
15 .macro invalid_qualifier parameter:invalid_qualifier
17 # CHECK: error: invalid_qualifier is not a valid parameter qualifier for 'parameter' in macro 'inva…
18 # CHECK: .macro invalid_qualifier parameter:invalid_qualifier
21 .macro pointless_default parameter:req=default
[all …]
/external/llvm-project/llvm/test/MC/AsmParser/
Dmacro-required-argument-err.s3 # CHECK:{{.*}}.s:[[#@LINE+3]]:36: error: missing parameter qualifier for 'parameter' in macro
4 # CHECK-NEXT:.macro missing_qualifier parameter:
6 .macro missing_qualifier parameter:
8 # CHECK-NEXT:{{.*}}.s:[[#@LINE+3]]:43: error: missing parameter qualifier for 'parameter' in macro
9 # CHECK-NEXT:.macro non_identifier_qualifier parameter:0
11 .macro non_identifier_qualifier parameter:0
13 …: invalid_qualifier is not a valid parameter qualifier for 'parameter' in macro 'invalid_qualifier'
14 # CHECK-NEXT:.macro invalid_qualifier parameter:invalid_qualifier
16 .macro invalid_qualifier parameter:invalid_qualifier
18 …0: warning: pointless default value for required parameter 'parameter' in macro 'pointless_default'
[all …]
/external/angle/src/compiler/preprocessor/
DMacroExpander.cpp77 for (const std::shared_ptr<Macro> &macro : mExpander->mMacrosToReenable) in ~ScopedMacroReenabler() local
81 ASSERT(macro->name.substr() != ""); in ~ScopedMacroReenabler()
82 macro->disabled = false; in ~ScopedMacroReenabler()
171 std::shared_ptr<Macro> macro = iter->second; in lex() local
172 if (macro->disabled) in lex()
181 macro->expansionCount++; in lex()
182 if ((macro->type == Macro::kTypeFunc) && !isNextTokenLeftParen()) in lex()
186 macro->expansionCount--; in lex()
190 pushMacro(macro, *token); in lex()
246 bool MacroExpander::pushMacro(std::shared_ptr<Macro> macro, const Token &identifier) in pushMacro() argument
[all …]
/external/swiftshader/src/OpenGL/compiler/preprocessor/
DMacroExpander.cpp86 for (const auto &macro : mExpander->mMacrosToReenable) in ~ScopedMacroReenabler() local
90 assert(!macro->name.substr().empty()); in ~ScopedMacroReenabler()
91 macro->disabled = false; in ~ScopedMacroReenabler()
177 std::shared_ptr<Macro> macro = iter->second; in lex() local
178 if (macro->disabled) in lex()
187 macro->expansionCount++; in lex()
188 if ((macro->type == Macro::kTypeFunc) && !isNextTokenLeftParen()) in lex()
192 macro->expansionCount--; in lex()
196 pushMacro(macro, *token); in lex()
252 bool MacroExpander::pushMacro(std::shared_ptr<Macro> macro, const Token &identifier) in pushMacro() argument
[all …]
/external/rust/crates/pin-project-lite/tests/ui/
Dinvalid-bounds.stderr9 | |_^ no rules expected this token in macro call
11 …= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more …
21 | |_^ no rules expected this token in macro call
23 …= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more …
37 | in this macro invocation
39 …= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more …
53 | in this macro invocation
55 …= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more …
69 | in this macro invocation
71 …= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more …
[all …]
/external/selinux/secilc/docs/
Dcil_call_macro_statements.md7macro](#macro) within the current namespace. There may be zero or more parameters passed to the ma…
9 …e [macro](#macro), these can be named or anonymous but must conform to the parameter types defined…
29 <td align="left"><p>The identifier of the <code>macro</code> to be instantiated.</p></td>
33 <td align="left"><p>Zero or more parameters that are passed to the macro.</p></td>
40 See the [`macro`](cil_call_macro_statements.md#macro) statement for an example.
42 macro section in Call / Macro Statements
45macro in the current namespace with its associated parameters. The macro identifier is used by the…
49 - Items defined inside the macro
51 - Items passed into the macro as arguments
53 - Items defined in the same namespace of the macro
[all …]
/external/llvm-project/openmp/runtime/src/include/
Domp-tools.h.var37 #define FOREACH_OMPT_INQUIRY_FN(macro) \
38 macro (ompt_enumerate_states) \
39 macro (ompt_enumerate_mutex_impls) \
41 macro (ompt_set_callback) \
42 macro (ompt_get_callback) \
44 macro (ompt_get_state) \
46 macro (ompt_get_parallel_info) \
47 macro (ompt_get_task_info) \
48 macro (ompt_get_task_memory) \
49 macro (ompt_get_thread_data) \
[all …]
/external/arm-trusted-firmware/include/arch/aarch64/
Dasm_macros.S32 .macro func_prologue
37 .macro func_epilogue
42 .macro dcache_line_size reg, tmp
50 .macro icache_line_size reg, tmp
58 .macro smc_check label
72 .macro vector_base label, section_name=.vectors
85 .macro vector_entry label, section_name=.vectors
99 .macro end_vector_entry label
111 .macro get_my_mp_stack _name, _size
124 .macro get_up_stack _name, _size
[all …]
/external/rust/crates/proc-macro-hack/
DREADME.md4 …b-dtolnay/proc--macro--hack-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">…
5 …elds.io/crates/v/proc-macro-hack.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
6macro--hack-66c2a5?style=for-the-badge&labelColor=555555&logoColor=white&logo=data:image/svg+xml;b…
7 …/workflow/status/dtolnay/proc-macro-hack/CI/master?style=for-the-badge" height="20">](https://gith…
19 This crate implements an alternative type of procedural macro that can be
26 Two crates are required to define a procedural macro.
36 supported procedural macro, use proc-macro-hack's #\[proc_macro_hack\]
37 attribute to define a procedural macro that works in expression position.
64 procedural macro from the implementation crate. The re-export also carries a
77 Both crates depend on `proc-macro-hack`:
[all …]
/external/arm-trusted-firmware/include/arch/aarch32/
Dasm_macros.S32 .macro ldcopr reg, coproc, opc1, CRn, CRm, opc2
36 .macro ldcopr16 reg1, reg2, coproc, opc1, CRm
40 .macro stcopr reg, coproc, opc1, CRn, CRm, opc2
44 .macro stcopr16 reg1, reg2, coproc, opc1, CRm
49 .macro dcache_line_size reg, tmp
56 .macro icache_line_size reg, tmp
67 .macro vector_base label
80 .macro get_my_mp_stack _name, _size
92 .macro get_up_stack _name, _size
102 .macro exception_return
[all …]
/external/llvm/test/MC/ELF/
Dmany-sections-3.s18 .macro gen_sections4 x
25 .macro gen_sections8 x
30 .macro gen_sections16 x
35 .macro gen_sections32 x
40 .macro gen_sections64 x
45 .macro gen_sections128 x
50 .macro gen_sections256 x
55 .macro gen_sections512 x
60 .macro gen_sections1024 x
65 .macro gen_sections2048 x
[all …]
Dmany-sections.s22 .macro gen_sections4 x
29 .macro gen_sections8 x
34 .macro gen_sections16 x
39 .macro gen_sections32 x
44 .macro gen_sections64 x
49 .macro gen_sections128 x
54 .macro gen_sections256 x
59 .macro gen_sections512 x
64 .macro gen_sections1024 x
69 .macro gen_sections2048 x
[all …]
Dmany-sections-2.s45 .macro gen_sections4 x
52 .macro gen_sections8 x
57 .macro gen_sections16 x
62 .macro gen_sections32 x
67 .macro gen_sections64 x
72 .macro gen_sections128 x
77 .macro gen_sections256 x
82 .macro gen_sections512 x
87 .macro gen_sections1024 x
92 .macro gen_sections2048 x
[all …]
/external/llvm-project/llvm/test/MC/ELF/
Dmany-sections-3.s18 .macro gen_sections4 x
25 .macro gen_sections8 x
30 .macro gen_sections16 x
35 .macro gen_sections32 x
40 .macro gen_sections64 x
45 .macro gen_sections128 x
50 .macro gen_sections256 x
55 .macro gen_sections512 x
60 .macro gen_sections1024 x
65 .macro gen_sections2048 x
[all …]
Dmany-sections.s22 .macro gen_sections4 x
29 .macro gen_sections8 x
34 .macro gen_sections16 x
39 .macro gen_sections32 x
44 .macro gen_sections64 x
49 .macro gen_sections128 x
54 .macro gen_sections256 x
59 .macro gen_sections512 x
64 .macro gen_sections1024 x
69 .macro gen_sections2048 x
[all …]
Dmany-sections-2.s45 .macro gen_sections4 x
52 .macro gen_sections8 x
57 .macro gen_sections16 x
62 .macro gen_sections32 x
67 .macro gen_sections64 x
72 .macro gen_sections128 x
77 .macro gen_sections256 x
82 .macro gen_sections512 x
87 .macro gen_sections1024 x
92 .macro gen_sections2048 x
[all …]
/external/llvm-project/lld/test/ELF/
Dmany-sections.s31 .macro gen_sections4 x
38 .macro gen_sections8 x
43 .macro gen_sections16 x
48 .macro gen_sections32 x
53 .macro gen_sections64 x
58 .macro gen_sections128 x
63 .macro gen_sections256 x
68 .macro gen_sections512 x
73 .macro gen_sections1024 x
78 .macro gen_sections2048 x
[all …]
/external/llvm-project/clang/test/Index/
Dget-cursor-macro-args.m2 // RUN: c-index-test -cursor-at=%S/get-cursor-macro-args.h:9:12 \
3 // RUN: -cursor-at=%S/get-cursor-macro-args.h:9:21 \
4 // RUN: -cursor-at=%S/get-cursor-macro-args.h:9:9 \
5 // RUN: -cursor-at=%S/get-cursor-macro-args.h:9:22 \
6 // RUN: -cursor-at=%S/get-cursor-macro-args.h:15:12 \
7 // RUN: -cursor-at=%S/get-cursor-macro-args.h:15:20 \
8 // RUN: %s -include %S/get-cursor-macro-args.h | FileCheck %s
11 // RUN: c-index-test -write-pch %t.pch -x objective-c-header %S/get-cursor-macro-args.h
12 // RUN: c-index-test -cursor-at=%S/get-cursor-macro-args.h:9:12 \
13 // RUN: -cursor-at=%S/get-cursor-macro-args.h:9:21 \
[all …]
/external/clang/test/Index/
Dget-cursor-macro-args.m2 // RUN: c-index-test -cursor-at=%S/get-cursor-macro-args.h:9:12 \
3 // RUN: -cursor-at=%S/get-cursor-macro-args.h:9:21 \
4 // RUN: -cursor-at=%S/get-cursor-macro-args.h:9:9 \
5 // RUN: -cursor-at=%S/get-cursor-macro-args.h:9:22 \
6 // RUN: -cursor-at=%S/get-cursor-macro-args.h:15:12 \
7 // RUN: -cursor-at=%S/get-cursor-macro-args.h:15:20 \
8 // RUN: %s -include %S/get-cursor-macro-args.h | FileCheck %s
11 // RUN: c-index-test -write-pch %t.pch -x objective-c-header %S/get-cursor-macro-args.h
12 // RUN: c-index-test -cursor-at=%S/get-cursor-macro-args.h:9:12 \
13 // RUN: -cursor-at=%S/get-cursor-macro-args.h:9:21 \
[all …]
/external/llvm-project/llvm/test/DebugInfo/
Ddebugmacinfo-dwo.test1 RUN: llvm-dwarfdump -debug-macro %p/Inputs/dwarfdump-macro.dwo \
6 ; dwarfdump-macro.dwo has been generated from Inputs/dwarfdump-macro.cc
7 ; clang++ -c -O0 -DM3=Value3 -include dwarfdump-macro-cmd.h dwarfdump-macro.cc -fdebug-macro -gspli…
12 TEST_MACINFODWO: DW_MACINFO_define - lineno: 1 macro: M4 Value4
14 TEST_MACINFODWO: DW_MACINFO_define - lineno: 1 macro: M1 Value1
16 TEST_MACINFODWO: DW_MACINFO_undef - lineno: 4 macro: M1
17 TEST_MACINFODWO: DW_MACINFO_define - lineno: 5 macro: M1 NewValue1
19 TEST_MACINFODWO: DW_MACINFO_define - lineno: 3 macro: M2(x,y) ((x)+(y)* Value2)

12345678910>>...109