Searched refs:RefType (Results 1 – 13 of 13) sorted by relevance
/external/eigen/unsupported/test/ |
D | alignedvector3.cpp | 18 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/webkit/Source/WebCore/webaudio/ |
D | AudioNode.h | 79 enum RefType { RefTypeNormal, RefTypeConnection, RefTypeDisabled }; enum 82 void ref(RefType refType = RefTypeNormal); 83 void deref(RefType refType = RefTypeNormal); 86 void finishDeref(RefType refType);
|
D | AudioNode.cpp | 174 void AudioNode::ref(RefType refType) in ref() 202 void AudioNode::deref(RefType refType) in deref() 236 void AudioNode::finishDeref(RefType refType) in finishDeref()
|
D | AudioContext.h | 183 void addDeferredFinishDeref(AudioNode*, AudioNode::RefType); 267 RefInfo(AudioNode* node, AudioNode::RefType refType) in RefInfo() 273 AudioNode::RefType m_refType;
|
D | AudioContext.cpp | 446 void AudioContext::addDeferredFinishDeref(AudioNode* node, AudioNode::RefType refType) in addDeferredFinishDeref() 501 AudioNode::RefType refType = m_deferredFinishDerefList[i].m_refType; in handleDeferredFinishDerefs()
|
/external/chromium/base/ |
D | tuple.h | 48 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/clang/include/clang/AST/ |
D | CanonicalType.h | 679 if (CanQual<ReferenceType> RefType = getAs<ReferenceType>()) 680 return RefType->getPointeeType();
|
D | Type.h | 4712 if (const ReferenceType *RefType = (*this)->getAs<ReferenceType>()) 4713 return RefType->getPointeeType();
|
/external/valgrind/main/callgrind/ |
D | sim.c | 130 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/ |
D | Type.cpp | 1548 if (const ReferenceType *RefType = getTypePtr()->getAs<ReferenceType>()) in getNonLValueExprType() local 1549 return RefType->getPointeeType(); in getNonLValueExprType()
|
/external/clang/lib/Sema/ |
D | SemaOverload.cpp | 4062 const ReferenceType *RefType in FindConversionForRefInit() local 4064 if (RefType && !RefType->getPointeeType()->isFunctionType()) in FindConversionForRefInit() 4082 const ReferenceType *RefType = in FindConversionForRefInit() local 4084 if (!RefType || in FindConversionForRefInit() 4085 (!RefType->isLValueReferenceType() && in FindConversionForRefInit() 4086 !RefType->getPointeeType()->isFunctionType())) in FindConversionForRefInit() 4390 if (const ReferenceType *RefType in TryReferenceInit() local 4393 if (!RefType->getPointeeType()->isFunctionType()) { in TryReferenceInit()
|
D | SemaExpr.cpp | 11041 if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){ in tryCaptureVariable() local 11042 if (!RefType->getPointeeType()->isFunctionType()) in tryCaptureVariable() 11043 CaptureType = RefType->getPointeeType(); in tryCaptureVariable()
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2007-10-14 | 3457 RefType was "void", which doesn't actually exist as a type. 3458 Since RefType only existed for operator*(), and since that operator 3463 * wtf/RetainPtr.h: Nuke RefType and operator*()
|