HomeSort by relevance Sort by last modified time
    Searched refs:EVal (Results 1 - 7 of 7) 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 };
180 i1 = i1 ? i1 : EVal;
181 i1 = i1 ? EVal : i1;
217 test0 = test0 ? EVal : test0;
218 test1 = test0 ? EVal : (int) test0;
220 test0 = test0 ? EVal : test1; // expected-warning {{operand of ? changes signedness: 'int' to 'unsigned long'}}
221 test0 = test0 ? test1 : EVal; // expected-warning {{operand of ? changes signedness: 'int' to 'unsigned long'}}
223 test1 = test0 ? EVal : (int) test0;
224 test1 = test0 ? (int) test0 : EVal;
  /cts/suite/audio_quality/lib/include/task/
TaskProcess.h 66 EVal,
  /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));
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 264 bool ParseExpression(const MCExpr *&EVal);
265 bool ParseDarwinExpression(const MCExpr *&EVal);
    [all...]
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 80 bool matchSparcAsmModifiers(const MCExpr *&EVal, SMLoc &EndLoc);
788 const MCExpr *EVal;
827 if (matchSparcAsmModifiers(EVal, E)) {
829 Op = SparcOperand::CreateImm(EVal, S, E);
837 if (!getParser().parseExpression(EVal, E))
838 Op = SparcOperand::CreateImm(EVal, S, E);
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]

Completed in 280 milliseconds