Searched refs:is_constexpr (Results 1 - 6 of 6) sorted by relevance
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | sizeof-void.c | 1 #define is_constexpr(x) \ macro 18 s += is_constexpr(ptr++); in test() 19 s += is_constexpr((i++, 1)); in test() 20 s += is_constexpr(sizeof *ptr); in test() 21 s += is_constexpr(ptr + 1); in test() 22 s += is_constexpr(&ptr + 1); in test() 23 s += is_constexpr(*(((char *)&ptr) + 1)); in test()
|
/third_party/node/deps/v8/src/torque/ |
H A D | type-inference.cc | 63 if (basic->namespace_qualification.empty() && !basic->is_constexpr) { in Match()
|
H A D | ast.h | 646 is_constexpr(IsConstexprName(name->value)), in BasicTypeExpression() 652 bool is_constexpr; member 697 IfStatement(SourcePosition pos, bool is_constexpr, Expression* condition, in IfStatement() 701 is_constexpr(is_constexpr), in IfStatement() 705 bool is_constexpr; member
|
H A D | types.h | 272 const bool is_constexpr = flags_ & AbstractTypeFlag::kConstexpr; variable 273 DCHECK_IMPLIES(non_constexpr_version_ != nullptr, is_constexpr); 274 return is_constexpr;
|
H A D | torque-parser.cc | 1283 auto is_constexpr = child_results->NextAs<bool>(); in MakeBasicTypeExpression() local 1289 MakeNode<Identifier>(is_constexpr ? GetConstexprName(name) in MakeBasicTypeExpression() 1343 auto is_constexpr = child_results->NextAs<bool>(); in MakeIfStatement() local 1354 if (is_constexpr) { in MakeIfStatement() 1360 MakeNode<IfStatement>(is_constexpr, condition, if_true, if_false); in MakeIfStatement()
|
H A D | implementation-visitor.cc | 1047 if (stmt->is_constexpr) { in Visit()
|
Completed in 19 milliseconds