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

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h22 bool IsUnsigned; member in class:clang::ento::APSIntType
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
32 bool isUnsigned() const { return IsUnsigned; }
42 Value.setIsUnsigned(IsUnsigned);
57 return llvm::APSInt(BitWidth, IsUnsigned);
62 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
67 return llvm::APSInt::getMaxValue(BitWidth, IsUnsigned);
71 return (llvm::APSInt(BitWidth, IsUnsigned) = RawValue);
93 return BitWidth == Other.BitWidth && IsUnsigned
[all...]
/external/clang/include/clang/Basic/
H A DTargetBuiltins.h122 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { argument
123 if (IsUnsigned)
/external/llvm/include/llvm/ADT/
H A DAPSInt.h23 bool IsUnsigned; member in class:llvm::APSInt
26 explicit APSInt() : IsUnsigned(false) {}
31 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
49 bool isSigned() const { return !IsUnsigned; }
50 bool isUnsigned() const { return IsUnsigned; }
51 void setIsUnsigned(bool Val) { IsUnsigned = Val; }
52 void setIsSigned(bool Val) { IsUnsigned = !Val; }
66 return APSInt(APInt::trunc(width), IsUnsigned);
70 if (IsUnsigned)
[all...]
/external/clang/include/clang/AST/
H A DTemplateBase.h87 unsigned IsUnsigned : 1; member in struct:clang::TemplateArgument::I
289 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
293 Integer.IsUnsigned);
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp1353 bool IsUnsigned = !NewStep->getType()->hasSignedIntegerRepresentation(); local
1358 (TestIsLessOp ? (IsConstNeg || (IsUnsigned && Subtract))
1359 : (!IsConstNeg || (IsUnsigned && !Subtract))))) {

Completed in 142 milliseconds