HomeSort by relevance Sort by last modified time
    Searched defs:APSInt (Results 1 - 4 of 4) sorted by null

  /external/clang/test/SemaCXX/
unused.cpp 6 class APSInt : public APInt {
9 APSInt &operator=(const APSInt &RHS);
12 APSInt& APSInt::operator=(const APSInt &RHS) {
  /external/clang/include/clang/AST/
APValue.h 1 //===--- APValue.h - Union class for APFloat/APSInt/Complex -----*- C++ -*-===//
18 #include "llvm/ADT/APSInt.h"
27 /// [APSInt] [APFloat], [Complex APSInt] [Complex APFloat], [Expr + Offset].
29 typedef llvm::APSInt APSInt;
45 APSInt Real, Imag;
72 explicit APValue(const APSInt &I) : Kind(Uninitialized) {
81 APValue(const APSInt &R, const APSInt &I) : Kind(Uninitialized)
    [all...]
  /external/llvm/include/llvm/ADT/
APSInt.h 1 //===-- llvm/ADT/APSInt.h - Arbitrary Precision Signed Int -----*- C++ -*--===//
10 // This file implements the APSInt class, which is a simple class that
22 class APSInt : public APInt {
26 explicit APSInt() {}
28 /// APSInt ctor - Create an APSInt with the specified width, default to
30 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
33 explicit APSInt(const APInt &I, bool isUnsigned = true)
36 APSInt &operator=(const APSInt &RHS)
    [all...]
  /external/llvm/lib/AsmParser/
LLToken.h 153 APSInt // APSInt

Completed in 330 milliseconds