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

/external/clang/include/clang/AST/
H A DAPValue.h71 struct ComplexAPSInt { struct in class:clang::APValue
73 ComplexAPSInt() : Real(1), Imag(1) {} function in struct:clang::APValue::ComplexAPSInt
112 typedef llvm::AlignedCharArrayUnion<void *, APSInt, APFloat, ComplexAPSInt,
218 return ((ComplexAPSInt*)(char*)Data.buffer)->Real;
226 return ((ComplexAPSInt*)(char*)Data.buffer)->Imag;
366 ((ComplexAPSInt *)(char *)Data.buffer)->Real = std::move(R);
367 ((ComplexAPSInt *)(char *)Data.buffer)->Imag = std::move(I);
421 new ((void*)(char*)Data.buffer) ComplexAPSInt();

Completed in 67 milliseconds