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 8 class APSInt : public APInt {
11 APSInt &operator=(const APSInt &RHS);
14 APSInt& APSInt::operator=(const APSInt &RHS) {
  /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() : IsUnsigned(false) {}
28 /// APSInt ctor - Create an APSInt with the specified width, default to
30 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
33 explicit APSInt(APInt I, bool isUnsigned = true)
36 APSInt &operator=(APInt RHS) {
42 APSInt &operator=(uint64_t RHS)
    [all...]
  /external/clang/include/clang/AST/
APValue.h 1 //===--- APValue.h - Union class for APFloat/APSInt/Complex -----*- C++ -*-===//
19 #include "llvm/ADT/APSInt.h"
36 /// [APSInt] [APFloat], [Complex APSInt] [Complex APFloat], [Expr + Offset],
39 typedef llvm::APSInt APSInt;
72 APSInt Real, Imag;
112 typedef llvm::AlignedCharArrayUnion<void *, APSInt, APFloat, ComplexAPSInt,
121 explicit APValue(APSInt I) : Kind(Uninitialized) {
130 APValue(APSInt R, APSInt I) : Kind(Uninitialized)
    [all...]
  /external/llvm/lib/AsmParser/
LLToken.h 201 APSInt // APSInt

Completed in 151 milliseconds