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

1 2

  /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 {
33 // matches the definition of isPodLike closely.
44 struct isPodLike<std::pair<T, U> > {
45 static const bool value = isPodLike<T>::value && isPodLike<U>::value;
ScaledNumber.h 890 template <typename T> struct isPodLike;
891 template <typename T> struct isPodLike<ScaledNumber<T>> {
  /external/clang/include/clang/AST/
BaseSubobject.h 81 template <> struct isPodLike<clang::BaseSubobject> {
DeclAccessPair.h 66 template<typename> struct isPodLike;
67 template<> struct isPodLike<clang::DeclAccessPair> {
GlobalDecl.h 120 struct isPodLike<clang::GlobalDecl> {
CharUnits.h 216 template <> struct isPodLike<clang::CharUnits> {
DeclarationName.h 593 struct isPodLike<clang::DeclarationName> { static const bool value = true; };
ExprObjC.h 218 template <> struct isPodLike<clang::ObjCDictionaryElement> : std::true_type {};
    [all...]
  /external/llvm/include/llvm/ADT/
Optional.h 126 template <typename T> struct isPodLike;
127 template <typename T> struct isPodLike<Optional<T> > {
129 static const bool value = isPodLike<T>::value;
ArrayRef.h 333 template <typename T> struct isPodLike;
334 template <typename T> struct isPodLike<ArrayRef<T> > {
ImmutableList.h 223 template <typename T> struct isPodLike;
225 struct isPodLike<ImmutableList<T> > { static const bool value = true; };
  /external/clang/include/clang/Lex/
Token.h 290 struct isPodLike<clang::Token> { static const bool value = true; };
  /external/clang/include/clang/Sema/
Ownership.h 123 struct isPodLike<clang::OpaquePtr<T> > { static const bool value = true; };
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 159 template <> struct isPodLike<BitCodeAbbrevOp> { static const bool value=true; };
  /external/llvm/include/llvm/CodeGen/
Passes.h 79 template <> struct isPodLike<IdentifyingPassPtr> {
SlotIndexes.h 308 template <> struct isPodLike<SlotIndex> { static const bool value = true; };
ScheduleDAG.h 252 struct isPodLike<SDep> { static const bool value = true; };
  /external/llvm/include/llvm/IR/
CFG.h 261 template <typename T, typename U> struct isPodLike<SuccIterator<T, U> > {
262 static const bool value = isPodLike<T>::value;
ValueHandle.h 257 struct isPodLike<AssertingVH<T> > {
  /external/llvm/include/llvm/MC/
MCInst.h 146 template <> struct isPodLike<MCOperand> { 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; };
  /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/Analysis/
ProgramPoint.h 701 struct isPodLike<clang::ProgramPoint> { static const bool value = true; };
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 131 template <> struct isPodLike<BlockMass> {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 130 template <typename T> struct isPodLike;
131 template <> struct isPodLike<BindingKey> {
    [all...]

Completed in 1015 milliseconds

1 2