Home
last modified time | relevance | path

Searched refs:newMarkers (Results 1 – 24 of 24) sorted by relevance

/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/test/java/org/apache/commons/math3/stat/descriptive/rank/
H A DPSquarePercentileTest.java135 PSquarePercentile.newMarkers(null, 0); in testNullListInMarkers()
143 PSquarePercentile.newMarkers( in testMiscellaniousFunctionsInMarkers()
173 PSquarePercentile.newMarkers( in testMarkersOORLow()
180 PSquarePercentile.newMarkers( in testMarkersOORHigh()
189 PSquarePercentile.newMarkers( in testMarkers2()
194 PSquarePercentile.newMarkers( in testMarkers2()
227 PSquarePercentile.newMarkers( in testHashCodeInMarkers()
232 PSquarePercentile.newMarkers( in testHashCodeInMarkers()
243 PSquarePercentile.newMarkers( in testHashCodeInMarkers()
249 PSquarePercentile.newMarkers( in testHashCodeInMarkers()
[all …]
/dports/devel/arcanist/arcanist-b2e715f/src/repository/marker/
H A DArcanistMercurialRepositoryMarkerQuery.php7 return $this->newMarkers();
11 return $this->newMarkers($remote);
14 private function newMarkers(ArcanistRemoteRef $remote = null) { function in ArcanistMercurialRepositoryMarkerQuery
/dports/devel/arcanist-lib/arcanist-b2e715f/src/repository/marker/
H A DArcanistMercurialRepositoryMarkerQuery.php7 return $this->newMarkers();
11 return $this->newMarkers($remote);
14 private function newMarkers(ArcanistRemoteRef $remote = null) { function in ArcanistMercurialRepositoryMarkerQuery
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/linkvalidator/Classes/Task/
H A DValidatorTask.php448 $newMarkers = GeneralUtility::callUserFunction($userFunc, $params, $this);
449 if (is_array($newMarkers)) {
450 $markerArray = $newMarkers + $markerArray;
534 $newMarkers = GeneralUtility::callUserFunction($userFunc, $params, $this);
535 if (is_array($newMarkers)) {
536 $markerArray = $newMarkers + $markerArray;
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/linkvalidator/Classes/Task/
H A DValidatorTask.php453 $newMarkers = GeneralUtility::callUserFunction($userFunc, $params, $ref);
454 if (is_array($newMarkers)) {
455 $markerArray = $newMarkers + $markerArray;
536 $newMarkers = GeneralUtility::callUserFunction($userFunc, $params, $this);
537 if (is_array($newMarkers)) {
538 $markerArray = $newMarkers + $markerArray;
/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 DMarkers.java228 private MarkerCategory[] groupIntoCategories(IProgressMonitor monitor, MarkerEntry[] newMarkers) { in groupIntoCategories() argument
229 Map<MarkerGroupingEntry, Integer> boundaryInfoMap = groupMarkerEntries(newMarkers, in groupIntoCategories()
230 builder.getCategoryGroup(), newMarkers.length - 1, monitor); in groupIntoCategories()
239 .getValue(newMarkers[start])); in groupIntoCategories()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/
H A Dschematic.cpp201 std::vector<SCH_MARKER*> newMarkers; in ResolveERCExclusions() local
210 newMarkers.push_back( marker ); in ResolveERCExclusions()
216 return newMarkers; in ResolveERCExclusions()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.resources/tests/org.eclipse.core.tests.resources/src/org/eclipse/core/tests/resources/
H A DMarkerTest.java1440 IMarker[] newMarkers = null; in testMarkerSave() local
1443 newMarkers = createMarkers(resources, IMarker.PROBLEM); in testMarkerSave()
1444 expected = new IMarker[newMarkers.length * 3]; in testMarkerSave()
1445 System.arraycopy(newMarkers, 0, expected, 0, newMarkers.length); in testMarkerSave()
1446 newMarkers = createMarkers(resources, IMarker.BOOKMARK); in testMarkerSave()
1447 System.arraycopy(newMarkers, 0, expected, newMarkers.length, newMarkers.length); in testMarkerSave()
1448 newMarkers = createMarkers(resources, IMarker.TASK); in testMarkerSave()
1449 System.arraycopy(newMarkers, 0, expected, newMarkers.length * 2, newMarkers.length); in testMarkerSave()
/dports/x11-toolkits/qt5-charts/kde-qtcharts-5.15.2p2/src/charts/legend/
H A Dqlegend.cpp663 QList<QLegendMarker*> newMarkers = series->d_ptr->createLegendMarkers(q_ptr); in handleSeriesAdded() local
664 decorateMarkers(newMarkers); in handleSeriesAdded()
665 addMarkers(newMarkers); in handleSeriesAdded()
/dports/x11-toolkits/gnustep-gui/libs-gui-gui-0_28_0/Headers/AppKit/
H A DNSRulerView.h104 - (void) setMarkers: (NSArray *)newMarkers;
/dports/x11-toolkits/gnustep-gui/libs-gui-gui-0_28_0/Source/
H A DNSRulerView.m352 - (void) setMarkers: (NSArray *)newMarkers
354 if (newMarkers != nil && _clientView == nil)
359 if (newMarkers != nil)
361 ASSIGN(_markers, [NSMutableArray arrayWithArray: newMarkers]);
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/views/source/editors/text/ace/
H A DAceEditorBackgroundLinkHighlighter.java607 final SafeMap<Integer, List<MarkerRegistration>> newMarkers = new SafeMap<>();
618 newMarkers.put(newRow, markers);
622 activeMarkers_ = newMarkers;
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/stat/descriptive/rank/
H A DPSquarePercentile.java202 markers = newMarkers(initialFive, quantile); in increment()
944 public static PSquareMarkers newMarkers(final List<Double> initialFive, in newMarkers() method in PSquarePercentile
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/
H A Dboard.cpp221 std::vector<PCB_MARKER*> newMarkers; in ResolveDRCExclusions() local
230 newMarkers.push_back( marker ); in ResolveDRCExclusions()
236 return newMarkers; in ResolveDRCExclusions()
/dports/biology/lamarc/lamarc-2.1.8/src/convModel/
H A Dgc_datastore_export.cpp80 gcUnphasedMarkers * newMarkers = new gcUnphasedMarkers(*phaseInfo); in CheckPhaseMarkers() local
83 newMarkers->ShiftNegsUp(); in CheckPhaseMarkers()
85 return newMarkers; in CheckPhaseMarkers()
/dports/www/nextcloud-deck/deck/js/
H A Ddeck-vendors-node_modules_vue-easymde_dist_VueEasyMDE_common_js.js.map1newMarkers","gapMarkers","gap","clearWhenEmpty","removeReadOnlyRanges","markers","readOnly","parts…
/dports/www/py-notebook/notebook-6.4.5/notebook/static/tree/js/
H A Dmain.min.js.map38newMarkers = [first];\n if (!sameLine) {\n // Fill gap with whole-line-spans\n var ga…
/dports/www/py-notebook/notebook-6.4.5/notebook/static/terminal/js/
H A Dmain.min.js.map25newMarkers = [first];\n if (!sameLine) {\n // Fill gap with whole-line-spans\n var ga…
/dports/www/py-notebook/notebook-6.4.5/notebook/static/edit/js/
H A Dmain.min.js.map45newMarkers = [first];\n if (!sameLine) {\n // Fill gap with whole-line-spans\n var ga…
/dports/www/py-notebook/notebook-6.4.5/notebook/static/notebook/js/
H A Dmain.min.js.map91newMarkers = [first];\n if (!sameLine) {\n // Fill gap with whole-line-spans\n var ga…
/dports/devel/py-nbdime/nbdime-3.1.1/nbdime/webapp/static/
H A Dnbdime.js.map1newMarkers","gapMarkers","gap","clearWhenEmpty","detachMarkedSpans","detachLine","attachMarkedSpan…
/dports/www/nextcloud-notes/notes/js/
H A Dnotes-main.js.map1newMarkers","gapMarkers","gap","clearWhenEmpty","removeReadOnlyRanges","markers","readOnly","newPa…
/dports/www/seahub/seahub-8.0.7-server/media/assets/frontend/static/js/
H A Dcommons.chunk.js.map1newMarkers","gapMarkers","gap","clearWhenEmpty","removeReadOnlyRanges","markers","mk","newParts","…
H A Dcommons.chunk.js.187be030c636.map1newMarkers","gapMarkers","gap","clearWhenEmpty","removeReadOnlyRanges","markers","mk","newParts","…