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

  /external/llvm/include/llvm/ADT/
ArrayRef.h 1 //===--- ArrayRef.h - Array Reference Wrapper -------------------*- C++ -*-===//
18 /// ArrayRef - Represent a constant reference to an array (0 or more elements
24 /// extends past that of the ArrayRef. For this reason, it is not in general
25 /// safe to store an ArrayRef.
30 class ArrayRef {
47 /// Construct an empty ArrayRef.
48 /*implicit*/ ArrayRef() : Data(0), Length(0) {}
50 /// Construct an ArrayRef from a single element.
51 /*implicit*/ ArrayRef(const T &OneElt)
54 /// Construct an ArrayRef from a pointer and length
    [all...]
TinyPtrVector.h 40 // implicit conversion operator to ArrayRef.
41 operator ArrayRef<EltTy>() const {
43 return ArrayRef<EltTy>();
  /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 {
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersChecker.cpp 42 SVal ArrayRef = C.getState()->getSVal(E, C.getLocationContext());
43 SymbolRef ArraySym = ArrayRef.getAsSymbol();
78 // Get the ArrayRef symbol.
79 SVal ArrayRef = State->getSVal(Array, C.getLocationContext());
80 SymbolRef ArraySym = ArrayRef.getAsSymbol();

Completed in 176 milliseconds