Searched refs:isPodLike (Results 1 – 25 of 38) sorted by relevance
12
/external/llvm/include/llvm/Support/ |
D | type_traits.h | 30 struct isPodLike { struct 52 struct isPodLike<std::pair<T, U> > { argument 53 static const bool value = isPodLike<T>::value && isPodLike<U>::value;
|
D | ScaledNumber.h | 892 template <typename T> struct isPodLike; 893 template <typename T> struct isPodLike<ScaledNumber<T>> {
|
/external/clang/include/clang/AST/ |
D | DeclAccessPair.h | 66 template<typename> struct isPodLike; 67 template<> struct isPodLike<clang::DeclAccessPair> {
|
D | BaseSubobject.h | 81 template <> struct isPodLike<clang::BaseSubobject> {
|
D | GlobalDecl.h | 120 struct isPodLike<clang::GlobalDecl> {
|
D | CharUnits.h | 234 template <> struct isPodLike<clang::CharUnits> {
|
D | DeclarationName.h | 594 struct isPodLike<clang::DeclarationName> { static const bool value = true; };
|
/external/llvm/include/llvm/ADT/ |
D | Optional.h | 147 template <typename T> struct isPodLike; 148 template <typename T> struct isPodLike<Optional<T> > { 150 static const bool value = isPodLike<T>::value;
|
D | ImmutableList.h | 223 template <typename T> struct isPodLike; 225 struct isPodLike<ImmutableList<T> > { static const bool value = true; };
|
D | PointerIntPair.h | 156 template <typename T> struct isPodLike; 158 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType> > {
|
D | SmallVector.h | 175 template <typename T, bool isPodLike> 250 template <typename T, bool isPodLike> 251 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) { in grow() 353 class SmallVectorImpl : public SmallVectorTemplateBase<T, isPodLike<T>::value> { 354 typedef SmallVectorTemplateBase<T, isPodLike<T>::value > SuperClass; 364 : SmallVectorTemplateBase<T, isPodLike<T>::value>(N*sizeof(T)) { in SmallVectorImpl()
|
D | ArrayRef.h | 374 template <typename T> struct isPodLike; 375 template <typename T> struct isPodLike<ArrayRef<T> > {
|
D | StringRef.h | 602 template <typename T> struct isPodLike; 603 template <> struct isPodLike<StringRef> { static const bool value = true; };
|
D | DenseMap.h | 322 if (isPodLike<KeyT>::value && isPodLike<ValueT>::value) in copyFrom()
|
/external/clang/include/clang/Basic/ |
D | SourceLocation.h | 29 template <typename T> struct isPodLike; 419 struct isPodLike<clang::SourceLocation> { static const bool value = true; }; 421 struct isPodLike<clang::FileID> { static const bool value = true; };
|
D | IdentifierTable.h | 833 struct isPodLike<clang::Selector> { static const bool value = true; };
|
/external/llvm/include/llvm/IR/ |
D | CFG.h | 143 struct isPodLike<TerminatorInst::SuccIterator<T, U>> { 144 static const bool value = isPodLike<T>::value;
|
D | ValueHandle.h | 265 struct isPodLike<AssertingVH<T> > {
|
/external/llvm/include/llvm/Bitcode/ |
D | BitCodes.h | 160 template <> struct isPodLike<BitCodeAbbrevOp> { static const bool value=true; };
|
/external/llvm/include/llvm/MC/ |
D | MCInst.h | 146 template <> struct isPodLike<MCOperand> { static const bool value = true; };
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | SVals.h | 567 template <typename T> struct isPodLike; 568 template <> struct isPodLike<clang::ento::SVal> {
|
/external/clang/include/clang/Lex/ |
D | Token.h | 325 struct isPodLike<clang::Token> { static const bool value = true; };
|
/external/clang/include/clang/Sema/ |
D | Ownership.h | 123 struct isPodLike<clang::OpaquePtr<T> > { static const bool value = true; };
|
/external/llvm/include/llvm/CodeGen/ |
D | Passes.h | 79 template <> struct isPodLike<IdentifyingPassPtr> {
|
D | RegisterPressure.h | 112 template <> struct isPodLike<PressureChange> {
|
12