Home
last modified time | relevance | path

Searched refs:sPropName (Results 1 – 25 of 122) sorted by relevance

12345

/dports/lang/spidermonkey60/firefox-60.9.0/modules/pdfium/pdfium/fpdfsdk/javascript/
H A DJS_GlobalData.cpp35 sPropName->TrimLeft(); in TrimPropName()
36 sPropName->TrimRight(); in TrimPropName()
99 if (!TrimPropName(&sPropName)) in SetGlobalVariableNumber()
108 pNewData->data.sKey = sPropName; in SetGlobalVariableNumber()
117 if (!TrimPropName(&sPropName)) in SetGlobalVariableBoolean()
126 pNewData->data.sKey = sPropName; in SetGlobalVariableBoolean()
135 if (!TrimPropName(&sPropName)) in SetGlobalVariableString()
154 if (!TrimPropName(&sPropName)) in SetGlobalVariableObject()
171 if (!TrimPropName(&sPropName)) in SetGlobalVariableNull()
187 if (!TrimPropName(&sPropName)) in SetGlobalVariablePersistent()
[all …]
/dports/www/baikal/baikal/Core/Frameworks/Flake/Core/
H A DModel.php39 function __get($sPropName) { argument
40 return $this->get($sPropName);
51 function get($sPropName) { argument
52 if (array_key_exists($sPropName, $this->aData)) {
53 return $this->aData[$sPropName];
56 …throw new \Exception("\Flake\Core\Model->get(): property " . htmlspecialchars($sPropName) . " does…
59 function set($sPropName, $sPropValue) { argument
60 if (array_key_exists($sPropName, $this->aData)) {
61 $this->aData[$sPropName] = $sPropValue;
66 …throw new \Exception("\Flake\Core\Model->set(): property " . htmlspecialchars($sPropName) . " does…
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/pdfium/fxjs/
H A Dcfx_globaldata.cpp36 bool TrimPropName(ByteString* sPropName) { in TrimPropName() argument
37 sPropName->Trim(); in TrimPropName()
38 return sPropName->GetLength() != 0; in TrimPropName()
133 if (!TrimPropName(&sPropName)) in SetGlobalVariableNumber()
151 if (!TrimPropName(&sPropName)) in SetGlobalVariableBoolean()
169 if (!TrimPropName(&sPropName)) in SetGlobalVariableString()
186 ByteString sPropName, in SetGlobalVariableObject() argument
188 if (!TrimPropName(&sPropName)) in SetGlobalVariableObject()
205 if (!TrimPropName(&sPropName)) in SetGlobalVariableNull()
221 if (!TrimPropName(&sPropName)) in SetGlobalVariablePersistent()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pdfium/fxjs/
H A Dcfx_globaldata.cpp35 bool TrimPropName(ByteString* sPropName) { in TrimPropName() argument
36 sPropName->Trim(); in TrimPropName()
37 return sPropName->GetLength() != 0; in TrimPropName()
132 if (!TrimPropName(&sPropName)) in SetGlobalVariableNumber()
150 if (!TrimPropName(&sPropName)) in SetGlobalVariableBoolean()
168 if (!TrimPropName(&sPropName)) in SetGlobalVariableString()
185 ByteString sPropName, in SetGlobalVariableObject() argument
187 if (!TrimPropName(&sPropName)) in SetGlobalVariableObject()
204 if (!TrimPropName(&sPropName)) in SetGlobalVariableNull()
220 if (!TrimPropName(&sPropName)) in SetGlobalVariablePersistent()
[all …]
/dports/editors/texmaker/texmaker-5.0.3/pdfium/fpdfsdk/javascript/
H A DJS_GlobalData.cpp98 sPropName->TrimLeft(); in TrimPropName()
99 sPropName->TrimRight(); in TrimPropName()
159 if (!TrimPropName(&sPropName)) in SetGlobalVariableNumber()
168 pNewData->data.sKey = sPropName; in SetGlobalVariableNumber()
177 if (!TrimPropName(&sPropName)) in SetGlobalVariableBoolean()
186 pNewData->data.sKey = sPropName; in SetGlobalVariableBoolean()
195 if (!TrimPropName(&sPropName)) in SetGlobalVariableString()
214 if (!TrimPropName(&sPropName)) in SetGlobalVariableObject()
231 if (!TrimPropName(&sPropName)) in SetGlobalVariableNull()
248 if (!TrimPropName(&sPropName)) in SetGlobalVariablePersistent()
[all …]
/dports/www/baikal/baikal/Core/Frameworks/Formal/Form/
H A DMorphology.php41 protected function keyForPropName($sPropName) { argument
47 if ($oElement->option("prop") === $sPropName) {
55 function &element($sPropName) { argument
56 if (($sKey = $this->keyForPropName($sPropName)) === false) {
57 …throw new \Exception("\Formal\Form\Morphology->element(): Element prop='" . $sPropName . "' not fo…
65 function remove($sPropName) { argument
66 if (($sKey = $this->keyForPropName($sPropName)) === false) {
67 …throw new \Exception("\Formal\Form\Morphology->element(): Element prop='" . $sPropName . "' not fo…
/dports/www/baikal/baikal/Core/Frameworks/Baikal/Model/
H A DCalendar.php97 function get($sPropName) { argument
98 if ($sPropName === "components") {
99 return $this->oCalendar->get($sPropName);
102 if ($sPropName === "todos") {
113 if ($sPropName === "notes") {
124 return parent::get($sPropName);
127 function set($sPropName, $sValue) { argument
128 if ($sPropName === "components") {
132 if ($sPropName === "todos") {
152 if ($sPropName === "notes") {
[all …]
H A DUser.php81 function get($sPropName) { argument
82 if ($sPropName === "password" || $sPropName === "passwordconfirm") {
89 $sRes = parent::get($sPropName);
93 $sRes = $this->oIdentityPrincipal->get($sPropName);
102 function set($sPropName, $sPropValue) { argument
103 if ($sPropName === "password" || $sPropName === "passwordconfirm") {
106 if ($sPropName === "password" && $sPropValue !== "") {
118 parent::set($sPropName, $sPropValue);
122 $this->oIdentityPrincipal->set($sPropName, $sPropValue);
/dports/www/itop/web/core/
H A Dsimplegraph.class.inc.php80 * @param string $sPropName The name of the property to get
84 public function GetProperty($sPropName, $defaultValue = null) argument
86 …return array_key_exists($sPropName, $this->aProperties) ? $this->aProperties[$sPropName] : $defaul…
91 * @param string $sPropName The name of the property to set
95 public function SetProperty($sPropName, $value) argument
97 $this->aProperties[$sPropName] = $value;
198 * @param string $sPropName The name of the property to set
205 if ($this->GetProperty($sPropName, null) == null)
208 $this->SetProperty($sPropName, $value);
213 $oEdge->SetProperty($sPropName, $value);
[all …]
H A Dmodelreflection.class.inc.php49 abstract public function GetAttributeProperty($sClass, $sAttCode, $sPropName, $default = null); argument
174 public function GetAttributeProperty($sClass, $sAttCode, $sPropName, $default = null) argument
180 if (array_key_exists($sPropName, $aParams))
182 $ret = $aParams[$sPropName];
187 if ($sPropName == 'targetclass')
/dports/editors/libreoffice/libreoffice-7.2.6.2/reportdesign/source/core/sdr/
H A DPropertyForward.cxx103 OUString sPropName; in propertyChange() local
105 sPropName = aFind->second.first; in propertyChange()
115 sPropName = aFind->first; in propertyChange()
117 … if (aFind != m_aNameMap.end() && !sPropName.isEmpty() && xPropInfo->hasPropertyByName(sPropName)) in propertyChange()
118 … xProp->setPropertyValue(sPropName,aFind->second.second->operator()(sPropName,evt.NewValue)); in propertyChange()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/reportdesign/source/core/sdr/
H A DPropertyForward.cxx105 OUString sPropName; in propertyChange() local
107 sPropName = aFind->second.first; in propertyChange()
117 sPropName = aFind->first; in propertyChange()
119 … if (aFind != m_aNameMap.end() && !sPropName.isEmpty() && xPropInfo->hasPropertyByName(sPropName)) in propertyChange()
120 … xProp->setPropertyValue(sPropName,aFind->second.second->operator()(sPropName,evt.NewValue)); in propertyChange()
/dports/editors/libreoffice/libreoffice-7.2.6.2/wizards/com/sun/star/wizards/db/
H A DColumnPropertySet.java67 String sPropName = _aNewColPropertyValues[i].Name; in assignPropertyValues() local
68 if (_sNewName != null && sPropName.equals(PropertyNames.PROPERTY_NAME)) in assignPropertyValues()
72 else if (sPropName.equals("Precision")) in assignPropertyValues()
76 else if ((!sPropName.equals("Type")) && (!sPropName.equals("TypeName"))) in assignPropertyValues()
79 assignPropertyValue(sPropName, oColValue); in assignPropertyValues()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/wizards/com/sun/star/wizards/db/
H A DColumnPropertySet.java67 String sPropName = _aNewColPropertyValues[i].Name; in assignPropertyValues() local
68 if (_sNewName != null && sPropName.equals(PropertyNames.PROPERTY_NAME)) in assignPropertyValues()
72 else if (sPropName.equals("Precision")) in assignPropertyValues()
76 else if ((!sPropName.equals("Type")) && (!sPropName.equals("TypeName"))) in assignPropertyValues()
79 assignPropertyValue(sPropName, oColValue); in assignPropertyValues()
/dports/www/baikal/baikal/Core/Frameworks/Formal/
H A DForm.php140 $sPropName = $oElement->option("prop");
144 $sPostValue = $this->postValue($sPropName);
150 $sPropName,
156 $sPropName
327 function postValue($sPropName) { argument
330 if (is_array($aData) && array_key_exists($sPropName, $aData)) {
331 return $aData[$sPropName];
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/filter/html/
H A Dhtmlform.cxx964 sPropName = "TextColor"; in InsertControl()
974 sPropName = "FontHeight"; in InsertControl()
989 sPropName = "FontName"; in InsertControl()
995 sPropName = "FontStyleName"; in InsertControl()
1001 sPropName = "FontFamily"; in InsertControl()
1007 sPropName = "FontCharset"; in InsertControl()
1013 sPropName = "FontPitch"; in InsertControl()
1021 sPropName = "FontWeight"; in InsertControl()
1032 sPropName = "FontSlant"; in InsertControl()
1041 sPropName = "FontUnderline"; in InsertControl()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/source/filter/html/
H A Dhtmlform.cxx956 sPropName = "TextColor"; in InsertControl()
966 sPropName = "FontHeight"; in InsertControl()
981 sPropName = "FontName"; in InsertControl()
987 sPropName = "FontStyleName"; in InsertControl()
993 sPropName = "FontFamily"; in InsertControl()
999 sPropName = "FontCharset"; in InsertControl()
1005 sPropName = "FontPitch"; in InsertControl()
1013 sPropName = "FontWeight"; in InsertControl()
1024 sPropName = "FontSlant"; in InsertControl()
1033 sPropName = "FontUnderline"; in InsertControl()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/dbaccess/source/core/api/
H A Dstatement.cxx216 OUString sPropName; in convertFastPropertyValue() local
217 getInfoHelper().fillPropertyMembersByHandle( &sPropName, nullptr, nHandle ); in convertFastPropertyValue()
220 Any aCurrentValue = m_xAggregateAsSet->getPropertyValue( sPropName ); in convertFastPropertyValue()
254 OUString sPropName; in setFastPropertyValue_NoBroadcast() local
255 getInfoHelper().fillPropertyMembersByHandle( &sPropName, nullptr, nHandle ); in setFastPropertyValue_NoBroadcast()
256 m_xAggregateAsSet->setPropertyValue( sPropName, rValue ); in setFastPropertyValue_NoBroadcast()
279 OUString sPropName; in getFastPropertyValue() local
280 …StatementBase* >( this )->getInfoHelper().fillPropertyMembersByHandle( &sPropName, nullptr, nHandl… in getFastPropertyValue()
281 rValue = m_xAggregateAsSet->getPropertyValue( sPropName ); in getFastPropertyValue()
H A Ddefinitioncolumn.cxx317 OUString sPropName; in getFastPropertyValue() local
319 … OQueryColumn* >( this )->getInfoHelper().fillPropertyMembersByHandle( &sPropName, &nAttributes, _… in getFastPropertyValue()
320 …OSL_ENSURE( !sPropName.isEmpty(), "OColumnWrapper::impl_getPropertyNameFromHandle: property not fo… in getFastPropertyValue()
322 _rValue = m_xOriginalTableColumn->getPropertyValue( sPropName ); in getFastPropertyValue()
361 OUString sPropName; in impl_getPropertyNameFromHandle() local
363 …const_cast< OColumnWrapper* >( this )->getInfoHelper().fillPropertyMembersByHandle( &sPropName, &n… in impl_getPropertyNameFromHandle()
364 …OSL_ENSURE( !sPropName.isEmpty(), "OColumnWrapper::impl_getPropertyNameFromHandle: property not fo… in impl_getPropertyNameFromHandle()
365 return sPropName; in impl_getPropertyNameFromHandle()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/dbaccess/source/core/api/
H A Dstatement.cxx218 OUString sPropName; in convertFastPropertyValue() local
219 getInfoHelper().fillPropertyMembersByHandle( &sPropName, nullptr, nHandle ); in convertFastPropertyValue()
222 Any aCurrentValue = m_xAggregateAsSet->getPropertyValue( sPropName ); in convertFastPropertyValue()
256 OUString sPropName; in setFastPropertyValue_NoBroadcast() local
257 getInfoHelper().fillPropertyMembersByHandle( &sPropName, nullptr, nHandle ); in setFastPropertyValue_NoBroadcast()
258 m_xAggregateAsSet->setPropertyValue( sPropName, rValue ); in setFastPropertyValue_NoBroadcast()
281 OUString sPropName; in getFastPropertyValue() local
282 …StatementBase* >( this )->getInfoHelper().fillPropertyMembersByHandle( &sPropName, nullptr, nHandl… in getFastPropertyValue()
283 rValue = m_xAggregateAsSet->getPropertyValue( sPropName ); in getFastPropertyValue()
H A Ddefinitioncolumn.cxx320 OUString sPropName; in getFastPropertyValue() local
322 … OQueryColumn* >( this )->getInfoHelper().fillPropertyMembersByHandle( &sPropName, &nAttributes, _… in getFastPropertyValue()
323 …OSL_ENSURE( !sPropName.isEmpty(), "OColumnWrapper::impl_getPropertyNameFromHandle: property not fo… in getFastPropertyValue()
325 _rValue = m_xOriginalTableColumn->getPropertyValue( sPropName ); in getFastPropertyValue()
364 OUString sPropName; in impl_getPropertyNameFromHandle() local
366 …const_cast< OColumnWrapper* >( this )->getInfoHelper().fillPropertyMembersByHandle( &sPropName, &n… in impl_getPropertyNameFromHandle()
367 …OSL_ENSURE( !sPropName.isEmpty(), "OColumnWrapper::impl_getPropertyNameFromHandle: property not fo… in impl_getPropertyNameFromHandle()
368 return sPropName; in impl_getPropertyNameFromHandle()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/setup_native/source/win32/customactions/reg4allmsdoc/
H A Dreg4allmsi.cxx161 WCHAR sPropName[256]; in registerForExtension() local
162 StringCchCopyW( sPropName, 256, L"REGISTER_" ); in registerForExtension()
163 StringCchCatW( sPropName, 256, (g_Extensions[nIndex])+1 ); in registerForExtension()
164 CharUpperBuffW( sPropName+9, 4 ); in registerForExtension()
167 MsiSetPropertyW( handle, sPropName, L"1" ); in registerForExtension()
168 OutputDebugStringFormatW( L"Set MSI property %s.\n", sPropName ); in registerForExtension()
170 MsiSetPropertyW( handle, sPropName, L"0" ); in registerForExtension()
171 OutputDebugStringFormatW( L"Unset MSI property %s.\n", sPropName ); in registerForExtension()
/dports/editors/libreoffice/libreoffice-7.2.6.2/setup_native/source/win32/customactions/reg4allmsdoc/
H A Dreg4allmsi.cxx161 WCHAR sPropName[256]; in registerForExtension() local
162 StringCchCopyW( sPropName, 256, L"REGISTER_" ); in registerForExtension()
163 StringCchCatW( sPropName, 256, (g_Extensions[nIndex])+1 ); in registerForExtension()
164 CharUpperBuffW( sPropName+9, 4 ); in registerForExtension()
167 MsiSetPropertyW( handle, sPropName, L"1" ); in registerForExtension()
168 OutputDebugStringFormatW( L"Set MSI property %s.\n", sPropName ); in registerForExtension()
170 MsiSetPropertyW( handle, sPropName, L"0" ); in registerForExtension()
171 OutputDebugStringFormatW( L"Unset MSI property %s.\n", sPropName ); in registerForExtension()
/dports/editors/libreoffice/libreoffice-7.2.6.2/xmloff/source/core/
H A Dxmlimp.cxx979 OUString sPropName(XML_NUMBERSTYLES); in initialize() local
980 if (xPropertySetInfo->hasPropertyByName(sPropName)) in initialize()
986 sPropName = "PrivateData"; in initialize()
987 if (xPropertySetInfo->hasPropertyByName(sPropName)) in initialize()
1000 sPropName = "BaseURI"; in initialize()
1001 if (xPropertySetInfo->hasPropertyByName(sPropName)) in initialize()
1009 sPropName = "StreamRelPath"; in initialize()
1016 sPropName = "StreamName"; in initialize()
1030 sPropName = "ShapePositionInHoriL2R"; in initialize()
1036 sPropName = "TextDocInOOoFileFormat"; in initialize()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/forms/source/xforms/
H A Dpropertysetbase.cxx85 OUString sPropName; in notifyAndCachePropertyValue() local
86 … OSL_VERIFY( rPropertyMetaData.fillPropertyMembersByHandle( &sPropName, nullptr, nHandle ) ); in notifyAndCachePropertyValue()
87 Property aProperty = rPropertyMetaData.getPropertyByName( sPropName ); in notifyAndCachePropertyValue()

12345