HomeSort by relevance Sort by last modified time
    Searched defs:EVal (Results 1 - 5 of 5) 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 };
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;
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 76 bool matchSparcAsmModifiers(const MCExpr *&EVal, SMLoc &EndLoc);
649 const MCExpr *EVal;
680 if (matchSparcAsmModifiers(EVal, E)) {
682 Op = SparcOperand::CreateImm(EVal, S, E);
688 if (!getParser().parseExpression(EVal, E))
689 Op = SparcOperand::CreateImm(EVal, S, E);
869 bool SparcAsmParser::matchSparcAsmModifiers(const MCExpr *&EVal,
908 EVal = SparcMCExpr::Create(VK, subExpr, getContext());
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 238 bool ParseExpression(const MCExpr *&EVal);
239 bool ParseDarwinExpression(const MCExpr *&EVal);
    [all...]

Completed in 785 milliseconds