Home
last modified time | relevance | path

Searched refs:markerType (Results 1 – 25 of 208) sorted by relevance

123456789

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/
H A DMarkerFilter.java562 if (markerType != null) { in restoreFilterSettings()
563 newTypes.remove(markerType); in restoreFilterSettings()
567 selectedTypes.add(markerType); in restoreFilterSettings()
604 if (markerType != null && !selectedTypes.contains(markerType)) { in generateSelectedTypes()
605 selectedTypes.add(markerType); in generateSelectedTypes()
658 if (markerType != null) { in restoreFilterSettings()
659 newTypes.remove(markerType); in restoreFilterSettings()
663 && !selectedTypes.contains(markerType)) { in restoreFilterSettings()
664 selectedTypes.add(markerType); in restoreFilterSettings()
703 MarkerType markerType = includedTypes.get(i); in saveFilterSettings() local
[all …]
H A DAttributeMarkerGrouping.java40 private String markerType; field in AttributeMarkerGrouping
56 markerType = element.getAttribute(MARKER_TYPE); in AttributeMarkerGrouping()
76 return markerType; in getMarkerType()
H A DMarkerGroup.java363 private void addEntry(String markerType, EntryMapping entry) { in addEntry() argument
364 for (MarkerType type : getMarkerTypes(markerType)) { in addEntry()
365 Set<EntryMapping> entries = typesToMappings.get(markerType); in addEntry()
464 private MarkerType[] getMarkerTypes(String markerType) { in getMarkerTypes() argument
468 MarkerType type = model.getType(markerType); in getMarkerTypes()
537 public void setAsDefault(String markerType, MarkerGroupingEntry entry) { in setAsDefault() argument
538 addEntry(markerType, new EntryMapping(entry)); in setAsDefault()
H A DMarkerGroupingEntry.java62 public void setAsDefault(String markerType) { in setAsDefault() argument
63 markerGroup.setAsDefault(markerType, this); in setAsDefault()
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Lang/src/model/
H A DMarker.h97 Marker(const QString &markerType, const QString &markerName);
141 SequenceMarker(const QString &markerType, const QString &markerName) in SequenceMarker() argument
142 : Marker(markerType, markerName) { in SequenceMarker()
155 QualifierMarker(const QString &markerType, const QString &markerName, const QString &qualName) in QualifierMarker() argument
156 : Marker(markerType, markerName), qualName(qualName) { in QualifierMarker()
178 AnnotationMarker(const QString &markerType, const QString &markerName, const QString &annName) in AnnotationMarker() argument
179 : Marker(markerType, markerName), annName(annName) { in AnnotationMarker()
201 TextMarker(const QString &markerType, const QString &markerName) in TextMarker() argument
202 : Marker(markerType, markerName) { in TextMarker()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/
H A DAnnotationTypeLookup.java75 String markerType= MarkerUtilities.getMarkerType(marker); in getAnnotationType() local
76 if (markerType != null) { in getAnnotationType()
78 return getAnnotationType(markerType, severity); in getAnnotationType()
91 public String getAnnotationType(String markerType, int markerSeverity) { in getAnnotationType() argument
92 String annotationType= lookupAnnotationType(markerType, markerSeverity); in getAnnotationType()
95 String[] superTypes= MarkerUtilities.getSuperTypes(markerType); in getAnnotationType()
112 private String lookupAnnotationType(String markerType, int severity) { in lookupAnnotationType() argument
116 Object value= fMapping.get(markerType); in lookupAnnotationType()
H A DMarkerRulerInfoAction.java41 …e, String prefix, IVerticalRulerInfo ruler, ITextEditor editor, String markerType, boolean askForL… in MarkerRulerInfoAction() argument
42 super(bundle, prefix, editor, ruler, markerType, askForLabel); in MarkerRulerInfoAction()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/
H A DTypesConfigurationArea.java113 private MarkerType markerType; field in TypesConfigurationArea.MarkerTypeEntry
120 public MarkerTypeEntry(MarkerType markerType) { in MarkerTypeEntry() argument
121 this.markerType = markerType; in MarkerTypeEntry()
126 if (selectedTypes.contains(markerType)) { in addElementsMatching()
138 return markerType.getLabel(); in getLabel()
147 return markerType; in getMarkerType()
385 MarkerType markerType = roots.next();
386 String categoryName = MarkerSupportRegistry.getInstance().getCategory(markerType.getId());
388 markerNodes.add(new MarkerTypeEntry(markerType));
398 MarkerTypeEntry node = new MarkerTypeEntry(markerType);
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/
H A DJavaMarkerAnnotation.java48 String markerType= MarkerUtilities.getMarkerType(marker); in isJavaAnnotation() local
49 if (IJavaModelMarker.JAVA_MODEL_PROBLEM_MARKER.equals(markerType) || in isJavaAnnotation()
50 IJavaModelMarker.TASK_MARKER.equals(markerType) || in isJavaAnnotation()
51 IJavaModelMarker.TRANSIENT_PROBLEM.equals(markerType) || in isJavaAnnotation()
52 IJavaModelMarker.BUILDPATH_PROBLEM_MARKER.equals(markerType)) in isJavaAnnotation()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.resources/bundles/org.eclipse.core.tools.resources/src/org/eclipse/core/tools/resources/metadata/
H A DMarkersSnapshotDumpingStrategy_1.java106 String markerType; in dumpMarkerType() local
110 markerType = input.readUTF(); in dumpMarkerType()
111 markerTypes.add(markerType); in dumpMarkerType()
114 markerType = markerTypes.get(input.readInt()); in dumpMarkerType()
120 contents.append(markerType); in dumpMarkerType()
H A DMarkersDumpingStrategy_1.java109 String markerType; in dumpMarkerType() local
113 markerType = input.readUTF(); in dumpMarkerType()
114 markerTypes.add(markerType); in dumpMarkerType()
117 markerType = markerTypes.get(input.readInt()); in dumpMarkerType()
123 contents.append(markerType); in dumpMarkerType()
H A DMarkersDumpingStrategy_2.java108 String markerType; in dumpMarkerType() local
112 markerType = input.readUTF(); in dumpMarkerType()
113 markerTypes.add(markerType); in dumpMarkerType()
116 markerType = markerTypes.get(input.readInt()); in dumpMarkerType()
122 contents.append(markerType); in dumpMarkerType()
H A DMarkersDumpingStrategy_3.java114 String markerType; in dumpMarkerType() local
118 markerType = input.readUTF(); in dumpMarkerType()
119 markerTypes.add(markerType); in dumpMarkerType()
122 markerType = markerTypes.get(input.readInt()); in dumpMarkerType()
128 contents.append(markerType); in dumpMarkerType()
H A DMarkersSnapshotDumpingStrategy_2.java112 String markerType; in dumpMarkerType() local
116 markerType = input.readUTF(); in dumpMarkerType()
117 markerTypes.add(markerType); in dumpMarkerType()
120 markerType = markerTypes.get(input.readInt()); in dumpMarkerType()
126 contents.append(markerType); in dumpMarkerType()
/dports/multimedia/webcamoid/webcamoid-8.8.0/libAvKys/Plugins/FaceDetect/src/
H A Dfacedetectelement.h37 Q_PROPERTY(QString markerType
38 READ markerType
93 Q_INVOKABLE QString markerType() const;
114 void markerTypeChanged(const QString &markerType);
125 void setMarkerType(const QString &markerType);
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/registry/
H A DMarkerQuery.java65 public MarkerQuery(String markerType, String[] markerAttributes) { in MarkerQuery() argument
66 this(markerType, markerAttributes, false); in MarkerQuery()
80 public MarkerQuery(String markerType, String[] markerAttributes, boolean matchTypeChildren) { in MarkerQuery() argument
85 type = markerType; in MarkerQuery()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/core/compiler/
H A DReconcileContext.java248 public CategorizedProblem[] getProblems(String markerType) { in getProblems() argument
250 return (CategorizedProblem[]) this.operation.problems.get(markerType); in getProblems()
293 public void putProblems(String markerType, CategorizedProblem[] problems) { in putProblems() argument
296 this.operation.problems.put(markerType, problems); in putProblems()
/dports/multimedia/webcamoid/webcamoid-8.8.0/libAvKys/Plugins/FaceDetect/share/qml/
H A Dmain.qml42 function markerTypeIndex(markerType)
47 if (cbxMarkerType.model.get(i).markerType === markerType) {
237 currentIndex: markerTypeIndex(FaceDetect.markerType)
243 markerType: "rectangle"
247 markerType: "ellipse"
251 markerType: "image"
255 markerType: "pixelate"
259 markerType: "blur"
263 markerType: "blurouter"
267 … onCurrentIndexChanged: FaceDetect.markerType = cbxMarkerType.model.get(currentIndex).markerType
/dports/games/ufoai/ufoai-2.5-source/eclipse/net.sourceforge.ufoai.dsl.ui/src/net/sourceforge/ufoai/ui/tasks/
H A DXtextTaskCalculator.java157 String markerType = null; in getMarkerType() local
159 markerType = e.getAttribute("markerType"); in getMarkerType()
160 if (markerType != null && markerType.endsWith(TaskConstants.XTEXT_MARKER_SIMPLE_NAME)) { in getMarkerType()
161 foundMarkerType = markerType; in getMarkerType()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/editing/
H A DSpellingCorrectionController.cpp240 DocumentMarker::MarkerType markerType = markerTypesToAdd[i]; in applyCorrectionPanelInfo() local
242 …e != CorrectionPanelInfo::PanelTypeReversion && (markerType == DocumentMarker::Replacement || mark… in applyCorrectionPanelInfo()
244 markers->addMarker(replacementRange.get(), markerType, description); in applyCorrectionPanelInfo()
479 DocumentMarker::MarkerType markerType = markerTypesToAdd[i]; in markCorrection() local
480 … if (markerType == DocumentMarker::Replacement || markerType == DocumentMarker::Autocorrected) in markCorrection()
481 markers->addMarker(replacedRange.get(), markerType, replacedString); in markCorrection()
483 markers->addMarker(replacedRange.get(), markerType); in markCorrection()
/dports/multimedia/kdenlive/kdenlive-21.12.3/src/bin/model/
H A Dmarkerlistmodel.cpp93 local_undo = changeComment_lambda(pos, current.comment(), current.markerType()); in addMarker()
158 Fun local_undo = addMarker_lambda(pos, current.comment(), current.markerType()); in removeMarker()
189 type = current.markerType(); in editMarker()
191 if (oldPos == pos && current.comment() == comment && current.markerType() == type) return true; in editMarker()
286 int oldType = marker.markerType(); in moveMarkers()
421 return markerTypes[size_t(it->second.markerType())]; in data()
423 return it->second.markerType(); in data()
577 res = (oldMarker.comment() == comment) && (type == oldMarker.markerType()); in importFromJson()
599 currentMarker.insert(QLatin1String("type"), QJsonValue(marker.second.markerType())); in toJson()
646 return editMarker(pos, marker.time(), marker.comment(), marker.markerType()); in editMarkerGui()
[all …]
/dports/audio/musescore/MuseScore-3.6.1/libmscore/
H A Dmarker.cpp151 Marker::Type Marker::markerType(const QString& s) const in markerType() function in Ms::Marker
201 mt = markerType(s); in read()
249 return int(markerType()); in getProperty()
305 if (markerType() == Marker::Type::FINE) { in nextSegmentElement()
/dports/devel/arcanist-lib/arcanist-b2e715f/src/repository/marker/
H A DArcanistMarkerRef.php16 private $markerType; variable in ArcanistMarkerRef
56 $this->markerType = $marker_type;
61 return $this->markerType;
/dports/devel/arcanist/arcanist-b2e715f/src/repository/marker/
H A DArcanistMarkerRef.php16 private $markerType; variable in ArcanistMarkerRef
56 $this->markerType = $marker_type;
61 return $this->markerType;
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/dom/
H A DDocumentMarkerController.cpp256 …rkerController::markerContainingPoint(const IntPoint& point, DocumentMarker::MarkerType markerType) in markerContainingPoint() argument
258 if (!possiblyHasMarkers(markerType)) in markerContainingPoint()
272 if (marker.type != markerType) in markerContainingPoint()
296 …rker> DocumentMarkerController::markersInRange(Range* range, DocumentMarker::MarkerType markerType) in markersInRange() argument
298 if (!possiblyHasMarkers(markerType)) in markersInRange()
313 if (markerType != it->type) in markersInRange()
325 …r<IntRect> DocumentMarkerController::renderedRectsForMarkers(DocumentMarker::MarkerType markerType) in renderedRectsForMarkers() argument
329 if (!possiblyHasMarkers(markerType)) in renderedRectsForMarkers()
343 if (marker.type != markerType) in renderedRectsForMarkers()

123456789