Home
last modified time | relevance | path

Searched refs:xmlInfo (Results 1 – 25 of 43) sorted by relevance

12

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform/ant/org.eclipse.ant.ui/Ant Editor/org/eclipse/ant/internal/ui/editor/text/
H A DAntEditorDocumentProvider.java58 return xmlInfo.fAntModel; in getAntModel()
102 xmlInfo.fModel = annotationModel; in createFileInfo()
104 annotationModel = xmlInfo.fModel; in createFileInfo()
114 xmlInfo.fAntModel = antModel; in createFileInfo()
116 return xmlInfo; in createFileInfo()
123 if (xmlInfo.fAntModel != null) { in disposeFileInfo()
129 lock = xmlInfo.fAntModel; in disposeFileInfo()
132 xmlInfo.fAntModel.dispose(); in disposeFileInfo()
133 xmlInfo.fAntModel = null; in disposeFileInfo()
136 xmlInfo.fAntModel.dispose(); in disposeFileInfo()
[all …]
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/meshlab/
H A Dplugindialog.cpp152 …fc.xmlInfo = MLXMLPluginInfo::createXMLPluginInfo(xmlFile,MLXMLUtilityFunctions::xmlSchemaFile(),x… in populateTreeWidget()
153 if (fc.xmlInfo != NULL) in populateTreeWidget()
155 QStringList fn = fc.xmlInfo->filterNames(); in populateTreeWidget()
158 MLXMLPluginInfo::destroyXMLPluginInfo(fc.xmlInfo); in populateTreeWidget()
233 …fc.xmlInfo = MLXMLPluginInfo::createXMLPluginInfo(xmlFile,MLXMLUtilityFunctions::xmlSchemaFile(),x… in displayInfo()
234 if (fc.xmlInfo != NULL) in displayInfo()
236 QStringList ls = fc.xmlInfo->filterNames(); in displayInfo()
238 labelInfo->setText(fc.xmlInfo->filterHelp(fn)); in displayInfo()
240 MLXMLPluginInfo::destroyXMLPluginInfo(fc.xmlInfo); in displayInfo()
H A Dfilterthread.cpp41 if ((it == _pm.stringXMLFilterMap.end()) || (it->xmlInfo == NULL)) in run()
56 …if (it->xmlInfo->filterAttribute(_fname,MLXMLElNames::filterArity) == MLXMLElNames::singleMeshArit… in run()
H A Dxmlstdpardialog.cpp59 ql = new QLabel("<i>"+curmfc->xmlInfo->filterHelp(fname)+"</i>",qf); in loadFrameContent()
88 QString postCond = curmfc->xmlInfo->filterAttribute(fname,MLXMLElNames::filterPostCond); in loadFrameContent()
105 …MLXMLPluginInfo::XMLMapList mplist = curmfc->xmlInfo->filterParametersExtendedInfo(curmfc->filterN… in loadFrameContent()
136 if (mfc.xmlInfo == NULL) in showAutoDialog()
152 curParMap = mfc.xmlInfo->filterParametersExtendedInfo(fname); in showAutoDialog()
419 if (curmfc->xmlInfo == nullptr) in savePersistent()
435 …QString inter = curmfc->xmlInfo->filterAttribute(curmfc->act->text(),MLXMLElNames::filterIsInterru… in setDialogStateRelativeToFilterExecution()
483 if ((filtcont.act == nullptr) || (filtcont.xmlInfo == nullptr)) in loadFrameContent()
492 …MLXMLPluginInfo::XMLMapList mplist = filtcont.xmlInfo->filterParametersExtendedInfo(filtcont.filte… in loadFrameContent()
1722 if ((_mfc.act != NULL) && (_mfc.xmlInfo != NULL)) in resetValues()
[all …]
H A Dmainwindow_RunTime.cpp952 MLXMLPluginInfo* info = cont.xmlInfo; in runFilterScript()
1054 QString postCond = cont.xmlInfo->filterAttribute(filtnm, MLXMLElNames::filterPostCond); in runFilterScript()
1193 if ((iXMLFilter == NULL) || (filt.xmlInfo == NULL) || (filt.act == NULL)) in startFilter()
1195 QString filterClasses = filt.xmlInfo->filterAttribute(fname,MLXMLElNames::filterClass); in startFilter()
1204 QString preCond = filt.xmlInfo->filterAttribute(fname,MLXMLElNames::filterPreCond); in startFilter()
1229 MLXMLPluginInfo::XMLMapList params = filt.xmlInfo->filterParametersExtendedInfo(fname); in startFilter()
1749 bool jscode = (mfc->xmlInfo->filterScriptCode(mfc->act->text()) != ""); in executeFilter()
1757 QString postCond = mfc->xmlInfo->filterAttribute(fname,MLXMLElNames::filterPostCond); in executeFilter()
1814 MLXMLPluginInfo::XMLMapList ml = mfc->xmlInfo->filterParametersExtendedInfo(fname); in executeFilter()
1896 QString filterClasses = mfc->xmlInfo->filterAttribute(fname,MLXMLElNames::filterClass); in postFilterExecution()
[all …]
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/tests/
H A Dimage_load_test.cpp141 data::ImageInfo xmlInfo, textInfo, binaryInfo; variable
143 SerializeObjectAll(info, xmlInfo, textInfo, binaryInfo);
145 REQUIRE(info.Width() == xmlInfo.Width());
146 REQUIRE(info.Height() == xmlInfo.Height());
147 REQUIRE(info.Channels() == xmlInfo.Channels());
148 REQUIRE(info.Quality() == xmlInfo.Quality());
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/common/
H A Dxmlfilterinfo.h311 xmlInfo = NULL; in MeshLabXMLFilterContainer()
316 MLXMLPluginInfo* xmlInfo; member
321 return ((act != NULL) && (xmlInfo != NULL) && (filterInterface != NULL)); in isValid()
334 if ((act == nullptr) || (xmlInfo == nullptr)) in readPersistentValueFromSettings()
338 …QString filterscriptname = xmlInfo->filterAttribute(filtname, MLXMLElNames::filterScriptFunctName); in readPersistentValueFromSettings()
339 …mpleteVariableProgrammingName(MLXMLUtilityFunctions::pluginsNameSpace(), xmlInfo->pluginScriptName… in readPersistentValueFromSettings()
340 …QString defval = xmlInfo->filterParameterExtendedInfo(filtname, varname)[MLXMLElNames::paramDefExp… in readPersistentValueFromSettings()
347 if ((act == nullptr) || (xmlInfo == nullptr)) in writePersistentValueIntoSettings()
351 …QString filterscriptname = xmlInfo->filterAttribute(filtname, MLXMLElNames::filterScriptFunctName); in writePersistentValueIntoSettings()
352 …mpleteVariableProgrammingName(MLXMLUtilityFunctions::pluginsNameSpace(), xmlInfo->pluginScriptName… in writePersistentValueIntoSettings()
H A Dscriptinterface.cpp21 QString ScriptAdapterGenerator::parNames(const QString& filterName, MLXMLPluginInfo& xmlInfo) const in parNames()
25 MLXMLPluginInfo::XMLMapList params = xmlInfo.filterParametersExtendedInfo(filterName); in parNames()
28 QString ariet = xmlInfo.filterAttribute(filterName, MLXMLElNames::filterArity); in parNames()
32 if ((names.isEmpty()) && isSingle && (xmlInfo.filterScriptCode(filterName) == "")) in parNames()
35 if (isSingle && (xmlInfo.filterScriptCode(filterName) == "")) in parNames()
70 …ScriptAdapterGenerator::funCodeGenerator(const QString& filterName, MLXMLPluginInfo& xmlInfo) const in funCodeGenerator()
73 QString names = parNames(filterName, xmlInfo); in funCodeGenerator()
77 MLXMLPluginInfo::XMLMapList mplist = xmlInfo.filterParametersExtendedInfo(filterName); in funCodeGenerator()
92 QString ariet = xmlInfo.filterAttribute(filterName, MLXMLElNames::filterArity); in funCodeGenerator()
H A Dscriptinterface.h45 QString parNames(const QString& filterName,MLXMLPluginInfo& xmlInfo) const;
47 QString funCodeGenerator(const QString& filtername,MLXMLPluginInfo& xmlInfo) const;
H A Dpluginmanager.cpp401 fc.xmlInfo = xmlpluginfo[xmlpluginfo.size() - 1]; in loadXMLPlugin()
508 if (xmlpluginfo[ii] == it.value().xmlInfo) in deleteXMLPlugin()
/dports/devel/staf/src/staf/services/stax/service/
H A DSTAXImportAction.java134 String xmlInfo = "<import"; in getXMLInfo() local
137 xmlInfo += " file=\"" + fFile + "\""; in getXMLInfo()
139 xmlInfo += " directory=\"" + fDirectory + "\""; in getXMLInfo()
142 xmlInfo += " machine=\"" + fMachine + "\""; in getXMLInfo()
146 xmlInfo += " replace=\"" + fUnevalReplace + "\""; in getXMLInfo()
149 xmlInfo += " mode=\"" + fMode + "\""; in getXMLInfo()
151 xmlInfo += ">"; in getXMLInfo()
155 xmlInfo += "\n <import-include>" + fImportInclude + in getXMLInfo()
161 xmlInfo += "\n <import-exclude>" + fImportExclude + in getXMLInfo()
165 xmlInfo += "\n</import>"; in getXMLInfo()
[all …]
H A DSTAXSTAFCommandAction.java215 StringBuffer xmlInfo = new StringBuffer(); in getXMLInfo() local
218 xmlInfo.append("<stafcmd>\n"); in getXMLInfo()
220 xmlInfo.append("<stafcmd name=\"" + fName + "\">\n"); in getXMLInfo()
222 xmlInfo.append(" <location>").append(fLocation).append( in getXMLInfo()
227 return xmlInfo.toString(); in getXMLInfo()
H A DSTAXFunctionAction.java341 String xmlInfo = "<function=\"" + fName + "\""; in getXMLInfo() local
344 xmlInfo += " scope=\"" + fScope + "\""; in getXMLInfo()
347 xmlInfo += " requires=\"" + fRequires + "\""; in getXMLInfo()
349 xmlInfo += "/>"; in getXMLInfo()
351 return xmlInfo; in getXMLInfo()
H A DSTAXThread.java1259 public void setSignalMsgVar(String signalMsgVarName, String xmlInfo) in setSignalMsgVar() argument
1261 setSignalMsgVar(signalMsgVarName, xmlInfo, null); in setSignalMsgVar()
1277 String xmlInfo, in setSignalMsgVar() argument
1282 if (xmlInfo != null) in setSignalMsgVar()
1285 msg.append(xmlInfo); in setSignalMsgVar()
/dports/audio/carla/Carla-2.4.1/source/utils/
H A DCarlaStateUtils.cpp302 …for (XmlElement* xmlInfo = elem->getFirstChildElement(); xmlInfo != nullptr; xmlInfo = xmlInfo->ge… in fillFromXmlElement() local
304 const String& tag(xmlInfo->getTagName()); in fillFromXmlElement()
305 const String text(xmlInfo->getAllSubText().trim()); in fillFromXmlElement()
/dports/devel/staf/src/staf/services/stax/beta/service/
H A DSTAXThread.java1193 public void setSignalMsgVar(String signalMsgVarName, String xmlInfo) in setSignalMsgVar() argument
1195 setSignalMsgVar(signalMsgVarName, xmlInfo, null); in setSignalMsgVar()
1211 String xmlInfo, in setSignalMsgVar() argument
1216 if (xmlInfo != null) in setSignalMsgVar()
1219 msg.append(xmlInfo); in setSignalMsgVar()
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/ebooks/lrf/pylrs/
H A Dpylrs.py673 xmlInfo = f.getvalue().decode('utf-8')
674 xmlInfo = re.sub(r"<CThumbnail.*?>\n", "", xmlInfo)
675 xmlInfo = xmlInfo.replace("SumPage>", "Page>")
676 lrfWriter.docInfoXml = xmlInfo
/dports/devel/juce/JUCE-f37e9a1/modules/juce_audio_processors/format_types/
H A Djuce_VSTPluginFormat.cpp997 xmlInfo.reset (VSTXMLInfo::createFor (*xml)); in VSTPluginInstance()
1022 if (xmlInfo != nullptr) in refreshParameterList()
1024 if (auto* param = xmlInfo->getParamForID (i, nullptr)) in refreshParameterList()
1049 valueType = &xmlInfo->switchValueType; in refreshParameterList()
1053 valueType = xmlInfo->getValueType (param->type); in refreshParameterList()
2048 std::unique_ptr<VSTXMLInfo> xmlInfo; member
/dports/audio/carla/Carla-2.4.1/source/modules/juce_audio_processors/format_types/
H A Djuce_VSTPluginFormat.cpp994 xmlInfo.reset (VSTXMLInfo::createFor (*xml)); in VSTPluginInstance()
1019 if (xmlInfo != nullptr) in refreshParameterList()
1021 if (auto* param = xmlInfo->getParamForID (i, nullptr)) in refreshParameterList()
1046 valueType = &xmlInfo->switchValueType; in refreshParameterList()
1050 valueType = xmlInfo->getValueType (param->type); in refreshParameterList()
2045 std::unique_ptr<VSTXMLInfo> xmlInfo; member
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/denisenkom/go-mssqldb/
H A Dtypes.go92 XmlInfo xmlInfo
109 type xmlInfo struct { struct
/dports/sysutils/helmfile/vault-f6547fa8e820/vendor/github.com/denisenkom/go-mssqldb/
H A Dtypes.go95 XmlInfo xmlInfo
112 type xmlInfo struct { struct
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/pressly/goose/vendor/github.com/denisenkom/go-mssqldb/
H A Dtypes.go91 XmlInfo xmlInfo
108 type xmlInfo struct { struct
/dports/www/gitea/gitea-1.16.5/vendor/github.com/denisenkom/go-mssqldb/
H A Dtypes.go92 XmlInfo xmlInfo
109 type xmlInfo struct { struct
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/doug-martin/goqu/v9/vendor/github.com/denisenkom/go-mssqldb/
H A Dtypes.go92 XmlInfo xmlInfo
109 type xmlInfo struct { struct
/dports/misc/concourse/vault-bdd38fca2cff/vendor/github.com/denisenkom/go-mssqldb/
H A Dtypes.go95 XmlInfo xmlInfo
112 type xmlInfo struct { struct

12