reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/lib/Target/AArch64/AArch64GenRegisterInfo.inc
 5179 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/AMDGPU/AMDGPUGenRegisterInfo.inc
17458 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/AMDGPU/R600GenRegisterInfo.inc
 8868 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/ARC/ARCGenRegisterInfo.inc
  554 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/ARM/ARMGenRegisterInfo.inc
 3745 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/AVR/AVRGenRegisterInfo.inc
  916 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/BPF/BPFGenRegisterInfo.inc
  430 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/Hexagon/HexagonGenRegisterInfo.inc
 2338 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/Lanai/LanaiGenRegisterInfo.inc
  612 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/MSP430/MSP430GenRegisterInfo.inc
  355 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/Mips/MipsGenRegisterInfo.inc
 3921 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/NVPTX/NVPTXGenRegisterInfo.inc
  809 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/PowerPC/PPCGenRegisterInfo.inc
 3919 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/RISCV/RISCVGenRegisterInfo.inc
 1168 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/Sparc/SparcGenRegisterInfo.inc
 1942 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/SystemZ/SystemZGenRegisterInfo.inc
 1845 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/WebAssembly/WebAssemblyGenRegisterInfo.inc
  301 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/X86/X86GenRegisterInfo.inc
 4471 static const MVT::SimpleValueType VTLists[] = {
gen/lib/Target/XCore/XCoreGenRegisterInfo.inc
  373 static const MVT::SimpleValueType VTLists[] = {
include/llvm/ADT/ArrayRef.h
   43     using iterator = const T *;
   44     using const_iterator = const T *;
   50     const T *Data = nullptr;
   66     /*implicit*/ ArrayRef(const T &OneElt)
   70     /*implicit*/ ArrayRef(const T *data, size_t length)
   74     ArrayRef(const T *begin, const T *end)
   74     ArrayRef(const T *begin, const T *end)
   81     /*implicit*/ ArrayRef(const SmallVectorTemplateCommon<T, U> &Vec)
   87     /*implicit*/ ArrayRef(const std::vector<T, A> &Vec)
   92     /*implicit*/ constexpr ArrayRef(const std::array<T, N> &Arr)
   97     /*implicit*/ constexpr ArrayRef(const T (&Arr)[N]) : Data(Arr), Length(N) {}
  100     /*implicit*/ ArrayRef(const std::initializer_list<T> &Vec)
  145     const T *data() const { return Data; }
  151     const T &front() const {
  157     const T &back() const {
  163     template <typename Allocator> ArrayRef<T> copy(Allocator &A) {
  178     ArrayRef<T> slice(size_t N, size_t M) const {
  184     ArrayRef<T> slice(size_t N) const { return slice(N, size() - N); }
  187     ArrayRef<T> drop_front(size_t N = 1) const {
  193     ArrayRef<T> drop_back(size_t N = 1) const {
  200     template <class PredicateT> ArrayRef<T> drop_while(PredicateT Pred) const {
  206     template <class PredicateT> ArrayRef<T> drop_until(PredicateT Pred) const {
  211     ArrayRef<T> take_front(size_t N = 1) const {
  218     ArrayRef<T> take_back(size_t N = 1) const {
  226     template <class PredicateT> ArrayRef<T> take_while(PredicateT Pred) const {
  232     template <class PredicateT> ArrayRef<T> take_until(PredicateT Pred) const {
  239     const T &operator[](size_t Index) const {
  249     typename std::enable_if<std::is_same<U, T>::value, ArrayRef<T>>::type &
  257     typename std::enable_if<std::is_same<U, T>::value, ArrayRef<T>>::type &
  263     std::vector<T> vec() const {
  270     operator std::vector<T>() const {
include/llvm/ADT/STLExtras.h
 1023 constexpr inline size_t array_lengthof(T (&)[N]) {
include/llvm/ADT/SmallVector.h
   75   AlignedCharArrayUnion<T> FirstEl;
  114   using value_type = T;
  115   using iterator = T *;
  116   using const_iterator = const T *;
  121   using reference = T &;
  122   using const_reference = const T &;
  123   using pointer = T *;
  124   using const_pointer = const T *;
  259 class SmallVectorTemplateBase<T, true> : public SmallVectorTemplateCommon<T> {
  264   static void destroy_range(T *, T *) {}
  264   static void destroy_range(T *, T *) {}
  286       T1 *I, T1 *E, T2 *Dest,
  288                                            T2>::value>::type * = nullptr) {
  294       memcpy(reinterpret_cast<void *>(Dest), I, (E - I) * sizeof(T));
  299   void grow(size_t MinSize = 0) { this->grow_pod(MinSize, sizeof(T)); }
  302   void push_back(const T &Elt) {
  305     memcpy(reinterpret_cast<void *>(this->end()), &Elt, sizeof(T));
  315 class SmallVectorImpl : public SmallVectorTemplateBase<T> {
  316   using SuperClass = SmallVectorTemplateBase<T>;
  357   void resize(size_type N, const T &NV) {
  374   LLVM_NODISCARD T pop_back_val() {
  397   void append(size_type NumInputs, const T &Elt) {
  405   void append(std::initializer_list<T> IL) {
  412   void assign(size_type NumElts, const T &Elt) {
  429   void assign(std::initializer_list<T> IL) {
  467   iterator insert(iterator I, T &&Elt) {
  497   iterator insert(iterator I, const T &Elt) {
  526   iterator insert(iterator I, size_type NumToInsert, const T &Elt) {
  637   void insert(iterator I, std::initializer_list<T> IL) {
  820   AlignedCharArrayUnion<T> InlineElts[N];
  837 class SmallVector : public SmallVectorImpl<T>, SmallVectorStorage<T, N> {
  837 class SmallVector : public SmallVectorImpl<T>, SmallVectorStorage<T, N> {
  846   explicit SmallVector(size_t Size, const T &Value = T())
  865   SmallVector(std::initializer_list<T> IL) : SmallVectorImpl<T>(N) {
  884   SmallVector(SmallVectorImpl<T> &&RHS) : SmallVectorImpl<T>(N) {
include/llvm/CodeGen/CostTable.h
   26   MVT::SimpleValueType Type;
   46   MVT::SimpleValueType Dst;
   47   MVT::SimpleValueType Src;
include/llvm/CodeGen/TargetLowering.h
  658   MVT::SimpleValueType getCmpLibcallReturnType() const;
 1215     std::map<std::pair<unsigned, MVT::SimpleValueType>,
 1216              MVT::SimpleValueType>::const_iterator PTTI =
 2818   std::map<std::pair<unsigned, MVT::SimpleValueType>, MVT::SimpleValueType>
 2818   std::map<std::pair<unsigned, MVT::SimpleValueType>, MVT::SimpleValueType>
include/llvm/CodeGen/TargetRegisterInfo.h
  231   using vt_iterator = const MVT::SimpleValueType *;
include/llvm/CodeGen/ValueTypes.h
   40     constexpr EVT(MVT::SimpleValueType SVT) : V(SVT) {}
include/llvm/Support/AlignOf.h
   30   T t;
   39 template <typename T> union SizerImpl<T> { char arr[sizeof(T)]; };
   50       llvm::detail::SizerImpl<T, Ts...>)];
include/llvm/Support/MachineValueType.h
  265     SimpleValueType SimpleTy = INVALID_SIMPLE_VALUE_TYPE;
  268     constexpr MVT(SimpleValueType SVT) : SimpleTy(SVT) {}
 1084       SimpleValueType VT;
 1086       mvt_iterator(SimpleValueType VT) : VT(VT) {}
include/llvm/Support/type_traits.h
   91     T t;
  122     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
  122     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
  122     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
  145       std::is_copy_constructible<detail::trivial_helper<T>>::value;
  147       !std::is_copy_constructible<T>::value;
  151       std::is_move_constructible<detail::trivial_helper<T>>::value;
  153       !std::is_move_constructible<T>::value;
  157       is_copy_assignable<detail::trivial_helper<T>>::value;
  159       !is_copy_assignable<T>::value;
  163       is_move_assignable<detail::trivial_helper<T>>::value;
  165       !is_move_assignable<T>::value;
  169       std::is_destructible<detail::trivial_helper<T>>::value;
lib/CodeGen/MachineScheduler.cpp
 2756     MVT::SimpleValueType LegalIntVT = (MVT::SimpleValueType)VT;
lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
 2508   MVT::SimpleValueType VT = (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
 2543   MVT::SimpleValueType VT = (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
 3200       MVT::SimpleValueType VT =
 3211       MVT::SimpleValueType VT =
 3222       MVT::SimpleValueType VT =
 3379         MVT::SimpleValueType VT =
lib/CodeGen/TargetLoweringBase.cpp
 1273       MVT::SimpleValueType EndVT = IsScalable ?
 1382 MVT::SimpleValueType TargetLoweringBase::getCmpLibcallReturnType() const {
lib/Target/AArch64/AArch64ISelLowering.cpp
 2620   MVT::SimpleValueType OrigSimpleTy = OrigVT.getSimpleVT().SimpleTy;
lib/Target/AArch64/AArch64StackOffset.h
   47   StackOffset(int64_t Offset, MVT::SimpleValueType T) : StackOffset() {
lib/Target/AMDGPU/AMDGPUISelLowering.cpp
  356   static const MVT::SimpleValueType VectorIntTypes[] = {
  398   static const MVT::SimpleValueType FloatVectorTypes[] = {
lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
  359   MVT::SimpleValueType SLT = LT.second.getScalarType().SimpleTy;
lib/Target/ARM/ARMISelLowering.cpp
 8291   MVT::SimpleValueType OrigSimpleTy = OrigVT.getSimpleVT().SimpleTy;
14578   auto Ty = VT.getSimpleVT().SimpleTy;
15917     const SDNode *N, MVT::SimpleValueType SVT) {
lib/Target/AVR/AVRISelLowering.h
   80   MVT::SimpleValueType getCmpLibcallReturnType() const override {
lib/Target/BPF/BPFISelLowering.cpp
   82   for (auto VT : { MVT::i32, MVT::i64 }) {
  230       MVT::SimpleValueType SimpleTy = RegVT.getSimpleVT().SimpleTy;
lib/Target/Hexagon/HexagonISelDAGToDAGHVX.cpp
  997         MVT::SimpleValueType SVT = MVT::SimpleValueType(R.OpN & OpRef::Index);
lib/Target/Mips/MipsOptimizePICCall.cpp
  137 static MVT::SimpleValueType getRegTy(unsigned Reg, MachineFunction &MF) {
  167   MVT::SimpleValueType Ty = getRegTy(MI.getOperand(0).getReg(), MF);
lib/Target/Mips/MipsSEISelLowering.cpp
   85     MVT::SimpleValueType VecTys[2] = {MVT::v2i16, MVT::v4i8};
  317 addMSAIntType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC) {
  371 addMSAFloatType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC) {
  425   MVT::SimpleValueType SVT = VT.getSimpleVT().SimpleTy;
lib/Target/Mips/MipsSEISelLowering.h
   36     void addMSAIntType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC);
   40     void addMSAFloatType(MVT::SimpleValueType Ty,
lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
  812     MVT::SimpleValueType VT, unsigned Opcode_i8, unsigned Opcode_i16,
  914   MVT::SimpleValueType TargetVT = LD->getSimpleValueType(0).SimpleTy;
 1772   MVT::SimpleValueType SourceVT =
lib/Target/NVPTX/NVPTXISelLowering.cpp
  494   for (const auto& Ty : {MVT::i16, MVT::i32, MVT::i64}) {
lib/Target/PowerPC/PPCISelLowering.cpp
  676     for (auto VT : {MVT::v2i64, MVT::v4i32, MVT::v8i16, MVT::v16i8})
lib/Target/RISCV/RISCVISelLowering.cpp
   99   for (auto VT : {MVT::i1, MVT::i8, MVT::i16})
lib/Target/SystemZ/SystemZISelLowering.cpp
  557     for (auto VT : { MVT::f32, MVT::f64, MVT::f128,
lib/Target/WebAssembly/WebAssemblyFastISel.cpp
  117   MVT::SimpleValueType getSimpleType(Type *Ty) {
  122   MVT::SimpleValueType getLegalType(MVT::SimpleValueType VT) {
  122   MVT::SimpleValueType getLegalType(MVT::SimpleValueType VT) {
  160                            MVT::SimpleValueType From);
  162                            MVT::SimpleValueType From);
  163   unsigned zeroExtend(unsigned Reg, const Value *V, MVT::SimpleValueType From,
  164                       MVT::SimpleValueType To);
  165   unsigned signExtend(unsigned Reg, const Value *V, MVT::SimpleValueType From,
  166                       MVT::SimpleValueType To);
  441                                               MVT::SimpleValueType From) {
  477                                               MVT::SimpleValueType From) {
  513                                          MVT::SimpleValueType From,
  514                                          MVT::SimpleValueType To) {
  535                                          MVT::SimpleValueType From,
  536                                          MVT::SimpleValueType To) {
  557   MVT::SimpleValueType From = getSimpleType(V->getType());
  558   MVT::SimpleValueType To = getLegalType(From);
  566   MVT::SimpleValueType From = getSimpleType(V->getType());
  567   MVT::SimpleValueType To = getLegalType(From);
  724     MVT::SimpleValueType ArgTy = getLegalType(getSimpleType(Arg.getType()));
  733     MVT::SimpleValueType RetTy =
  771     MVT::SimpleValueType RetTy = getSimpleType(Call->getType());
  835     MVT::SimpleValueType ArgTy = getSimpleType(V->getType());
  969   MVT::SimpleValueType From = getSimpleType(Op->getType());
  970   MVT::SimpleValueType To = getLegalType(getSimpleType(ZExt->getType()));
  986   MVT::SimpleValueType From = getSimpleType(Op->getType());
  987   MVT::SimpleValueType To = getLegalType(getSimpleType(SExt->getType()));
lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
   42   auto MVTPtr = Subtarget->hasAddr64() ? MVT::i64 : MVT::i32;
   84   for (auto T : {MVT::f32, MVT::f64, MVT::v4f32, MVT::v2f64}) {
  115     for (auto T : {MVT::i32, MVT::i64})
  118       for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32})
  128       for (auto T : {MVT::v16i8, MVT::v8i16})
  132     for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32})
  135       for (auto T : {MVT::v2i64, MVT::v2f64})
  139     for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32})
  142       for (auto T: {MVT::v2i64, MVT::v2f64})
  147       for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32})
  155       for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32})
  158         for (auto T : {MVT::v2i64, MVT::v2f64})
  167       for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v4f32})
  170         for (auto T : {MVT::v2i64, MVT::v2f64})
  177       for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32})
  205     for (auto T : {MVT::i8, MVT::i16, MVT::i32})
  220   for (auto T : {MVT::i32, MVT::i64, MVT::f32, MVT::f64})
  238     for (auto T : {MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64, MVT::v4f32,
lib/Target/X86/X86ISelLowering.cpp
  309   for (auto VT : { MVT::i8, MVT::i16, MVT::i32, MVT::i64 }) {
  320   for (auto VT : { MVT::f32, MVT::f64, MVT::f80, MVT::f128,
  415   for (auto VT : { MVT::f32, MVT::f64, MVT::f80, MVT::f128 }) {
  419   for (auto VT : { MVT::i8, MVT::i16, MVT::i32, MVT::i64 }) {
  440   for (auto VT : { MVT::i32, MVT::i64 }) {
  452   for (auto VT : { MVT::i32, MVT::i64 }) {
  466   for (auto VT : { MVT::i8, MVT::i16, MVT::i32, MVT::i64 }) {
  529     for (auto VT : { MVT::f32, MVT::f64 }) {
  591     for (auto VT : { MVT::f32, MVT::f64 }) {
  728   for (auto VT : { MVT::v4f32, MVT::v8f32, MVT::v16f32,
  846     for (auto VT : { MVT::v2i8, MVT::v4i8, MVT::v8i8,
  872     for (auto VT : { MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64 }) {
  896     for (auto VT : { MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64 }) {
  907     for (auto VT : { MVT::v16i8, MVT::v8i16, MVT::v4i32 }) {
  915     for (auto VT : { MVT::v2f64, MVT::v2i64 }) {
  999     for (auto VT : { MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64 }) {
 1057     for (auto VT : { MVT::v8i16, MVT::v4i32, MVT::v2i64 }) {
 1078     for (auto VT : { MVT::v16i8, MVT::v8i16,  MVT::v4i32, MVT::v2i64,
 1083     for (auto VT : { MVT::i8, MVT::i16, MVT::i32, MVT::i64 })
 1086     for (auto VT : { MVT::v16i8, MVT::v8i16,  MVT::v4i32, MVT::v2i64,
 1107     for (auto VT : { MVT::v8f32, MVT::v4f64 }) {
 1133     for (auto VT : { MVT::v32i8, MVT::v16i16, MVT::v8i32, MVT::v4i64 }) {
 1159     for (auto VT : { MVT::v16i16, MVT::v8i32, MVT::v4i64 }) {
 1170     for (auto VT : { MVT::v32i8, MVT::v16i16, MVT::v8i32, MVT::v4i64 }) {
 1182       for (auto VT : { MVT::f32, MVT::f64, MVT::v4f32, MVT::v8f32,
 1187     for (auto VT : { MVT::v32i8, MVT::v16i16, MVT::v8i32, MVT::v4i64 }) {
 1219     for (auto VT : { MVT::v32i8, MVT::v16i16, MVT::v8i32 }) {
 1227     for (auto VT : {MVT::v16i16, MVT::v8i32, MVT::v4i64}) {
 1248     for (auto VT : { MVT::v4i32, MVT::v8i32, MVT::v2i64, MVT::v4i64,
 1256     for (auto VT : { MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64,
 1282       for (auto VT : { MVT::v4i32, MVT::v8i32, MVT::v2i64, MVT::v4i64,
 1323     for (auto VT : { MVT::v16i8, MVT::v8i16, MVT::v4i32, MVT::v2i64 }) {
 1329     for (auto VT : { MVT::v2i1, MVT::v4i1, MVT::v8i1, MVT::v16i1 }) {
 1350     for (auto VT : { MVT::v1i1, MVT::v2i1, MVT::v4i1, MVT::v8i1 })
 1401       for (auto VT : {MVT::v4i32, MVT::v8i32, MVT::v2i64, MVT::v4i64,
 1422     for (auto VT : { MVT::v16f32, MVT::v8f64 }) {
 1433     for (auto VT : {MVT::v16i32, MVT::v8i64, MVT::v64i8}) {
 1449     for (auto VT : { MVT::v16i32, MVT::v8i64 }) {
 1481       for (auto VT : { MVT::v16i32, MVT::v8i64} ) {
 1487       for (auto VT : { MVT::v16i32, MVT::v8i64 })
 1494     for (auto VT : { MVT::v32i8, MVT::v16i16, MVT::v8i32, MVT::v4i64,
 1498     for (auto VT : { MVT::v16i32, MVT::v8i64, MVT::v16f32, MVT::v8f64 }) {
 1522       for (auto VT : { MVT::v16i32, MVT::v8i64 }) {
 1543     for (auto VT : { MVT::v2i64, MVT::v4i64 }) {
 1551     for (auto VT : { MVT::v4i32, MVT::v8i32, MVT::v2i64, MVT::v4i64 }) {
 1560     for (auto VT : { MVT::v4i32, MVT::v8i32, MVT::v2i64, MVT::v4i64,
 1565       for (auto VT : { MVT::v2i64, MVT::v4i64 }) {
 1576       for (auto VT : { MVT::v4i32, MVT::v8i32, MVT::v2i64, MVT::v4i64 }) {
 1582       for (auto VT : { MVT::v4i32, MVT::v8i32, MVT::v2i64, MVT::v4i64 })
 1594     for (auto VT : { MVT::v32i1, MVT::v64i1 }) {
 1617     for (auto VT : { MVT::v16i1, MVT::v32i1 })
 1667     for (auto VT : { MVT::v64i8, MVT::v32i16 }) {
 1700       for (auto VT : { MVT::v64i8, MVT::v32i16 })
 1711     for (auto VT : { MVT::v32i8, MVT::v16i8, MVT::v16i16, MVT::v8i16 }) {
 1721       for (auto VT : { MVT::v16i8, MVT::v32i8, MVT::v8i16, MVT::v16i16 })
 1757       for (auto VT : { MVT::v8i16,  MVT::v4i32, MVT::v2i64,
 1783   for (auto VT : { MVT::i8, MVT::i16, MVT::i32, MVT::i64 }) {
usr/include/c++/7.4.0/array
   50       typedef _Tp _Type[_Nm];
   51       typedef __is_swappable<_Tp> _Is_swappable;
   52       typedef __is_nothrow_swappable<_Tp> _Is_nothrow_swappable;
   54       static constexpr _Tp&
   58       static constexpr _Tp*
   96       typedef _Tp 	    			      value_type;
  109       typedef _GLIBCXX_STD_C::__array_traits<_Tp, _Nm> _AT_Type;
usr/include/c++/7.4.0/bits/algorithmfwd.h
  369     const _Tp&
  370     max(const _Tp&, const _Tp&);
  370     max(const _Tp&, const _Tp&);
usr/include/c++/7.4.0/bits/alloc_traits.h
  387       using allocator_type = allocator<_Tp>;
  389       using value_type = _Tp;
  392       using pointer = _Tp*;
  395       using const_pointer = const _Tp*;
  474 	construct(allocator_type& __a, _Up* __p, _Args&&... __args)
  474 	construct(allocator_type& __a, _Up* __p, _Args&&... __args)
  475 	{ __a.construct(__p, std::forward<_Args>(__args)...); }
  486 	destroy(allocator_type& __a, _Up* __p)
usr/include/c++/7.4.0/bits/allocator.h
  108     class allocator: public __allocator_base<_Tp>
  113       typedef _Tp*       pointer;
  114       typedef const _Tp* const_pointer;
  115       typedef _Tp&       reference;
  116       typedef const _Tp& const_reference;
  117       typedef _Tp        value_type;
  137 	allocator(const allocator<_Tp1>&) throw() { }
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
  104     : public __and_<__not_<is_nothrow_move_constructible<_Tp>>,
  105                     is_copy_constructible<_Tp>>::type { };
usr/include/c++/7.4.0/bits/stl_algobase.h
  356         static _Tp*
  357         __copy_m(const _Tp* __first, const _Tp* __last, _Tp* __result)
  357         __copy_m(const _Tp* __first, const _Tp* __last, _Tp* __result)
  357         __copy_m(const _Tp* __first, const _Tp* __last, _Tp* __result)
  361 					   is_move_assignable<_Tp>,
  362 					   is_copy_assignable<_Tp>>;
  368 	    __builtin_memmove(__result, __first, sizeof(_Tp) * _Num);
usr/include/c++/7.4.0/bits/stl_construct.h
  204 	     allocator<_Tp>&)
usr/include/c++/7.4.0/bits/stl_function.h
  121       typedef _Arg1 	first_argument_type; 
  124       typedef _Arg2 	second_argument_type;
  381     struct less : public binary_function<_Tp, _Tp, bool>
  381     struct less : public binary_function<_Tp, _Tp, bool>
  385       operator()(const _Tp& __x, const _Tp& __y) const
  385       operator()(const _Tp& __x, const _Tp& __y) const
usr/include/c++/7.4.0/bits/stl_iterator.h
 1224     __make_move_if_noexcept_iterator(_Tp* __i)
usr/include/c++/7.4.0/bits/stl_iterator_base_types.h
  123       typedef _Tp        value_type;
  181       typedef _Tp                         value_type;
  183       typedef _Tp*                        pointer;
  184       typedef _Tp&                        reference;
  192       typedef _Tp                         value_type;
  194       typedef const _Tp*                  pointer;
  195       typedef const _Tp&                  reference;
usr/include/c++/7.4.0/bits/stl_map.h
  102       typedef _Key					key_type;
  103       typedef _Tp					mapped_type;
  104       typedef std::pair<const _Key, _Tp>		value_type;
  104       typedef std::pair<const _Key, _Tp>		value_type;
usr/include/c++/7.4.0/bits/stl_pair.h
  100 	return __and_<is_constructible<_T1, const _U1&>,
  100 	return __and_<is_constructible<_T1, const _U1&>,
  101 		      is_constructible<_T2, const _U2&>>::value;
  101 		      is_constructible<_T2, const _U2&>>::value;
  107 	return __and_<is_convertible<const _U1&, _T1>,
  107 	return __and_<is_convertible<const _U1&, _T1>,
  108 		      is_convertible<const _U2&, _T2>>::value;
  108 		      is_convertible<const _U2&, _T2>>::value;
  114 	return __and_<is_constructible<_T1, _U1&&>,
  114 	return __and_<is_constructible<_T1, _U1&&>,
  115 		      is_constructible<_T2, _U2&&>>::value;
  115 		      is_constructible<_T2, _U2&&>>::value;
  121 	return __and_<is_convertible<_U1&&, _T1>,
  121 	return __and_<is_convertible<_U1&&, _T1>,
  122 		      is_convertible<_U2&&, _T2>>::value;
  122 		      is_convertible<_U2&&, _T2>>::value;
  128 	using __do_converts = __and_<is_convertible<const _U1&, _T1>,
  128 	using __do_converts = __and_<is_convertible<const _U1&, _T1>,
  129 				  is_convertible<_U2&&, _T2>>;
  129 				  is_convertible<_U2&&, _T2>>;
  133 	return __and_<is_constructible<_T1, const _U1&>,
  133 	return __and_<is_constructible<_T1, const _U1&>,
  134 		      is_constructible<_T2, _U2&&>,
  134 		      is_constructible<_T2, _U2&&>,
  142 	using __do_converts = __and_<is_convertible<_U1&&, _T1>,
  142 	using __do_converts = __and_<is_convertible<_U1&&, _T1>,
  143 				  is_convertible<const _U2&, _T2>>;
  143 				  is_convertible<const _U2&, _T2>>;
  147 	return __and_<is_constructible<_T1, _U1&&>,
  147 	return __and_<is_constructible<_T1, _U1&&>,
  148 		      is_constructible<_T2, const _U2&&>,
  148 		      is_constructible<_T2, const _U2&&>,
  209     : private __pair_base<_T1, _T2>
  209     : private __pair_base<_T1, _T2>
  211       typedef _T1 first_type;    /// @c first_type is the first bound type
  212       typedef _T2 second_type;   /// @c second_type is the second bound type
  214       _T1 first;                 /// @c first is a copy of the first object
  215       _T2 second;                /// @c second is a copy of the second object
  252       using _PCCP = _PCC<true, _T1, _T2>;
  252       using _PCCP = _PCC<true, _T1, _T2>;
  260       constexpr pair(const _T1& __a, const _T2& __b)
  260       constexpr pair(const _T1& __a, const _T2& __b)
  269       explicit constexpr pair(const _T1& __a, const _T2& __b)
  269       explicit constexpr pair(const _T1& __a, const _T2& __b)
  283 			    _T1, _T2>;
  283 			    _T1, _T2>;
  311        constexpr pair(_U1&& __x, const _T2& __y)
  311        constexpr pair(_U1&& __x, const _T2& __y)
  318        explicit constexpr pair(_U1&& __x, const _T2& __y)
  325        constexpr pair(const _T1& __x, _U2&& __y)
  325        constexpr pair(const _T1& __x, _U2&& __y)
  332        explicit pair(const _T1& __x, _U2&& __y)
  341 	constexpr pair(_U1&& __x, _U2&& __y)
  341 	constexpr pair(_U1&& __x, _U2&& __y)
  379 		__and_<is_copy_assignable<_T1>,
  380 		       is_copy_assignable<_T2>>::value,
  390 		__and_<is_move_assignable<_T1>,
  391 		       is_move_assignable<_T2>>::value,
  402       typename enable_if<__and_<is_assignable<_T1&, const _U1&>,
  402       typename enable_if<__and_<is_assignable<_T1&, const _U1&>,
  403 				is_assignable<_T2&, const _U2&>>::value,
  403 				is_assignable<_T2&, const _U2&>>::value,
  405 	operator=(const pair<_U1, _U2>& __p)
  405 	operator=(const pair<_U1, _U2>& __p)
  413       typename enable_if<__and_<is_assignable<_T1&, _U1&&>,
  413       typename enable_if<__and_<is_assignable<_T1&, _U1&&>,
  414 				is_assignable<_T2&, _U2&&>>::value,
  414 				is_assignable<_T2&, _U2&&>>::value,
  416 	operator=(pair<_U1, _U2>&& __p)
  416 	operator=(pair<_U1, _U2>&& __p)
  454     operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
  454     operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
  524     make_pair(_T1&& __x, _T2&& __y)
  524     make_pair(_T1&& __x, _T2&& __y)
usr/include/c++/7.4.0/bits/stl_tree.h
  563       typedef _Key 				key_type;
  758       static const _Key&
  782       static const _Key&
  894 		     const _Key& __k);
  898 		     const _Key& __k) const;
  902 		     const _Key& __k);
  906 		     const _Key& __k) const;
usr/include/c++/7.4.0/bits/stl_uninitialized.h
  288 			   _ForwardIterator __result, allocator<_Tp>&)
usr/include/c++/7.4.0/bits/stl_vector.h
   77 	rebind<_Tp>::other _Tp_alloc_type;
  216     class vector : protected _Vector_base<_Tp, _Alloc>
  227       typedef _Vector_base<_Tp, _Alloc>			_Base;
  232       typedef _Tp					value_type;
  919       _Tp*
  923       const _Tp*
  962 	emplace_back(_Args&&... __args);
 1483 	_M_realloc_insert(iterator __position, _Args&&... __args);
usr/include/c++/7.4.0/bits/vector.tcc
  101 				     std::forward<_Args>(__args)...);
  105 	  _M_realloc_insert(end(), std::forward<_Args>(__args)...);
  418 				   std::forward<_Args>(__args)...);
usr/include/c++/7.4.0/ext/alloc_traits.h
  117       { typedef typename _Base_type::template rebind_alloc<_Tp> other; };
usr/include/c++/7.4.0/ext/new_allocator.h
   63       typedef _Tp*       pointer;
   64       typedef const _Tp* const_pointer;
   65       typedef _Tp&       reference;
   66       typedef const _Tp& const_reference;
   67       typedef _Tp        value_type;
   84 	new_allocator(const new_allocator<_Tp1>&) _GLIBCXX_USE_NOEXCEPT { }
  111 	return static_cast<_Tp*>(::operator new(__n * sizeof(_Tp)));
  130       { return size_t(-1) / sizeof(_Tp); }
  135 	construct(_Up* __p, _Args&&... __args)
  135 	construct(_Up* __p, _Args&&... __args)
  136 	{ ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
  136 	{ ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
  140 	destroy(_Up* __p) { __p->~_Up(); }
  140 	destroy(_Up* __p) { __p->~_Up(); }
usr/include/c++/7.4.0/initializer_list
   50       typedef _E 		value_type;
   51       typedef const _E& 	reference;
   52       typedef const _E& 	const_reference;
   54       typedef const _E* 	iterator;
   55       typedef const _E* 	const_iterator;
usr/include/c++/7.4.0/tuple
  125       constexpr _Head_base(const _Head& __h)
  132         constexpr _Head_base(_UHead&& __h)
  159       static constexpr _Head&
  162       static constexpr const _Head&
  350       static constexpr _Head&
  353       static constexpr const _Head&
  360       constexpr _Tuple_impl(const _Head& __head)
  365         constexpr _Tuple_impl(_UHead&& __head)
  390 		    const _Head& __head)
  473       return __and_<is_constructible<_Elements, const _UElements&>...>::value;
  479       return __and_<is_convertible<const _UElements&, _Elements>...>::value;
  485       return __and_<is_constructible<_Elements, _UElements&&>...>::value;
  491       return __and_<is_convertible<_UElements&&, _Elements>...>::value;
  608         constexpr tuple(const _Elements&... __elements)
  619       explicit constexpr tuple(const _Elements&... __elements)
  646         constexpr tuple(_UElements&&... __elements)
  730 	      const _Elements&... __elements)
  741                        const _Elements&... __elements)
 1302     constexpr _Head&
 1307     constexpr const _Head&
 1313     constexpr __tuple_element_t<__i, tuple<_Elements...>>&
 1319     constexpr const __tuple_element_t<__i, tuple<_Elements...>>&
 1325     constexpr __tuple_element_t<__i, tuple<_Elements...>>&&
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  762     typename add_rvalue_reference<_Tp>::type declval() noexcept;
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  825     : public __is_destructible_safe<_Tp>::type
  889       typedef decltype(__test<_Tp>(0)) type;
  894     : public __and_<__not_<is_void<_Tp>>,
  895                     __is_default_constructible_impl<_Tp>>
  915     : public __is_default_constructible_atom<_Tp>::type
  921     : public __is_default_constructible_safe<_Tp>::type
  984       typedef decltype(__test<_Tp, _Arg>(0)) type;
  989     : public __and_<is_destructible<_Tp>,
  990                     __is_direct_constructible_impl<_Tp, _Arg>>
 1072 			 __is_direct_constructible_ref_cast<_Tp, _Arg>,
 1073 			 __is_direct_constructible_new_safe<_Tp, _Arg>
 1079     : public __is_direct_constructible_new<_Tp, _Arg>::type
 1119     : public __is_direct_constructible<_Tp, _Arg>
 1130     : public __is_constructible_impl<_Tp, _Args...>::type
 1142     : public is_constructible<_Tp, const _Tp&>
 1142     : public is_constructible<_Tp, const _Tp&>
 1148     : public __is_copy_constructible_impl<_Tp>
 1160     : public is_constructible<_Tp, _Tp&&>
 1160     : public is_constructible<_Tp, _Tp&&>
 1166     : public __is_move_constructible_impl<_Tp>
 1215     : public __and_<is_constructible<_Tp, _Args...>,
 1216 		    __is_nt_constructible_impl<_Tp, _Args...>>
 1246     : public is_nothrow_constructible<_Tp, _Tp&&>
 1246     : public is_nothrow_constructible<_Tp, _Tp&&>
 1252     : public __is_nothrow_move_constructible_impl<_Tp>
 1286     : public is_assignable<_Tp&, const _Tp&>
 1286     : public is_assignable<_Tp&, const _Tp&>
 1292     : public __is_copy_assignable_impl<_Tp>
 1304     : public is_assignable<_Tp&, _Tp&&>
 1304     : public is_assignable<_Tp&, _Tp&&>
 1310     : public __is_move_assignable_impl<_Tp>
 1377     static void __helper(const _Tp&);
 1380     static true_type __test(const _Tp&,
 1381                             decltype(__helper<const _Tp&>({}))* = 0);
 1390     typedef decltype(__test(declval<_Tp>())) type;
 1395       : public __is_implicitly_default_constructible_impl<_Tp>::type
 1400       : public __and_<is_default_constructible<_Tp>,
 1401                       __is_implicitly_default_constructible_safe<_Tp>>
 1526 	static void __test_aux(_To1);
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1545     : public __is_convertible_helper<_From, _To>::type
 1554     { typedef _Tp     type; };
 1558     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };
 1659     { typedef _Tp&&   type; };
 1664     : public __add_rvalue_reference_helper<_Tp>
 2104     { typedef typename remove_cv<_Up>::type __type; };
 2131       typedef _Tp __type;
utils/TableGen/CallingConvEmitter.cpp
  235       MVT::SimpleValueType DestVT = getValueType(DestTy);
  249       MVT::SimpleValueType DestVT = getValueType(DestTy);
utils/TableGen/CodeGenDAGPatterns.cpp
 1715 MVT::SimpleValueType SDNodeInfo::getKnownType(unsigned ResNo) const {
 2358         MVT::SimpleValueType VT = P.second.SimpleTy;
 2404       MVT::SimpleValueType OpVT = Int->IS.ParamVTs[i];
 2450       MVT::SimpleValueType VT =
utils/TableGen/CodeGenDAGPatterns.h
   56   static_assert(std::is_same<std::underlying_type<MVT::SimpleValueType>::type,
  197   TypeSetByHwMode(MVT::SimpleValueType VT)
  279   bool MergeInTypeInfo(TypeSetByHwMode &Out, MVT::SimpleValueType InVT) {
  477   MVT::SimpleValueType getKnownType(unsigned ResNo) const;
  708   MVT::SimpleValueType getSimpleType(unsigned ResNo) const {
  836   bool UpdateNodeType(unsigned ResNo, MVT::SimpleValueType InTy,
  993                                             MVT::SimpleValueType InTy,
utils/TableGen/CodeGenInstruction.cpp
  445 MVT::SimpleValueType CodeGenInstruction::
utils/TableGen/CodeGenInstruction.h
  298     MVT::SimpleValueType
utils/TableGen/CodeGenIntrinsics.h
   44     std::vector<MVT::SimpleValueType> RetVTs;
   53     std::vector<MVT::SimpleValueType> ParamVTs;
utils/TableGen/CodeGenTarget.cpp
   45 MVT::SimpleValueType llvm::getValueType(Record *Rec) {
   49 StringRef llvm::getName(MVT::SimpleValueType T) {
   58 StringRef llvm::getEnumName(MVT::SimpleValueType T) {
  663   std::vector<MVT::SimpleValueType> OverloadedVTs;
  672       MVT::SimpleValueType VT = getValueType(TyEl->getValueAsDef("VT"));
  685     MVT::SimpleValueType VT;
  716     MVT::SimpleValueType VT;
utils/TableGen/CodeGenTarget.h
   36 MVT::SimpleValueType getValueType(Record *Rec);
   38 StringRef getName(MVT::SimpleValueType T);
   39 StringRef getEnumName(MVT::SimpleValueType T);
  200   MVT::SimpleValueType Ty;
  209   MVT::SimpleValueType getValueType() const { return Ty; }
utils/TableGen/DAGISelMatcher.cpp
  331 static bool TypesAreContradictory(MVT::SimpleValueType T1,
  332                                   MVT::SimpleValueType T2) {
  365     MVT::SimpleValueType NodeType = getOpcode().getKnownType(CT->getResNo());
utils/TableGen/DAGISelMatcher.h
  492   MVT::SimpleValueType Type;
  495   CheckTypeMatcher(MVT::SimpleValueType type, unsigned resno)
  498   MVT::SimpleValueType getType() const { return Type; }
  518   SmallVector<std::pair<MVT::SimpleValueType, Matcher*>, 8> Cases;
  520   SwitchTypeMatcher(ArrayRef<std::pair<MVT::SimpleValueType, Matcher*> > cases)
  530   MVT::SimpleValueType getCaseType(unsigned i) const { return Cases[i].first; }
  544   MVT::SimpleValueType Type;
  546   CheckChildTypeMatcher(unsigned childno, MVT::SimpleValueType type)
  550   MVT::SimpleValueType getType() const { return Type; }
  811   MVT::SimpleValueType VT;
  813   EmitIntegerMatcher(int64_t val, MVT::SimpleValueType vt)
  817   MVT::SimpleValueType getVT() const { return VT; }
  835   MVT::SimpleValueType VT;
  837   EmitStringIntegerMatcher(const std::string &val, MVT::SimpleValueType vt)
  841   MVT::SimpleValueType getVT() const { return VT; }
  860   MVT::SimpleValueType VT;
  862   EmitRegisterMatcher(const CodeGenRegister *reg, MVT::SimpleValueType vt)
  866   MVT::SimpleValueType getVT() const { return VT; }
  987   const SmallVector<MVT::SimpleValueType, 3> VTs;
  997                         ArrayRef<MVT::SimpleValueType> vts,
 1010   MVT::SimpleValueType getVT(unsigned i) const {
 1021   const SmallVectorImpl<MVT::SimpleValueType> &getVTList() const { return VTs; }
 1046                   ArrayRef<MVT::SimpleValueType> vts,
 1069                      ArrayRef<MVT::SimpleValueType> vts,
utils/TableGen/DAGISelMatcherGen.cpp
   23 static MVT::SimpleValueType getRegisterValueType(Record *R,
   26   MVT::SimpleValueType VT = MVT::Other;
  695       std::array<MVT::SimpleValueType, 1> ResultVTs = {{ N->getSimpleType(0) }};
  885   SmallVector<MVT::SimpleValueType, 4> ResultVTs;
utils/TableGen/DAGISelMatcherOpt.cpp
  125         const SmallVectorImpl<MVT::SimpleValueType> &VTs = EN->getVTList();
  410     SmallVector<std::pair<MVT::SimpleValueType, Matcher*>, 8> Cases;
  417       MVT::SimpleValueType CTMTy = CTM->getType();
utils/TableGen/FastISelEmitter.cpp
  188                   MVT::SimpleValueType VT,
  379   typedef std::map<MVT::SimpleValueType, PredMap> RetPredMap;
  380   typedef std::map<MVT::SimpleValueType, RetPredMap> TypeRetPredMap;
  389   typedef std::map<MVT::SimpleValueType, PredCheckMap> RetPredCheckMap;
  390   typedef std::map<MVT::SimpleValueType, RetPredCheckMap> TypeRetPredCheckMap;
  522     MVT::SimpleValueType RetVT = MVT::isVoid;
  524     MVT::SimpleValueType VT = RetVT;
  714         MVT::SimpleValueType VT = TI->first;
  719             MVT::SimpleValueType RetVT = RI->first;
  746             MVT::SimpleValueType RetVT = RI->first;
  790         MVT::SimpleValueType VT = TI->first;
utils/TableGen/GlobalISelEmitter.cpp
  187 static Optional<LLTCodeGen> MVTToLLT(MVT::SimpleValueType SVT) {
utils/TableGen/IntrinsicEmitter.cpp
  230 static void EncodeFixedValueType(MVT::SimpleValueType VT,
  282       MVT::SimpleValueType VT = getValueType(R->getValueAsDef("ElTy"));
  310   MVT::SimpleValueType VT = getValueType(R->getValueAsDef("VT"));
utils/TableGen/RegisterInfoEmitter.cpp
  614 static void printSimpleValueType(raw_ostream &OS, MVT::SimpleValueType VT) {
 1232   SequenceToOffsetTable<std::vector<MVT::SimpleValueType>> VTSeqs;
 1235       std::vector<MVT::SimpleValueType> S;
 1284         std::vector<MVT::SimpleValueType> VTs;
utils/unittest/googletest/include/gtest/gtest-printers.h
  173   static void PrintValue(const T& value, ::std::ostream* os) {
  205     ::std::basic_ostream<Char, CharTraits>& os, const T& x) {
  206   TypeWithoutFormatter<T,
  207       (internal::IsAProtocolMessage<T>::value ? kProtobuf :
  208        internal::ImplicitlyConvertible<const T&, internal::BiggestInt>::value ?
  223 void DefaultPrintNonContainerTo(const T& value, ::std::ostream* os) {
  276   static ::std::string Format(const ToPrint& value) {
  351     const T1& value, const T2& /* other_operand */) {
  351     const T1& value, const T2& /* other_operand */) {
  352   return FormatForComparison<T1, T2>::Format(value);
  352   return FormatForComparison<T1, T2>::Format(value);
  366 void UniversalPrint(const T& value, ::std::ostream* os);
  373                     const C& container, ::std::ostream* os) {
  439                     const T& value, ::std::ostream* os) {
  455 void PrintTo(const T& value, ::std::ostream* os) {
  478   DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
  699   static void Print(const T& value, ::std::ostream* os) {
  784   static void Print(const T& value, ::std::ostream* os) {
  856   typedef T T1;
  983   internal::UniversalTersePrinter<T>::Print(value, &ss);
utils/unittest/googletest/include/gtest/gtest.h
 1377                                    const T1& lhs, const T2& rhs) {
 1390                             const T2& rhs) {
 1420                                  const T2& rhs) {
utils/unittest/googletest/include/gtest/internal/custom/raw-ostream.h
   29   static const T& printable(const T& V) { return V; }
   29   static const T& printable(const T& V) { return V; }
   35 auto printable(const T &V) -> decltype(StreamSwitch<T>::printable(V)) {
   35 auto printable(const T &V) -> decltype(StreamSwitch<T>::printable(V)) {
   37   return StreamSwitch<T>::printable(V);
utils/unittest/googletest/include/gtest/internal/gtest-internal.h
   94 ::std::string PrintToString(const T& value);