Searched defs:That (Results 1 - 3 of 3) sorted by relevance
/external/llvm/include/llvm/Support/ |
H A D | StringPool.h | 89 PooledStringPtr(const PooledStringPtr &That) : S(That.S) { argument 93 PooledStringPtr &operator=(const PooledStringPtr &That) { argument 94 if (S != That.S) { 96 S = That.S; 132 inline bool operator==(const PooledStringPtr &That) const { return S == That.S; } 133 inline bool operator!=(const PooledStringPtr &That) const { return S != That.S; }
|
/external/clang/include/clang/AST/ |
H A D | StmtOpenMP.h | 348 OMPLoopDirective(const T *That, StmtClass SC, OpenMPDirectiveKind Kind, argument 352 : OMPExecutableDirective(That, SC, Kind, StartLoc, EndLoc, NumClauses,
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineAddSub.cpp | 246 void FAddendCoef::operator=(const FAddendCoef &That) { argument 247 if (That.isInt()) 248 set(That.IntVal); 250 set(That.getFpVal()); 253 void FAddendCoef::operator+=(const FAddendCoef &That) { argument 255 if (isInt() == That.isInt()) { 257 IntVal += That.IntVal; 259 getFpVal().add(That.getFpVal(), RndMode); 264 const APFloat &T = That.getFpVal(); 271 T.add(createAPFloatFromInt(T.getSemantics(), That 274 operator -=(const FAddendCoef &That) argument 295 operator *=(const FAddendCoef &That) argument [all...] |
Completed in 1605 milliseconds