HomeSort by: relevance | last modified time | path
    Searched defs:APSInt (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
APSInt.cpp 1 //===-- llvm/ADT/APSInt.cpp - Arbitrary Precision Signed Int ---*- C++ -*--===//
9 // This file implements the APSInt class, which is a simple class that
14 #include "llvm/ADT/APSInt.h"
21 APSInt::APSInt(StringRef Str) {
31 *this = APSInt(Tmp, /*isUnsigned=*/false);
37 *this = APSInt(Tmp, /*isUnsigned=*/true);
40 void APSInt::Profile(FoldingSetNodeID& ID) const {
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APSInt.h 1 //===-- llvm/ADT/APSInt.h - Arbitrary Precision Signed Int -----*- C++ -*--===//
9 // This file implements the APSInt class, which is a simple class that
22 class LLVM_NODISCARD APSInt : public APInt {
27 explicit APSInt() : IsUnsigned(false) {}
29 /// Create an APSInt with the specified width, default to unsigned.
30 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
33 explicit APSInt(APInt I, bool isUnsigned = true)
36 /// Construct an APSInt from a string representation.
40 /// constructed APSInt is determined automatically.
43 explicit APSInt(StringRef Str)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
APValue.h 1 //===--- APValue.h - Union class for APFloat/APSInt/Complex -----*- C++ -*-===//
19 #include "llvm/ADT/APSInt.h"
120 /// [APSInt] [APFloat], [Complex APSInt] [Complex APFloat], [Expr + Offset],
124 typedef llvm::APSInt APSInt;
261 APSInt Real, Imag;
301 typedef llvm::AlignedCharArrayUnion<void *, APSInt, APFloat, ComplexAPSInt,
310 explicit APValue(APSInt I) : Kind(None) {
322 APValue(APSInt R, APSInt I) : Kind(None)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLToken.h 490 APSInt // APSInt

Completed in 16 milliseconds