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

  /cts/suite/audio_quality/lib/include/task/
TaskProcess.h 66 EVal,
  /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 };
170 i1 = i1 ? i1 : EVal;
171 i1 = i1 ? EVal : i1;
207 test0 = test0 ? EVal : test0;
208 test1 = test0 ? EVal : (int) test0;
210 test0 = test0 ? EVal : test1; // expected-warning {{operand of ? changes signedness: 'int' to 'unsigned long'}}
211 test0 = test0 ? test1 : EVal; // expected-warning {{operand of ? changes signedness: 'int' to 'unsigned long'}}
213 test1 = test0 ? EVal : (int) test0;
214 test1 = test0 ? (int) test0 : EVal;
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 443 const MCExpr *EVal = MCConstantExpr::Create(reg,getContext());
444 return MBlazeOperand::CreateFslImm(EVal,S,E);
452 const MCExpr *EVal;
460 if (getParser().parseExpression(EVal))
463 return MBlazeOperand::CreateImm(EVal, S, E);

Completed in 132 milliseconds