OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isPodLike
(Results
1 - 25
of
30
) sorted by null
1
2
/external/clang/include/clang/AST/
BaseSubobject.h
81
template <> struct
isPodLike
<clang::BaseSubobject> {
DeclAccessPair.h
67
template<typename> struct
isPodLike
;
68
template<> struct
isPodLike
<clang::DeclAccessPair> {
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; };
ExprObjC.h
217
template <> struct
isPodLike
<clang::ObjCDictionaryElement> : llvm::true_type {};
[
all
...]
/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;
ArrayRef.h
311
template <typename T> struct
isPodLike
;
312
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/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/clang/include/clang/Lex/
Token.h
290
struct
isPodLike
<clang::Token> { static const bool value = true; };
/external/clang/include/clang/Sema/
Ownership.h
109
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
76
template <> struct
isPodLike
<IdentifyingPassPtr> {
SlotIndexes.h
308
template <> struct
isPodLike
<SlotIndex> { static const bool value = true; };
ScheduleDAG.h
246
struct
isPodLike
<SDep> { 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/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/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp
76
template<> struct
isPodLike
<SimpleValue> {
224
template<> struct
isPodLike
<CallValue> {
/external/clang/include/clang/Analysis/
ProgramPoint.h
700
struct
isPodLike
<clang::ProgramPoint> { static const bool value = true; };
/external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp
608
struct
isPodLike
<LoweredPHIRecord> { static const bool value = true; };
[
all
...]
/external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp
130
template <typename T> struct
isPodLike
;
131
template <> struct
isPodLike
<BindingKey> {
[
all
...]
Completed in 1035 milliseconds
1
2