Home
last modified time | relevance | path

Searched refs:propId (Results 1 – 25 of 319) sorted by relevance

12345678910>>...13

/dports/graphics/klatexformula/klatexformula-4.0.0/src/klftools/
H A Dklfpobj.cpp117 if (propId < 0) { in property()
126 if (propId >= 0 && propId < pProperties.size()) { in property()
130 if (propId < 0) { in property()
132 propId); in property()
142 if (propId < 0) { in property()
182 if (propId >= 0 && propId < pProperties.size()) { in doSetProperty()
191 propId); in doSetProperty()
200 if (propId < 0 || propId >= pProperties.size() || in doSetProperty()
203 propId); in doSetProperty()
222 return propId; in doLoadProperty()
[all …]
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/fo/
H A DPropertyList.java138 Property p = getExplicit(propId); in getExplicitOrShorthand()
140 p = getShorthand(propId); in getExplicitOrShorthand()
199 if (isInherited(propId)) { in getInherited()
203 return makeProperty(propId); in getInherited()
217 return get(propId, true, true); in get()
266 return makeProperty(propId); in getNearestSpecified()
281 return makeProperty(propId); in getFromParent()
420 return !(propId == -1 in isValidPropertyName()
441 return getExplicit(propId); in getPropertyForAttribute()
474 if (propId == -1 in convertAttributeToProperty()
[all …]
H A DStaticPropertyList.java49 public Property getExplicit(int propId) { in getExplicit() argument
50 return explicit[propId]; in getExplicit()
58 public void putExplicit(int propId, Property value) { in putExplicit() argument
59 explicit[propId] = value; in putExplicit()
60 if (values[propId] != null) { // if the cached value is set overwrite it in putExplicit()
61 values[propId] = value; in putExplicit()
70 public Property get(int propId, boolean bTryInherit, boolean bTryDefault) in get() argument
72 Property p = values[propId]; in get()
74 p = super.get(propId, bTryInherit, bTryDefault); in get()
75 values[propId] = p; in get()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/css/
H A DCSSParser.h81 bool parseValue(int propId, bool important);
84 bool parseContent(int propId, bool important);
85 bool parseQuotes(int propId, bool important);
127 bool parseShape(int propId, bool important);
149 bool parseSVGValue(int propId, bool important);
160 bool parseShadow(int propId, bool important);
162 bool parseBorderRadius(int propId, bool important);
164 bool parseReflect(int propId, bool important);
304 bool parsePage(int propId, bool important);
305 bool parseSize(int propId, bool important);
[all …]
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/fo/properties/
H A DVerticalAlignShorthandParser.java35 public Property getValueForProperty(int propId, in getValueForProperty() argument
42 switch (propId) { in getValueForProperty()
55 switch (propId) { in getValueForProperty()
68 switch (propId) { in getValueForProperty()
81 switch (propId) { in getValueForProperty()
94 switch (propId) { in getValueForProperty()
107 switch (propId) { in getValueForProperty()
120 switch (propId) { in getValueForProperty()
133 switch (propId) { in getValueForProperty()
146 switch (propId) { in getValueForProperty()
H A DPageBreakShorthandParser.java35 public Property getValueForProperty(int propId, in getValueForProperty() argument
41 if (propId == Constants.PR_KEEP_WITH_PREVIOUS in getValueForProperty()
42 || propId == Constants.PR_KEEP_WITH_NEXT in getValueForProperty()
43 || propId == Constants.PR_KEEP_TOGETHER) { in getValueForProperty()
48 } else if (propId == Constants.PR_BREAK_BEFORE in getValueForProperty()
49 || propId == Constants.PR_BREAK_AFTER) { in getValueForProperty()
H A DPropertyMaker.java51 protected int propId; field in PropertyMaker
74 return propId; in getPropId()
81 public PropertyMaker(int propId) { in PropertyMaker() argument
82 this.propId = propId; in PropertyMaker()
257 + FOPropertyMapping.getPropertyName(propId) in findProperty()
264 p = propertyList.getExplicit(propId); in findProperty()
276 p = parentPropertyList.get(propId, true, false); in findProperty()
390 + FOPropertyMapping.getPropertyName(propId) in make()
415 if ((propId & Constants.COMPOUND_MASK) != 0) { in make()
631 prop = propertyList.getExplicit(shorthand.propId); in getShorthand()
[all …]
H A DPageDimensionMaker.java38 public PageDimensionMaker(int propId) { in PageDimensionMaker() argument
39 super(propId); in PageDimensionMaker()
61 String fallbackValue = (propId == Constants.PR_PAGE_HEIGHT) in get()
66 int otherId = (propId == Constants.PR_PAGE_HEIGHT) in get()
86 if (propId == Constants.PR_PAGE_WIDTH) { in get()
95 if (propId == Constants.PR_PAGE_HEIGHT) { in get()
/dports/graphics/klatexformula/klatexformula-4.0.0/src/
H A Dklflibdbengine_p.h49 void notifyResourcePropertyChanged(int propId) in notifyResourcePropertyChanged() argument
51 emit resourcePropertyChanged(propId); in notifyResourcePropertyChanged()
54 void notifySubResourcePropertyChanged(const QString& subResource, int propId) in notifySubResourcePropertyChanged() argument
56 emit subResourcePropertyChanged(subResource, propId); in notifySubResourcePropertyChanged()
60 void resourcePropertyChanged(int propId);
61 void subResourcePropertyChanged(const QString& subResource, int propId);
H A Dklflib.cpp235 pPropId = propId; in setPropId()
256 if (propId == KLFLibEntry::Preview) in entryValue()
257 propId = KLFLibEntry::DateTime; in entryValue()
276 QString as = entryValue(a, propId); in compareLessThan()
277 QString bs = entryValue(b, propId); in compareLessThan()
548 switch (propId) { in subResourcePropertyName()
558 return QString::number(propId); in subResourcePropertyName()
732 if (propId < 0) { in loadResourceProperty()
737 if (propId < 0) in loadResourceProperty()
749 if ( !canModifyProp(propId) ) { in setResourceProperty()
[all …]
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/fo/expr/
H A DFromTableColumnFunction.java68 int propId = 0; in eval() local
70 propId = pInfo.getPropertyMaker().getPropId(); in eval()
73 propId = FOPropertyMapping.getPropertyId(propName); in eval()
77 if (propId != -1) { in eval()
110 return pInfo.getPropertyList().get(propId, false, true); in eval()
114 return ((TableColumn) cols.get(columnNumber - 1)).getProperty(propId); in eval()
121 return ((TableColumn) cols.get(columnNumber - 1)).getProperty(propId); in eval()
124 return pInfo.getPropertyList().get(propId, false, true); in eval()
/dports/www/kf5-khtml/khtml-5.89.0/src/css/
H A Dcssparser.h158 void addProperty(int propId, CSSValueImpl *value, bool important);
168 bool parseValue(int propId, bool important);
169 bool parseSVGValue(int propId, bool important);
170 bool parseShortHand(int propId, const int *properties, const int numProperties, bool important);
171 bool parse4Values(int propId, const int *properties, bool important);
172 bool parseContent(int propId, bool important);
188 …bool parseBackgroundProperty(int propId, int &propId1, int &propId2, CSSValueImpl *&retValue1, CSS…
193 bool parseShape(int propId, bool important);
196 bool parseCounter(int propId, bool increment, bool important);
214 bool parseShadow(int propId, bool important);
[all …]
/dports/games/flightgear/flightgear-2020.3.11/utils/fgqcanvas/
H A Dcanvasconnection.cpp236 int propId = newProp.value("id").toInt(); in onTextMessageReceived() local
237 if (idPropertyDict.contains(propId)) { in onTextMessageReceived()
240 idPropertyDict.insert(propId, newNode); in onTextMessageReceived()
250 int propId = v.toInt(); in onTextMessageReceived() local
251 if (!idPropertyDict.contains(propId)) { in onTextMessageReceived()
255 auto prop = idPropertyDict.value(propId); in onTextMessageReceived()
256 idPropertyDict.remove(propId); in onTextMessageReceived()
276 int propId = change.at(0).toInt(); in onTextMessageReceived() local
277 if (!idPropertyDict.contains(propId)) { in onTextMessageReceived()
278 qWarning() << "ignoring unknown prop ID " << propId; in onTextMessageReceived()
[all …]
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/widgets/
H A Dink-action.cpp15 static void ink_action_get_property( GObject* obj, guint propId, GValue* value, GParamSpec * pspec …
16 static void ink_action_set_property( GObject* obj, guint propId, const GValue *value, GParamSpec* p…
108 static void ink_action_get_property( GObject* obj, guint propId, GValue* value, GParamSpec * pspec ) in ink_action_get_property() argument
113 switch ( propId ) { in ink_action_get_property()
127 G_OBJECT_WARN_INVALID_PROPERTY_ID( obj, propId, pspec ); in ink_action_get_property()
131 void ink_action_set_property( GObject* obj, guint propId, const GValue *value, GParamSpec* pspec ) in ink_action_set_property() argument
136 switch ( propId ) { in ink_action_set_property()
153 G_OBJECT_WARN_INVALID_PROPERTY_ID( obj, propId, pspec ); in ink_action_set_property()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/plugins/styles/windowsvista/
H A Dqwindowsxpstyle_p_p.h117 QMarginsF margins(const QRect &rect, int propId = TMT_CONTENTMARGINS);
118 QMarginsF margins(int propId = TMT_CONTENTMARGINS);
122 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
124 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
300 inline QMarginsF XPThemeData::margins(const QRect &qRect, int propId) in margins() argument
306 if (SUCCEEDED(GetThemeMargins(handle(), nullptr, partId, stateId, propId, &rect, &margins))) in margins()
312 inline QMarginsF XPThemeData::margins(int propId) in margins() argument
330 int part, int state, int propId) in themeMargins() argument
333 return theme.margins(rect, propId); in themeMargins()
337 int part, int state, int propId) in themeMargins() argument
[all …]
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/plugins/styles/windowsvista/
H A Dqwindowsxpstyle_p_p.h117 QMarginsF margins(const QRect &rect, int propId = TMT_CONTENTMARGINS);
118 QMarginsF margins(int propId = TMT_CONTENTMARGINS);
122 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
124 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
300 inline QMarginsF XPThemeData::margins(const QRect &qRect, int propId) in margins() argument
306 if (SUCCEEDED(GetThemeMargins(handle(), nullptr, partId, stateId, propId, &rect, &margins))) in margins()
312 inline QMarginsF XPThemeData::margins(int propId) in margins() argument
330 int part, int state, int propId) in themeMargins() argument
333 return theme.margins(rect, propId); in themeMargins()
337 int part, int state, int propId) in themeMargins() argument
[all …]
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/plugins/styles/windowsvista/
H A Dqwindowsxpstyle_p_p.h117 QMarginsF margins(const QRect &rect, int propId = TMT_CONTENTMARGINS);
118 QMarginsF margins(int propId = TMT_CONTENTMARGINS);
122 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
124 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
300 inline QMarginsF XPThemeData::margins(const QRect &qRect, int propId) in margins() argument
306 if (SUCCEEDED(GetThemeMargins(handle(), nullptr, partId, stateId, propId, &rect, &margins))) in margins()
312 inline QMarginsF XPThemeData::margins(int propId) in margins() argument
330 int part, int state, int propId) in themeMargins() argument
333 return theme.margins(rect, propId); in themeMargins()
337 int part, int state, int propId) in themeMargins() argument
[all …]
/dports/devel/qt5-qmake/kde-qtbase-5.15.2p263/src/plugins/styles/windowsvista/
H A Dqwindowsxpstyle_p_p.h117 QMarginsF margins(const QRect &rect, int propId = TMT_CONTENTMARGINS);
118 QMarginsF margins(int propId = TMT_CONTENTMARGINS);
122 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
124 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
300 inline QMarginsF XPThemeData::margins(const QRect &qRect, int propId) in margins() argument
306 if (SUCCEEDED(GetThemeMargins(handle(), nullptr, partId, stateId, propId, &rect, &margins))) in margins()
312 inline QMarginsF XPThemeData::margins(int propId) in margins() argument
330 int part, int state, int propId) in themeMargins() argument
333 return theme.margins(rect, propId); in themeMargins()
337 int part, int state, int propId) in themeMargins() argument
[all …]
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/plugins/styles/windowsvista/
H A Dqwindowsxpstyle_p_p.h117 QMarginsF margins(const QRect &rect, int propId = TMT_CONTENTMARGINS);
118 QMarginsF margins(int propId = TMT_CONTENTMARGINS);
122 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
124 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
300 inline QMarginsF XPThemeData::margins(const QRect &qRect, int propId) in margins() argument
306 if (SUCCEEDED(GetThemeMargins(handle(), nullptr, partId, stateId, propId, &rect, &margins))) in margins()
312 inline QMarginsF XPThemeData::margins(int propId) in margins() argument
330 int part, int state, int propId) in themeMargins() argument
333 return theme.margins(rect, propId); in themeMargins()
337 int part, int state, int propId) in themeMargins() argument
[all …]
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/plugins/styles/windowsvista/
H A Dqwindowsxpstyle_p_p.h117 QMarginsF margins(const QRect &rect, int propId = TMT_CONTENTMARGINS);
118 QMarginsF margins(int propId = TMT_CONTENTMARGINS);
122 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
124 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
300 inline QMarginsF XPThemeData::margins(const QRect &qRect, int propId) in margins() argument
306 if (SUCCEEDED(GetThemeMargins(handle(), nullptr, partId, stateId, propId, &rect, &margins))) in margins()
312 inline QMarginsF XPThemeData::margins(int propId) in margins() argument
330 int part, int state, int propId) in themeMargins() argument
333 return theme.margins(rect, propId); in themeMargins()
337 int part, int state, int propId) in themeMargins() argument
[all …]
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/plugins/styles/windowsvista/
H A Dqwindowsxpstyle_p_p.h117 QMarginsF margins(const QRect &rect, int propId = TMT_CONTENTMARGINS);
118 QMarginsF margins(int propId = TMT_CONTENTMARGINS);
122 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
124 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
300 inline QMarginsF XPThemeData::margins(const QRect &qRect, int propId) in margins() argument
306 if (SUCCEEDED(GetThemeMargins(handle(), nullptr, partId, stateId, propId, &rect, &margins))) in margins()
312 inline QMarginsF XPThemeData::margins(int propId) in margins() argument
330 int part, int state, int propId) in themeMargins() argument
333 return theme.margins(rect, propId); in themeMargins()
337 int part, int state, int propId) in themeMargins() argument
[all …]
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/plugins/styles/windowsvista/
H A Dqwindowsxpstyle_p_p.h117 QMarginsF margins(const QRect &rect, int propId = TMT_CONTENTMARGINS);
118 QMarginsF margins(int propId = TMT_CONTENTMARGINS);
122 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
124 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
300 inline QMarginsF XPThemeData::margins(const QRect &qRect, int propId) in margins() argument
306 if (SUCCEEDED(GetThemeMargins(handle(), nullptr, partId, stateId, propId, &rect, &margins))) in margins()
312 inline QMarginsF XPThemeData::margins(int propId) in margins() argument
330 int part, int state, int propId) in themeMargins() argument
333 return theme.margins(rect, propId); in themeMargins()
337 int part, int state, int propId) in themeMargins() argument
[all …]
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/plugins/styles/windowsvista/
H A Dqwindowsxpstyle_p_p.h117 QMarginsF margins(const QRect &rect, int propId = TMT_CONTENTMARGINS);
118 QMarginsF margins(int propId = TMT_CONTENTMARGINS);
122 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
124 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
300 inline QMarginsF XPThemeData::margins(const QRect &qRect, int propId) in margins() argument
306 if (SUCCEEDED(GetThemeMargins(handle(), nullptr, partId, stateId, propId, &rect, &margins))) in margins()
312 inline QMarginsF XPThemeData::margins(int propId) in margins() argument
330 int part, int state, int propId) in themeMargins() argument
333 return theme.margins(rect, propId); in themeMargins()
337 int part, int state, int propId) in themeMargins() argument
[all …]
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/plugins/styles/windowsvista/
H A Dqwindowsxpstyle_p_p.h117 QMarginsF margins(const QRect &rect, int propId = TMT_CONTENTMARGINS);
118 QMarginsF margins(int propId = TMT_CONTENTMARGINS);
122 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
124 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
300 inline QMarginsF XPThemeData::margins(const QRect &qRect, int propId) in margins() argument
306 if (SUCCEEDED(GetThemeMargins(handle(), nullptr, partId, stateId, propId, &rect, &margins))) in margins()
312 inline QMarginsF XPThemeData::margins(int propId) in margins() argument
330 int part, int state, int propId) in themeMargins() argument
333 return theme.margins(rect, propId); in themeMargins()
337 int part, int state, int propId) in themeMargins() argument
[all …]
/dports/net/qt5-network/kde-qtbase-5.15.2p263/src/plugins/styles/windowsvista/
H A Dqwindowsxpstyle_p_p.h117 QMarginsF margins(const QRect &rect, int propId = TMT_CONTENTMARGINS);
118 QMarginsF margins(int propId = TMT_CONTENTMARGINS);
122 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
124 int part = 0, int state = 0, int propId = TMT_CONTENTMARGINS);
300 inline QMarginsF XPThemeData::margins(const QRect &qRect, int propId) in margins() argument
306 if (SUCCEEDED(GetThemeMargins(handle(), nullptr, partId, stateId, propId, &rect, &margins))) in margins()
312 inline QMarginsF XPThemeData::margins(int propId) in margins() argument
330 int part, int state, int propId) in themeMargins() argument
333 return theme.margins(rect, propId); in themeMargins()
337 int part, int state, int propId) in themeMargins() argument
[all …]

12345678910>>...13