57 references to ContextType
PresentationFramework (57)
src\Framework\System\Windows\Markup\BamlRecordReader.cs (55)
743Debug.Assert(ReaderFlags.DependencyObject == CurrentContext.ContextType); 831Debug.Assert(ReaderFlags.DependencyObject == CurrentContext.ContextType || 832ReaderFlags.ClrObject == CurrentContext.ContextType || 833ReaderFlags.PropertyComplexClr == CurrentContext.ContextType || 834ReaderFlags.PropertyComplexDP == CurrentContext.ContextType); 837if (ReaderFlags.DependencyObject == CurrentContext.ContextType || 838ReaderFlags.ClrObject == CurrentContext.ContextType || 839ReaderFlags.PropertyComplexClr == CurrentContext.ContextType || 840ReaderFlags.PropertyComplexDP == CurrentContext.ContextType) 854if (ReaderFlags.DependencyObject == CurrentContext.ContextType) 943(context.ContextType != ReaderFlags.ConstructorParams && 944context.ContextType != ReaderFlags.RealizeDeferContent)) 1046(ReaderFlags.PropertyComplexClr == currentContext.ContextType || 1047ReaderFlags.PropertyComplexDP == currentContext.ContextType) && 1212(ReaderFlags.DependencyObject != CurrentContext.ContextType && 1213ReaderFlags.ClrObject != CurrentContext.ContextType)) 1257Debug.Assert( CurrentContext.ContextType != ReaderFlags.PropertyComplexClr ); 1258Debug.Assert( CurrentContext.ContextType != ReaderFlags.PropertyComplexDP ); 1260switch (CurrentContext.ContextType) 1310Debug.Assert(CurrentContext.ContextType == ReaderFlags.ConstructorParams); 1978(ReaderFlags.DependencyObject != CurrentContext.ContextType && 1979ReaderFlags.ClrObject != CurrentContext.ContextType)) 2031else if ( (CurrentContext.ContextType == ReaderFlags.PropertyComplexClr) 2032|| (CurrentContext.ContextType == ReaderFlags.PropertyComplexDP) ) 2079!(ReaderFlags.ClrObject == CurrentContext.ContextType || 2080ReaderFlags.DependencyObject == CurrentContext.ContextType)) 2090ReaderFlags.DependencyObject == CurrentContext.ContextType /*targetIsDependencyObject*/ ); 2227(ReaderFlags.DependencyObject != CurrentContext.ContextType && 2228ReaderFlags.ClrObject != CurrentContext.ContextType)) 2318(ReaderFlags.DependencyObject != CurrentContext.ContextType && 2319ReaderFlags.ClrObject != CurrentContext.ContextType)) 2333(ReaderFlags.DependencyObject != CurrentContext.ContextType && 2334ReaderFlags.ClrObject != CurrentContext.ContextType)) 2349(ReaderFlags.DependencyObject != CurrentContext.ContextType && 2350ReaderFlags.ClrObject != CurrentContext.ContextType)) 2470(ReaderFlags.DependencyObject != CurrentContext.ContextType && 2471ReaderFlags.ClrObject != CurrentContext.ContextType)) 2673(ReaderFlags.DependencyObject != CurrentContext.ContextType && 2674ReaderFlags.ClrObject != CurrentContext.ContextType)) 3175if (context.ContextType == ReaderFlags.PropertyArray) 3230else if (context.ContextType == ReaderFlags.PropertyIDictionary) 3251else if (context.ContextType == ReaderFlags.PropertyIList) 3272else if (context.ContextType == ReaderFlags.PropertyIAddChild) 3295else if (context.ContextType == ReaderFlags.PropertyArray) 3486switch (CurrentContext.ContextType) 3680ReaderFlags.PropertyComplexDP == CurrentContext.ContextType && 3887ReaderFlags.PropertyComplexClr == CurrentContext.ContextType && 3937ReaderFlags.ConstructorParams == CurrentContext.ContextType); 4139else if (stackData.ContextType == ReaderFlags.DependencyObject) 4577ReaderFlags parentContextType = parentContext != null ? parentContext.ContextType : ReaderFlags.Unknown; 4636(ReaderFlags.DependencyObject != currentContext.ContextType && 4637ReaderFlags.ClrObject != currentContext.ContextType)) 4800if( parentContext.ContextType == ReaderFlags.PropertyComplexClr ) 4810if( parentContext.ContextType == ReaderFlags.PropertyComplexDP ) 5376ParentContext.ContextType == ReaderFlags.PropertyComplexDP)
src\Framework\System\Windows\Markup\ReaderContextStackData.cs (2)
155return ContextType == ReaderFlags.DependencyObject 157ContextType == ReaderFlags.ClrObject;