HomeSort by relevance Sort by last modified time
    Searched refs:EVal (Results 1 - 5 of 5) sorted by null

  /external/clang/test/Sema/
conditional-expr.c 53 enum Enum { EVal };
54 test0 = test0 ? EVal : test0;
55 test1 = test0 ? EVal : (int) test0;
57 (unsigned) EVal
60 test0 = test0 ? EVal : test1; // expected-warning {{operand of ? changes signedness: 'int' to 'unsigned long'}}
61 test0 = test0 ? test1 : EVal; // expected-warning {{operand of ? changes signedness: 'int' to 'unsigned long'}}
  /external/clang/test/SemaCXX/
conditional-expr.cpp 53 enum Enum { EVal };
160 i1 = i1 ? i1 : EVal;
161 i1 = i1 ? EVal : i1;
197 test0 = test0 ? EVal : test0;
198 test1 = test0 ? EVal : (int) test0;
200 test0 = test0 ? EVal : test1; // expected-warning {{operand of ? changes signedness: 'int' to 'unsigned long'}}
201 test0 = test0 ? test1 : EVal; // expected-warning {{operand of ? changes signedness: 'int' to 'unsigned long'}}
203 test1 = test0 ? EVal : (int) test0;
204 test1 = test0 ? (int) test0 : EVal;
  /cts/suite/audio_quality/lib/include/task/
TaskProcess.h 66 EVal,
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 429 const MCExpr *EVal = MCConstantExpr::Create(reg,getContext());
430 return MBlazeOperand::CreateFslImm(EVal,S,E);
438 const MCExpr *EVal;
446 if (getParser().ParseExpression(EVal))
449 return MBlazeOperand::CreateImm(EVal, S, E);
  /cts/suite/audio_quality/lib/src/task/
TaskProcess.cpp 113 case EVal: {
270 Param param(EVal, item[1]);
331 ASSERT((type == TaskProcess::EId) || (type == TaskProcess::EVal));
349 ASSERT((mType == TaskProcess::EId) || (mType == TaskProcess::EVal));

Completed in 312 milliseconds