Searched defs:EVal (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/Sema/
H A Dconditional-expr.c53 enum Enum { EVal }; enumerator in enum:Enum
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/
H A Dconditional-expr.cpp53 enum Enum { EVal }; enumerator in enum:Enum
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/
H A DSparcAsmParser.cpp76 bool matchSparcAsmModifiers(const MCExpr *&EVal, SMLoc &EndLoc);
649 const MCExpr *EVal; local
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, argument
908 EVal = SparcMCExpr::Create(VK, subExpr, getContext());
/external/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp238 bool ParseExpression(const MCExpr *&EVal);
239 bool ParseDarwinExpression(const MCExpr *&EVal);
1151 ParseExpression(const MCExpr *&EVal) { argument
1154 return ParseDarwinExpression(EVal);
1158 if (getParser().parseExpression(EVal))
1161 EVal = FixupVariantKind(EVal);
1164 const MCExpr *E = ExtractModifierFromExpr(EVal, Variant);
1166 EVal = PPCMCExpr::Create(Variant, E, false, getParser().getContext());
1178 ParseDarwinExpression(const MCExpr *&EVal) { argument
1223 const MCExpr *EVal; local
[all...]

Completed in 1941 milliseconds