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

/external/llvm/include/llvm/ADT/
H A DArrayRef.h1 //===--- 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 { class in namespace:llvm
50 /// Construct an empty ArrayRef.
51 /*implicit*/ ArrayRef() : Data(nullptr), Length(0) {} function in class:llvm::ArrayRef
53 /// Construct an empty ArrayRef from None.
54 /*implicit*/ ArrayRef(NoneType) : Data(nullptr), Length(0) {} function in class:llvm::ArrayRef
56 /// Construct an ArrayRef fro
57 /*implicit*/ ArrayRef(const T &OneElt) function in class:llvm::ArrayRef
61 /*implicit*/ ArrayRef(const T *data, size_t length) function in class:llvm::ArrayRef
65 ArrayRef(const T *begin, const T *end) function in class:llvm::ArrayRef
72 /*implicit*/ ArrayRef(const SmallVectorTemplateCommon<T, U> &Vec) function in class:llvm::ArrayRef
78 /*implicit*/ ArrayRef(const std::vector<T, A> &Vec) function in class:llvm::ArrayRef
88 /*implicit*/ ArrayRef(const std::initializer_list<T> &Vec) function in class:llvm::ArrayRef
[all...]
H A DTinyPtrVector.h13 #include "llvm/ADT/ArrayRef.h"
99 // implicit conversion operator to ArrayRef.
100 operator ArrayRef<EltTy>() const {
102 return ArrayRef<EltTy>();
/external/llvm/include/llvm/CodeGen/
H A DRegisterClassInfo.h20 #include "llvm/ADT/ArrayRef.h"
39 operator ArrayRef<MCPhysReg>() const {
93 ArrayRef<MCPhysReg> getOrder(const TargetRegisterClass *RC) const {
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersChecker.cpp41 SVal ArrayRef = C.getState()->getSVal(E, C.getLocationContext()); local
42 SymbolRef ArraySym = ArrayRef.getAsSymbol();
69 // Get the ArrayRef symbol.
70 SVal ArrayRef = State->getSVal(Array, C.getLocationContext());
71 SymbolRef ArraySym = ArrayRef.getAsSymbol();
/external/clang/test/Parser/
H A DDelayedTemplateParsing.cpp107 template <typename = void> struct ArrayRef { struct in namespace:PR17334
108 constexpr ArrayRef() {} function in struct:PR17334::ArrayRef
111 ArrayRef<> IdxList;
/external/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp366 ArrayRef<std::pair<MatcherCtor, unsigned> > Context) {
376 ArrayRef<ASTNodeKind> InitialTypesRef(InitialTypes);
381 for (ArrayRef<std::pair<MatcherCtor, unsigned> >::iterator
487 ArrayRef<ParserValue> Args,
496 ArrayRef<ParserValue> Args,
365 getCompletions( ArrayRef<std::pair<MatcherCtor, unsigned> > Context) argument

Completed in 1645 milliseconds