Home
last modified time | relevance | path

Searched refs:ComplexAPSInt (Results 1 – 2 of 2) sorted by relevance

/external/clang/include/clang/AST/
DAPValue.h71 struct ComplexAPSInt { struct
73 ComplexAPSInt() : Real(1), Imag(1) {} in ComplexAPSInt() argument
112 typedef llvm::AlignedCharArrayUnion<void *, APSInt, APFloat, ComplexAPSInt,
218 return ((ComplexAPSInt*)(char*)Data.buffer)->Real; in getComplexIntReal()
226 return ((ComplexAPSInt*)(char*)Data.buffer)->Imag; in getComplexIntImag()
366 ((ComplexAPSInt *)(char *)Data.buffer)->Real = std::move(R); in setComplexInt()
367 ((ComplexAPSInt *)(char *)Data.buffer)->Imag = std::move(I); in setComplexInt()
421 new ((void*)(char*)Data.buffer) ComplexAPSInt(); in MakeComplexInt()
/external/clang/lib/AST/
DAPValue.cpp197 ((ComplexAPSInt*)(char*)Data.buffer)->~ComplexAPSInt(); in DestroyDataAndMakeUninit()