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

  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersChecker.cpp 41 SVal ArrayRef = C.getState()->getSVal(E, C.getLocationContext());
42 SymbolRef ArraySym = ArrayRef.getAsSymbol();
69 // Get the ArrayRef symbol.
70 SVal ArrayRef = State->getSVal(Array, C.getLocationContext());
71 SymbolRef ArraySym = ArrayRef.getAsSymbol();
  /external/llvm/include/llvm/ADT/
TinyPtrVector.h 13 #include "llvm/ADT/ArrayRef.h"
99 // implicit conversion operator to ArrayRef.
100 operator ArrayRef<EltTy>() const {
102 return ArrayRef<EltTy>();
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 {
50 /// Construct an empty ArrayRef.
51 /*implicit*/ ArrayRef() : Data(nullptr), Length(0) {}
53 /// Construct an empty ArrayRef from None.
54 /*implicit*/ ArrayRef(NoneType) : Data(nullptr), Length(0) {}
56 /// Construct an ArrayRef from a single element
    [all...]
  /art/compiler/utils/
array_ref.h 30 * @details The template class ArrayRef provides a container that references
31 * an external array. This external array must remain alive while the ArrayRef
41 class ArrayRef {
60 constexpr ArrayRef()
65 constexpr ArrayRef(T (&array)[size])
70 constexpr ArrayRef(U (&array)[size],
75 constexpr ArrayRef(T* array, size_t size)
80 constexpr ArrayRef(U* array, size_t size,
85 explicit ArrayRef(std::vector<T>& v)
90 ArrayRef(const std::vector<U>& v
    [all...]
  /external/llvm/include/llvm/CodeGen/
RegisterClassInfo.h 20 #include "llvm/ADT/ArrayRef.h"
39 operator ArrayRef<MCPhysReg>() const {
93 ArrayRef<MCPhysReg> getOrder(const TargetRegisterClass *RC) const {
  /external/clang/test/Parser/
DelayedTemplateParsing.cpp 107 template <typename = void> struct ArrayRef {
108 constexpr ArrayRef() {}
111 ArrayRef<> IdxList;

Completed in 96 milliseconds