OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ConstExpr
(Results
1 - 5
of
5
) sorted by null
/external/clang/test/SemaCXX/
implicit-exception-spec.cpp
16
// Noexcept::Noexcept is not declared
constexpr
, therefore noexcept(Noexcept())
19
struct
ConstExpr
{
20
bool b = noexcept(
ConstExpr
()) && ThrowSomething(); // expected-error {{cannot use defaulted default constructor of '
ConstExpr
' within the class outside of member functions}}
21
// expected-note@-1 {{implicit default constructor for 'InClassInitializers::
ConstExpr
' first required here}}
/external/llvm/lib/Target/Lanai/AsmParser/
LanaiAsmParser.cpp
215
if (const MCConstantExpr *
ConstExpr
= dyn_cast<MCConstantExpr>(Imm.Value)) {
216
int64_t Value =
ConstExpr
->getValue();
237
const MCConstantExpr *
ConstExpr
= dyn_cast<MCConstantExpr>(Imm.Value);
238
if (
ConstExpr
) {
239
int64_t Value =
ConstExpr
->getValue();
251
if (const MCConstantExpr *
ConstExpr
= dyn_cast<MCConstantExpr>(Imm.Value)) {
252
int64_t Value =
ConstExpr
->getValue();
275
if (const MCConstantExpr *
ConstExpr
= dyn_cast<MCConstantExpr>(Imm.Value)) {
276
int64_t Value =
ConstExpr
->getValue();
298
const MCConstantExpr *
ConstExpr
= dyn_cast<MCConstantExpr>(Imm.Value)
[
all
...]
/external/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp
264
if (auto
ConstExpr
= dyn_cast<ConstantExpr>(Opnd)) {
266
if (!
ConstExpr
->isCast())
269
if (auto ConstInt = dyn_cast<ConstantInt>(
ConstExpr
->getOperand(0))) {
524
if (auto
ConstExpr
= dyn_cast<ConstantExpr>(Opnd)) {
525
Instruction *ConstExprInst =
ConstExpr
->getAsInstruction();
534
<< "From : " << *
ConstExpr
<< '\n');
/external/llvm/lib/Target/SystemZ/
SystemZAsmPrinter.cpp
442
const MCConstantExpr *
ConstExpr
= MCConstantExpr::create(2, OutContext);
444
.addExpr(MCBinaryExpr::createAdd(Expr,
ConstExpr
, OutContext));
455
const MCConstantExpr *
ConstExpr
= MCConstantExpr::create(2, OutContext);
459
.addExpr(MCBinaryExpr::createAdd(Expr,
ConstExpr
, OutContext));
/external/clang/test/CodeGenCXX/
cxx0x-initializer-stdinitializerlist.cpp
471
namespace
ConstExpr
{
475
constexpr
C(int x) : x(x) {}
480
// CHECK: store %"class.
ConstExpr
::C"* getelementptr inbounds ([3 x %"class.
ConstExpr
::C"], [3 x %"class.
ConstExpr
::C"]* @[[REFTMP2]], i64 0, i64 0)
490
constexpr
pair() : first(), second() {}
491
constexpr
pair(T1 a, T2 b) : first(a), second(b) {}
Completed in 244 milliseconds