HomeSort by relevance Sort by last modified time
    Searched defs:isPodLike (Results 1 - 25 of 29) 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 {
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;
ScaledNumber.h 892 template <typename T> struct isPodLike;
893 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 234 template <> struct isPodLike<clang::CharUnits> {
DeclarationName.h 594 struct isPodLike<clang::DeclarationName> { static const bool value = true; };
ExprObjC.h 229 template <> struct isPodLike<clang::ObjCDictionaryElement> : std::true_type {};
    [all...]
  /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;
ArrayRef.h 374 template <typename T> struct isPodLike;
375 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/Sema/
Ownership.h 123 struct isPodLike<clang::OpaquePtr<T> > { static const bool value = true; };
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 160 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 258 struct isPodLike<SDep> { 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/llvm/include/llvm/MC/
MCInst.h 146 template <> struct isPodLike<MCOperand> { static const bool value = true; };
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 198 template <typename T> struct isPodLike;
199 template <> struct isPodLike<Slice> { static const bool value = true; };
    [all...]
  /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/Lex/
Token.h 325 struct isPodLike<clang::Token> { 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 144 template <> struct isPodLike<bfi_detail::BlockMass> {
    [all...]

Completed in 1096 milliseconds

1 2