Home
last modified time | relevance | path

Searched refs:componentPath (Results 1 – 25 of 63) sorted by relevance

123

/dports/math/jts/jts-jts-1.18.1/modules/app/src/main/java/org/locationtech/jtstest/testbuilder/geom/
H A DGeometryLocation.java39 private int[] componentPath; field in GeometryLocation
56 public GeometryLocation(Geometry parent, Geometry component, int[] componentPath) in GeometryLocation() argument
60 this.componentPath = componentPath; in GeometryLocation()
81 …public GeometryLocation(Geometry parent, Geometry component, int[] componentPath, int segmentIndex… in GeometryLocation() argument
86 this.componentPath = componentPath; in GeometryLocation()
125 for (int i = 0; i < componentPath.length; i++) { in pathString()
129 buf.append(componentPath[i]); in pathString()
140 for (int i = 0; i < componentPath.length; i++) { in toFacetString()
144 buf.append(componentPath[i]); in toFacetString()
/dports/science/opensim-core/opensim-core-4.1/OpenSim/Analyses/
H A DOutputReporter.cpp64 std::string componentPath; in begin() local
69 componentPath, outputName, in begin()
73 if (componentPath.empty() || componentPath[0] != '/') { in begin()
74 componentPath = "/" + componentPath; in begin()
77 componentPath, outputName, channelName, alias); in begin()
78 const auto& comp = _pvtModel->getComponent(componentPath); in begin()
/dports/www/matomo/piwik/plugins/CoreConsole/Commands/
H A DGenerateAngularDirective.php53 $componentPath = '/angularjs/directive-component';
57 $componentPath,
58 $componentPath . '/component.controller.js',
59 $componentPath . '/component.directive.html',
60 $componentPath . '/component.directive.js',
61 $componentPath . '/component.directive.less',
H A DGenerateAngularComponent.php51 $componentPath = '/angularjs/example-component';
55 $componentPath,
56 $componentPath . '/example-component.component.html',
57 $componentPath . '/example-component.component.js',
58 $componentPath . '/example-component.component.less',
/dports/devel/msbuild/msbuild-0.06/src/Tasks/
H A DResolveComReferenceCache.cs75 internal DateTime this[string componentPath]
79 if (componentTimestamps.ContainsKey(componentPath))
81 return (DateTime)componentTimestamps[componentPath];
93 if (DateTime.Compare(this[componentPath], value) != 0)
95 componentTimestamps[componentPath] = value;
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/share/qtcreator/qml/qmlpuppet/commands/
H A Drequestmodelnodepreviewimagecommand.cpp36 … const QString &componentPath, in RequestModelNodePreviewImageCommand() argument
40 , m_componentPath(componentPath) in RequestModelNodePreviewImageCommand()
55 QString RequestModelNodePreviewImageCommand::componentPath() const in componentPath() function in QmlDesigner::RequestModelNodePreviewImageCommand
69 out << command.componentPath(); in operator <<()
89 << "componentPath: " << command.componentPath() << ", " in operator <<()
H A Drequestmodelnodepreviewimagecommand.h44 const QString &componentPath, qint32 renderItemId);
48 QString componentPath() const;
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/getkin/kin-openapi/openapi3/
H A Dloader.go258 func resolvePath(basePath *url.URL, componentPath *url.URL) (*url.URL, error) {
259 if componentPath.Scheme == "" && componentPath.Host == "" {
261 if componentPath.Path[0] == '/' {
262 return componentPath, nil
264 return join(basePath, componentPath)
266 return componentPath, nil
279 componentPath *url.URL,
282 if doc, ref, componentPath, err = loader.resolveRef(doc, ref, path); err != nil {
331 return componentPath, nil
347 return componentPath, nil
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/share/qtcreator/qml/qmlpuppet/container/
H A Dinstancecontainer.cpp49 const QString &componentPath, in InstanceContainer() argument
58 ,m_componentPath(componentPath) in InstanceContainer()
86 QString InstanceContainer::componentPath() const in componentPath() function in QmlDesigner::InstanceContainer
122 out << container.componentPath(); in operator <<()
155 if (!command.componentPath().isEmpty()) in operator <<()
156 debug.nospace() << "componentPath: " << command.componentPath() << ", "; in operator <<()
H A Dinstancecontainer.h68 const QString &componentPath,
78 QString componentPath() const;
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmldesigner/components/itemlibrary/
H A Ditemlibraryitem.h45 Q_PROPERTY(QString componentPath READ componentPath FINAL)
56 QString componentPath() const;
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/
H A Dservernodeinstance.cpp210 QString static getErrorString(QQmlEngine *engine, const QString &componentPath) in getErrorString() argument
212 QQmlComponent component(engine, componentPath); in getErrorString()
222 bool isInPathList(const QStringList &pathList, const QString &componentPath) in isInPathList() argument
224 if (componentPath.indexOf("qml/QtQuick/Controls") > 0) in isInPathList()
228 return componentPath.startsWith(path); in isInPathList()
246 } else if (!instanceContainer.componentPath().isEmpty() in create()
248 instanceContainer.componentPath())) { in create()
249 …object = Internal::ObjectNodeInstance::createComponent(instanceContainer.componentPath(), nodeInst… in create()
253 …t QString errors = getErrorString(nodeInstanceServer->engine(), instanceContainer.componentPath()); in create()
254 …QString("Component with path %1 could not be created.\n\n").arg(instanceContainer.componentPath()); in create()
H A Dobjectnodeinstance.cpp753 static inline QString fixComponentPathForIncompatibleQt(const QString &componentPath) in fixComponentPathForIncompatibleQt() argument
755 QString result = componentPath; in fixComponentPathForIncompatibleQt()
758 if (componentPath.contains(importString)) { in fixComponentPathForIncompatibleQt()
759 int index = componentPath.indexOf(importString) + 8; in fixComponentPathForIncompatibleQt()
760 const QString relativeImportPath = componentPath.right(componentPath.length() - index); in fixComponentPathForIncompatibleQt()
769 fixedPath += QLatin1Char('/') + QFileInfo(componentPath).fileName(); in fixComponentPathForIncompatibleQt()
778 QObject *ObjectNodeInstance::createComponent(const QString &componentPath, QQmlContext *context) in createComponent() argument
784 QQmlComponent component(context->engine(), fixComponentPathForIncompatibleQt(componentPath)); in createComponent()
795 qDebug() << componentPath; in createComponent()
801 object->setProperty("__designer_url__", QUrl::fromLocalFile(componentPath)); in createComponent()
/dports/science/opensim-core/opensim-core-4.1/OpenSim/Common/
H A DComponentSocket.cpp62 std::string componentPath; in prependComponentPathToConnecteePath() local
67 componentPath, in prependComponentPathToConnecteePath()
71 ComponentPath path(componentPath); in prependComponentPathToConnecteePath()
/dports/net-p2p/qbittorrent/qbittorrent-4.3.9/src/gui/
H A Dfspathedit_p.cpp148 QStringRef componentPath(&path, 0, pathComponents[i].position() + pathComponents[i].size()); in validate() local
149 m_lastTestResult = testPath(componentPath, false); in validate()
152 m_lastTestedPath = componentPath.toString(); in validate()
158 QStringRef componentPath(&path, 0, pathComponents[lastComponentToTest].position() in validate() local
160 m_lastTestResult = testPath(componentPath, finalPath); in validate()
163 m_lastTestedPath = componentPath.toString(); in validate()
/dports/www/grafana8/grafana-8.3.6/vendor/go.opentelemetry.io/collector/cmd/checkdoc/
H A Dmain.go44componentPath := flag.String(relativeDefaultComponentsPath, "", "specify the relative component pa…
51 *componentPath,
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/Azure/azure-sdk-for-go/services/preview/digitaltwins/2020-05-31-preview/digitaltwins/digitaltwinsapi/
H A Dinterfaces.go41 …GetComponent(ctx context.Context, ID string, componentPath string) (result digitaltwins.SetObject,…
47 …SendComponentTelemetry(ctx context.Context, ID string, componentPath string, telemetry interface{}…
50 …UpdateComponent(ctx context.Context, ID string, componentPath string, patchDocument []interface{},…
/dports/www/grafana8/azure-sdk-for-go-sdk-azidentity-v0.10.0/services/preview/digitaltwins/2020-05-31-preview/digitaltwins/digitaltwinsapi/
H A Dinterfaces.go41 …GetComponent(ctx context.Context, ID string, componentPath string) (result digitaltwins.SetObject,…
47 …SendComponentTelemetry(ctx context.Context, ID string, componentPath string, telemetry interface{}…
50 …UpdateComponent(ctx context.Context, ID string, componentPath string, patchDocument []interface{},…
/dports/www/grafana8/azure-sdk-for-go-sdk-azcore-v0.19.0/services/preview/digitaltwins/2020-05-31-preview/digitaltwins/digitaltwinsapi/
H A Dinterfaces.go41 …GetComponent(ctx context.Context, ID string, componentPath string) (result digitaltwins.SetObject,…
47 …SendComponentTelemetry(ctx context.Context, ID string, componentPath string, telemetry interface{}…
50 …UpdateComponent(ctx context.Context, ID string, componentPath string, patchDocument []interface{},…
/dports/sysutils/restic/restic-0.12.1/vendor/github.com/Azure/azure-sdk-for-go/services/preview/digitaltwins/2020-05-31-preview/digitaltwins/digitaltwinsapi/
H A Dinterfaces.go41 …GetComponent(ctx context.Context, ID string, componentPath string) (result digitaltwins.SetObject,…
47 …SendComponentTelemetry(ctx context.Context, ID string, componentPath string, telemetry interface{}…
50 …UpdateComponent(ctx context.Context, ID string, componentPath string, patchDocument []interface{},…
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/Azure/azure-sdk-for-go/services/preview/digitaltwins/2020-05-31-preview/digitaltwins/digitaltwinsapi/
H A Dinterfaces.go41 …GetComponent(ctx context.Context, ID string, componentPath string) (result digitaltwins.SetObject,…
47 …SendComponentTelemetry(ctx context.Context, ID string, componentPath string, telemetry interface{}…
50 …UpdateComponent(ctx context.Context, ID string, componentPath string, patchDocument []interface{},…
/dports/security/vault/vault-1.8.2/vendor/github.com/Azure/azure-sdk-for-go/services/preview/digitaltwins/2020-05-31-preview/digitaltwins/digitaltwinsapi/
H A Dinterfaces.go52 …GetComponent(ctx context.Context, ID string, componentPath string) (result digitaltwins.SetObject,…
58 …SendComponentTelemetry(ctx context.Context, ID string, componentPath string, telemetry interface{}…
61 …UpdateComponent(ctx context.Context, ID string, componentPath string, patchDocument []interface{},…
/dports/www/grafana8/azure-sdk-for-go-sdk-internal-v0.7.0/services/preview/digitaltwins/2020-05-31-preview/digitaltwins/digitaltwinsapi/
H A Dinterfaces.go41 …GetComponent(ctx context.Context, ID string, componentPath string) (result digitaltwins.SetObject,…
47 …SendComponentTelemetry(ctx context.Context, ID string, componentPath string, telemetry interface{}…
50 …UpdateComponent(ctx context.Context, ID string, componentPath string, patchDocument []interface{},…
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/Azure/azure-sdk-for-go/services/preview/digitaltwins/2020-05-31-preview/digitaltwins/digitaltwinsapi/
H A Dinterfaces.go52 …GetComponent(ctx context.Context, ID string, componentPath string) (result digitaltwins.SetObject,…
58 …SendComponentTelemetry(ctx context.Context, ID string, componentPath string, telemetry interface{}…
61 …UpdateComponent(ctx context.Context, ID string, componentPath string, patchDocument []interface{},…
/dports/x11/plasma5-plasma-desktop/plasma-desktop-5.23.5/kcms/keys/
H A Dkeysdata.cpp47 for (const auto &componentPath : components) { in KeysData() local
48 …lComponentInterface component(QStringLiteral("org.kde.kglobalaccel"), componentPath.path(), QDBusC… in KeysData()

123