HomeSort by relevance Sort by last modified time
    Searched refs:isPodLike (Results 1 - 25 of 38) sorted by null

1 2

  /external/clang/include/clang/AST/
DeclAccessPair.h 66 template<typename> struct isPodLike;
67 template<> struct isPodLike<clang::DeclAccessPair> {
BaseSubobject.h 81 template <> struct isPodLike<clang::BaseSubobject> {
GlobalDecl.h 120 struct isPodLike<clang::GlobalDecl> {
CharUnits.h 234 template <> struct isPodLike<clang::CharUnits> {
DeclarationName.h 594 struct isPodLike<clang::DeclarationName> { static const bool value = true; };
  /external/llvm/include/llvm/Support/
type_traits.h 27 /// isPodLike - This is a type trait that is used to determine whether a given
30 struct isPodLike {
36 // matches the definition of isPodLike closely.
52 struct isPodLike<std::pair<T, U> > {
53 static const bool value = isPodLike<T>::value && isPodLike<U>::value;
  /external/llvm/include/llvm/ADT/
Optional.h 147 template <typename T> struct isPodLike;
148 template <typename T> struct isPodLike<Optional<T> > {
150 static const bool value = isPodLike<T>::value;
ImmutableList.h 223 template <typename T> struct isPodLike;
225 struct isPodLike<ImmutableList<T> > { static const bool value = true; };
PointerIntPair.h 156 template <typename T> struct isPodLike;
158 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType> > {
ArrayRef.h 374 template <typename T> struct isPodLike;
375 template <typename T> struct isPodLike<ArrayRef<T> > {
SmallVector.h 173 /// SmallVectorTemplateBase<isPodLike = false> - This is where we put method
175 template <typename T, bool isPodLike>
250 template <typename T, bool isPodLike>
251 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
276 /// SmallVectorTemplateBase<isPodLike = true> - This is where we put method
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)) {
StringRef.h 602 template <typename T> struct isPodLike;
603 template <> struct isPodLike<StringRef> { static const bool value = true; };
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 160 template <> struct isPodLike<BitCodeAbbrevOp> { static const bool value=true; };
  /external/clang/include/clang/Basic/
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; };
IdentifierTable.h 833 struct isPodLike<clang::Selector> { static const bool value = true; };
  /external/llvm/include/llvm/IR/
CFG.h 143 struct isPodLike<TerminatorInst::SuccIterator<T, U>> {
144 static const bool value = isPodLike<T>::value;
ValueHandle.h 265 struct isPodLike<AssertingVH<T> > {
  /external/clang/include/clang/Lex/
Token.h 325 struct isPodLike<clang::Token> { static const bool value = true; };
  /external/llvm/include/llvm/MC/
MCInst.h 146 template <> struct isPodLike<MCOperand> { static const bool value = true; };
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SVals.h 567 template <typename T> struct isPodLike;
568 template <> struct isPodLike<clang::ento::SVal> {
  /external/clang/include/clang/Sema/
Ownership.h 123 struct isPodLike<clang::OpaquePtr<T> > { static const bool value = true; };
CodeCompleteConsumer.h 536 template <> struct isPodLike<clang::CodeCompletionString::Chunk> {
    [all...]
  /external/llvm/include/llvm/CodeGen/
Passes.h 79 template <> struct isPodLike<IdentifyingPassPtr> {
RegisterPressure.h 112 template <> struct isPodLike<PressureChange> {
ScheduleDAG.h 258 struct isPodLike<SDep> { static const bool value = true; };

Completed in 1641 milliseconds

1 2