Lines Matching refs:aSource

90         FontStretch getWider(FontStretch aSource)  in getWider()  argument
92 switch(aSource) in getWider()
94 case FontStretch_ultra_condensed: aSource = FontStretch_extra_condensed; break; in getWider()
95 case FontStretch_extra_condensed: aSource = FontStretch_condensed; break; in getWider()
96 case FontStretch_condensed: aSource = FontStretch_semi_condensed; break; in getWider()
97 case FontStretch_semi_condensed: aSource = FontStretch_normal; break; in getWider()
98 case FontStretch_normal: aSource = FontStretch_semi_expanded; break; in getWider()
99 case FontStretch_semi_expanded: aSource = FontStretch_expanded; break; in getWider()
100 case FontStretch_expanded: aSource = FontStretch_extra_expanded; break; in getWider()
101 case FontStretch_extra_expanded: aSource = FontStretch_ultra_expanded; break; in getWider()
105 return aSource; in getWider()
108 FontStretch getNarrower(FontStretch aSource) in getNarrower() argument
110 switch(aSource) in getNarrower()
112 case FontStretch_extra_condensed: aSource = FontStretch_ultra_condensed; break; in getNarrower()
113 case FontStretch_condensed: aSource = FontStretch_extra_condensed; break; in getNarrower()
114 case FontStretch_semi_condensed: aSource = FontStretch_condensed; break; in getNarrower()
115 case FontStretch_normal: aSource = FontStretch_semi_condensed; break; in getNarrower()
116 case FontStretch_semi_expanded: aSource = FontStretch_normal; break; in getNarrower()
117 case FontStretch_expanded: aSource = FontStretch_semi_expanded; break; in getNarrower()
118 case FontStretch_extra_expanded: aSource = FontStretch_expanded; break; in getNarrower()
119 case FontStretch_ultra_expanded: aSource = FontStretch_extra_expanded; break; in getNarrower()
123 return aSource; in getNarrower()
126 FontWeight getBolder(FontWeight aSource) in getBolder() argument
128 switch(aSource) in getBolder()
130 case FontWeight_100: aSource = FontWeight_200; break; in getBolder()
131 case FontWeight_200: aSource = FontWeight_300; break; in getBolder()
132 case FontWeight_300: aSource = FontWeight_400; break; in getBolder()
133 case FontWeight_400: aSource = FontWeight_500; break; in getBolder()
134 case FontWeight_500: aSource = FontWeight_600; break; in getBolder()
135 case FontWeight_600: aSource = FontWeight_700; break; in getBolder()
136 case FontWeight_700: aSource = FontWeight_800; break; in getBolder()
137 case FontWeight_800: aSource = FontWeight_900; break; in getBolder()
141 return aSource; in getBolder()
144 FontWeight getLighter(FontWeight aSource) in getLighter() argument
146 switch(aSource) in getLighter()
148 case FontWeight_200: aSource = FontWeight_100; break; in getLighter()
149 case FontWeight_300: aSource = FontWeight_200; break; in getLighter()
150 case FontWeight_400: aSource = FontWeight_300; break; in getLighter()
151 case FontWeight_500: aSource = FontWeight_400; break; in getLighter()
152 case FontWeight_600: aSource = FontWeight_500; break; in getLighter()
153 case FontWeight_700: aSource = FontWeight_600; break; in getLighter()
154 case FontWeight_800: aSource = FontWeight_700; break; in getLighter()
155 case FontWeight_900: aSource = FontWeight_800; break; in getLighter()
159 return aSource; in getLighter()
162 ::FontWeight getVclFontWeight(FontWeight aSource) in getVclFontWeight() argument
166 switch(aSource) in getVclFontWeight()
1136 drawinglayer::primitive2d::Primitive2DSequence aSource(rSource); in add_postProcess() local
1143 aSource, in add_postProcess()
1146 aSource = drawinglayer::primitive2d::Primitive2DSequence(&xRef, 1); in add_postProcess()
1156 aSource)); in add_postProcess()
1158 aSource = drawinglayer::primitive2d::Primitive2DSequence(&xRef, 1); in add_postProcess()
1169 mpClip->apply(aSource, pTransform); in add_postProcess()
1173 … if(aSource.hasElements()) // test again, applied clipPath may have lead to empty geometry in add_postProcess()
1183 mpMask->apply(aSource, pTransform); in add_postProcess()
1187 … if(aSource.hasElements()) // test again, applied mask may have lead to empty geometry in add_postProcess()
1190 … drawinglayer::primitive2d::appendPrimitive2DSequenceToPrimitive2DSequence(rTarget, aSource); in add_postProcess()