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

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
TemplateArgumentVisitor.h 39 DISPATCH(Integral);
61 VISIT_METHOD(Integral);
TemplateBase.h 81 /// The template argument is an integral value stored in an llvm::APSInt
82 /// that was provided for an integral non-type template parameter.
83 Integral,
170 /// Construct an integral constant template argument. The memory to
174 /// Construct an integral constant template argument with the same
311 /// Retrieve the template argument as an integral value.
312 // FIXME: Provide a way to read the integral data without copying the value.
314 assert(getKind() == Integral && "Unexpected kind");
326 /// Retrieve the type of the integral value.
328 assert(getKind() == Integral && "Unexpected kind")
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Integral.h 1 //===--- Integral.h - Wrapper for numeric types for the VM ------*- C++ -*-===//
56 template <unsigned Bits, bool Signed> class Integral {
58 template <unsigned OtherBits, bool OtherSigned> friend class Integral;
60 // The primitive representing the integral.
68 /// Construct an integral from anything that is convertible to storage.
69 template <typename T> explicit Integral(T V) : V(V) {}
72 /// Zero-initializes an integral.
73 Integral() : V(0) {}
75 /// Constructs an integral from another integral
    [all...]

Completed in 61 milliseconds