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

  /external/llvm/include/llvm/ADT/
ArrayRef.h 1 //===--- ArrayRef.h - Array Reference Wrapper -------------------*- C++ -*-===//
19 /// ArrayRef - Represent a constant reference to an array (0 or more elements
25 /// extends past that of the ArrayRef. For this reason, it is not in general
26 /// safe to store an ArrayRef.
31 class ArrayRef {
48 /// Construct an empty ArrayRef.
49 /*implicit*/ ArrayRef() : Data(0), Length(0) {}
51 /// Construct an ArrayRef from a single element.
52 /*implicit*/ ArrayRef(const T &OneElt)
55 /// Construct an ArrayRef from a pointer and length
    [all...]
  /external/llvm/lib/CodeGen/
RegisterClassInfo.h 20 #include "llvm/ADT/ArrayRef.h"
35 operator ArrayRef<unsigned>() const {
87 ArrayRef<unsigned> getOrder(const TargetRegisterClass *RC) const {

Completed in 317 milliseconds