Home
last modified time | relevance | path

Searched refs:is_parameter (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/clang/test/Parser/
H A Dpragma-attribute.cpp9 …attribute push(__attribute__((annotate("test"))), apply_to = any(variable(is_parameter), function))
12 … clang attribute push(__attribute__((annotate("test"))), apply_to = variable(unless(is_parameter)))
15 …g attribute push(__attribute__((annotate("test"))), apply_to = any(variable(unless(is_parameter))))
68 …bute push(__attribute__((annotate("test"))), apply_to = any( variable(is_parameter, not) )) // exp…
69 …bute push(__attribute__((annotate("test"))), apply_to = any( variable is_parameter )) // expected-…
84 …sh(__attribute__((annotate("test"))), apply_to = any( variable(unless(is_parameter), not) ) // exp…
86 …sh(__attribute__((annotate("test"))), apply_to = any( variable(unless is_parameter) )) // expected…
100 …((annotate("test"))), apply_to = any( variable(unless(is_parameter)), variable(unless(is_parameter
101 …), apply_to = any( variable(unless(is_parameter)), variable(unless(is_parameter)), enum, variable(…
193 …push([[clang::uninitialized]], apply_to = any(variable(is_parameter), variable(unless(is_parameter
[all …]
/llvm-project-15.0.7/clang/test/Sema/
H A Dpragma-attribute-strict-subjects.c9 …nnotate("subRuleContradictions"))), apply_to = any(variable, variable(is_parameter), function(is_m…
20 …__((annotate("subRuleContradictions3"))), apply_to = any(variable, variable(unless(is_parameter))))
25 …tedSubRuleContradictions1"))), apply_to = any(variable(is_parameter), variable(unless(is_parameter
30 …te("negatedSubRuleContradictions2"))), apply_to = any(variable(unless(is_parameter)), variable(is_…
58 …o = any(enum_constant, function, record(unless(is_union)), variable, variable(is_parameter), enum))
/llvm-project-15.0.7/clang/test/FixIt/
H A Dfixit-pragma-attribute.cpp18 …nnotate("subRuleContradictions"))), apply_to = any(variable, variable(is_parameter), function(is_m…
29 …tedSubRuleContradictions1"))), apply_to = any(variable(is_parameter), variable(unless(is_parameter
33 …te("negatedSubRuleContradictions2"))), apply_to = any(variable(unless(is_parameter)), variable(is_…
/llvm-project-15.0.7/clang/test/Misc/
H A Dpragma-attribute-strict-subjects.c6 …nnotate("subRuleContradictions"))), apply_to = any(variable, variable(is_parameter), function(is_m…
18 …te("negatedSubRuleContradictions2"))), apply_to = any(variable(unless(is_parameter)), variable(is_…
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp587 bool is_parameter) { in GetBaseFrameRegister() argument
600 return is_parameter ? frame_proc.getParamFramePtrReg(cpu_type) in GetBaseFrameRegister()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DAttr.td428 // For example, "variable(unless(is_parameter))" matching rule corresponds to
479 AttrSubjectMatcherSubRule<"is_parameter", [ParmVar]>,
480 // unless(is_parameter)
481 AttrSubjectMatcherSubRule<"is_parameter", [NonParmVar], 1>
/llvm-project-15.0.7/clang/docs/
H A DLanguageExtensions.rst4380 - ``variable(is_parameter)``: Can be used to apply attributes to parameters
4383 - ``variable(unless(is_parameter))``: Can be used to apply attributes to all
4415 ``variable(unless(is_parameter))`` is a valid match rule,