HomeSort by relevance Sort by last modified time
    Searched refs:RefType (Results 1 - 10 of 10) sorted by null

  /external/webkit/Source/WebCore/webaudio/
AudioNode.h 79 enum RefType { RefTypeNormal, RefTypeConnection, RefTypeDisabled };
82 void ref(RefType refType = RefTypeNormal);
83 void deref(RefType refType = RefTypeNormal);
86 void finishDeref(RefType refType);
AudioContext.h 183 void addDeferredFinishDeref(AudioNode*, AudioNode::RefType);
242 // with an optional argument for refType. We need to use the special refType: RefTypeConnection
267 RefInfo(AudioNode* node, AudioNode::RefType refType)
269 , m_refType(refType)
273 AudioNode::RefType m_refType;
AudioNode.cpp 174 void AudioNode::ref(RefType refType)
176 switch (refType) {
191 printf("%p: %d: AudioNode::ref(%d) %d %d %d\n", this, type(), refType, m_normalRefCount, m_connectionRefCount, m_disabledRefCount);
194 if (m_connectionRefCount == 1 && refType == RefTypeConnection) {
202 void AudioNode::deref(RefType refType)
219 finishDeref(refType);
226 context()->addDeferredFinishDeref(this, refType);
236 void AudioNode::finishDeref(RefType refType
    [all...]
AudioContext.cpp 446 void AudioContext::addDeferredFinishDeref(AudioNode* node, AudioNode::RefType refType)
449 m_deferredFinishDerefList.append(AudioContext::RefInfo(node, refType));
501 AudioNode::RefType refType = m_deferredFinishDerefList[i].m_refType;
502 node->finishDeref(refType);
  /external/chromium/base/
tuple.h 42 // RefType: the ref version of a type (same as the type for refs).
48 typedef P& RefType;
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,
    [all...]
  /external/clang/include/clang/AST/
CanonicalType.h 718 if (CanQual<ReferenceType> RefType = getAs<ReferenceType>())
719 return RefType->getPointeeType();
Type.h     [all...]
  /external/valgrind/main/callgrind/
sim.c 130 typedef enum { Read = 0, Write = CACHELINE_DIRTY } RefType;
342 CacheResult cachesim_setref_wb(cache_t2* c, RefType ref, UInt set_no, UWord tag)
381 CacheResult cachesim_ref_wb(cache_t2* c, RefType ref, Addr a, UChar size)
    [all...]
  /external/clang/lib/AST/
Type.cpp     [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp     [all...]

Completed in 380 milliseconds