Home
last modified time | relevance | path

Searched refs:RefType (Results 1 – 13 of 13) sorted by relevance

/external/eigen/unsupported/test/
Dalignedvector3.cpp18 typedef Matrix<Scalar,3,1> RefType; in alignedvector3() typedef
21 RefType r1(RefType::Random()), r2(RefType::Random()), r3(RefType::Random()), in alignedvector3()
22 r4(RefType::Random()), r5(RefType::Random()), r6(RefType::Random()); in alignedvector3()
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DAudioNode.h98 enum RefType { RefTypeNormal, RefTypeConnection }; enum
101 void ref(RefType refType = RefTypeNormal);
102 void deref(RefType refType = RefTypeNormal);
105 void finishDeref(RefType refType);
DAudioNode.cpp479 void AudioNode::ref(RefType refType) in ref()
503 void AudioNode::deref(RefType refType) in deref()
538 void AudioNode::finishDeref(RefType refType) in finishDeref()
/external/chromium/base/
Dtuple.h48 typedef P& RefType; typedef
55 typedef P& RefType;
284 typedef Tuple1<typename TupleTraits<A>::RefType> RefTuple;
292 typedef Tuple2<typename TupleTraits<A>::RefType,
293 typename TupleTraits<B>::RefType> RefTuple;
303 typedef Tuple3<typename TupleTraits<A>::RefType,
304 typename TupleTraits<B>::RefType,
305 typename TupleTraits<C>::RefType> RefTuple;
317 typedef Tuple4<typename TupleTraits<A>::RefType,
318 typename TupleTraits<B>::RefType,
[all …]
/external/chromium_org/base/
Dtuple.h45 typedef P& RefType; typedef
52 typedef P& RefType;
281 typedef Tuple1<typename TupleTraits<A>::RefType> RefTuple;
289 typedef Tuple2<typename TupleTraits<A>::RefType,
290 typename TupleTraits<B>::RefType> RefTuple;
300 typedef Tuple3<typename TupleTraits<A>::RefType,
301 typename TupleTraits<B>::RefType,
302 typename TupleTraits<C>::RefType> RefTuple;
314 typedef Tuple4<typename TupleTraits<A>::RefType,
315 typename TupleTraits<B>::RefType,
[all …]
/external/llvm/test/tools/llvm-readobj/
Dsections-ext.test194 MACHO-I386-NEXT: RefType: UndefinedNonLazy (0x0)
236 MACHO-X86-64-NEXT: RefType: UndefinedNonLazy (0x0)
269 MACHO-X86-64-NEXT: RefType: UndefinedNonLazy (0x0)
311 MACHO-PPC-NEXT: RefType: UndefinedNonLazy (0x0)
376 MACHO-PPC-NEXT: RefType: UndefinedNonLazy (0x0)
466 MACHO-PPC64-NEXT: RefType: UndefinedNonLazy (0x0)
531 MACHO-PPC64-NEXT: RefType: UndefinedNonLazy (0x0)
696 MACHO-ARM-NEXT: RefType: UndefinedNonLazy (0x0)
705 MACHO-ARM-NEXT: RefType: UndefinedNonLazy (0x0)
830 MACHO-ARM-NEXT: RefType: UndefinedNonLazy (0x0)
/external/clang/include/clang/AST/
DCanonicalType.h676 if (CanQual<ReferenceType> RefType = getAs<ReferenceType>())
677 return RefType->getPointeeType();
DType.h4778 if (const ReferenceType *RefType = (*this)->getAs<ReferenceType>())
4779 return RefType->getPointeeType();
/external/valgrind/main/callgrind/
Dsim.c130 typedef enum { Read = 0, Write = CACHELINE_DIRTY } RefType; typedef
342 CacheResult cachesim_setref_wb(cache_t2* c, RefType ref, UInt set_no, UWord tag) in cachesim_setref_wb()
381 CacheResult cachesim_ref_wb(cache_t2* c, RefType ref, Addr a, UChar size) in cachesim_ref_wb()
/external/clang/lib/AST/
DType.cpp1545 if (const ReferenceType *RefType = getTypePtr()->getAs<ReferenceType>()) in getNonLValueExprType() local
1546 return RefType->getPointeeType(); in getNonLValueExprType()
DExpr.cpp2667 bool RefType = Field->getType()->isReferenceType(); in isConstantInitializer() local
2668 if (!Elt->isConstantInitializer(Ctx, RefType)) in isConstantInitializer()
/external/clang/lib/Sema/
DSemaOverload.cpp4029 const ReferenceType *RefType in FindConversionForRefInit() local
4031 if (RefType && !RefType->getPointeeType()->isFunctionType()) in FindConversionForRefInit()
4049 const ReferenceType *RefType = in FindConversionForRefInit() local
4051 if (!RefType || in FindConversionForRefInit()
4052 (!RefType->isLValueReferenceType() && in FindConversionForRefInit()
4053 !RefType->getPointeeType()->isFunctionType())) in FindConversionForRefInit()
4357 if (const ReferenceType *RefType in TryReferenceInit() local
4360 if (!RefType->getPointeeType()->isFunctionType()) { in TryReferenceInit()
DSemaExpr.cpp11580 if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){ in tryCaptureVariable() local
11581 if (!RefType->getPointeeType()->isFunctionType()) in tryCaptureVariable()
11582 CaptureType = RefType->getPointeeType(); in tryCaptureVariable()