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

1 2

  /external/clang/include/clang/AST/
DeclAccessPair.h 67 template<typename> struct isPodLike;
68 template<> struct isPodLike<clang::DeclAccessPair> {
BaseSubobject.h 81 template <> struct isPodLike<clang::BaseSubobject> {
GlobalDecl.h 120 struct isPodLike<clang::GlobalDecl> {
CharUnits.h 221 template <> struct isPodLike<clang::CharUnits> {
DeclarationName.h 592 struct isPodLike<clang::DeclarationName> { static const bool value = true; };
  /external/llvm/include/llvm/ADT/
Optional.h 131 template <typename T> struct isPodLike;
132 template <typename T> struct isPodLike<Optional<T> > {
134 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; };
ArrayRef.h 311 template <typename T> struct isPodLike;
312 template <typename T> struct isPodLike<ArrayRef<T> > {
PointerIntPair.h 148 template <typename T> struct isPodLike;
150 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType> > {
StringRef.h 548 template <typename T> struct isPodLike;
549 template <> struct isPodLike<StringRef> { static const bool value = true; };
SmallVector.h 167 /// SmallVectorTemplateBase<isPodLike = false> - This is where we put method
169 template <typename T, bool isPodLike>
267 template <typename T, bool isPodLike>
268 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
293 /// SmallVectorTemplateBase<isPodLike = true> - This is where we put method
371 class SmallVectorImpl : public SmallVectorTemplateBase<T, isPodLike<T>::value> {
372 typedef SmallVectorTemplateBase<T, isPodLike<T>::value > SuperClass;
382 : SmallVectorTemplateBase<T, isPodLike<T>::value>(N*sizeof(T)) {
  /external/llvm/include/llvm/Support/
type_traits.h 63 /// isPodLike - This is a type trait that is used to determine whether a given
66 struct isPodLike {
69 // matches the definition of isPodLike closely.
80 struct isPodLike<std::pair<T, U> > {
81 static const bool value = isPodLike<T>::value && isPodLike<U>::value;
CFG.h 243 template <typename T, typename U> struct isPodLike<SuccIterator<T, U> > {
244 static const bool value = isPodLike<T>::value;
ValueHandle.h 257 struct isPodLike<AssertingVH<T> > {
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 159 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 812 struct isPodLike<clang::Selector> { static const bool value = true; };
  /external/clang/include/clang/Lex/
Token.h 290 struct isPodLike<clang::Token> { static const bool value = true; };
  /external/llvm/include/llvm/CodeGen/
Passes.h 76 template <> struct isPodLike<IdentifyingPassPtr> {
LiveInterval.h 120 template <> struct isPodLike<LiveRange> { 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 109 struct isPodLike<clang::OpaquePtr<T> > { static const bool value = true; };
CodeCompleteConsumer.h 548 template <> struct isPodLike<clang::CodeCompletionString::Chunk> {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 76 template<> struct isPodLike<SimpleValue> {
224 template<> struct isPodLike<CallValue> {

Completed in 5838 milliseconds

1 2