Home
last modified time | relevance | path

Searched refs:GetSingleton (Results 1 – 25 of 1417) sorted by relevance

12345678910>>...57

/dports/math/mlpack/mlpack-3.4.2/src/mlpack/core/util/
H A Dio.cpp56 GetSingleton().parameters; in Add()
89 GetSingleton().parameters; in HasParam()
122 GetSingleton().parameters; in MakeInPlaceCopy()
147 IO& IO::GetSingleton() in GetSingleton() function in IO
162 return GetSingleton().aliases; in Aliases()
189 std::get<0>(GetSingleton().storageMap[name]) = GetSingleton().parameters; in StoreSettings()
190 std::get<1>(GetSingleton().storageMap[name]) = GetSingleton().aliases; in StoreSettings()
191 std::get<2>(GetSingleton().storageMap[name]) = GetSingleton().functionMap; in StoreSettings()
211 GetSingleton().parameters = std::get<0>(GetSingleton().storageMap[name]); in RestoreSettings()
212 GetSingleton().aliases = std::get<1>(GetSingleton().storageMap[name]); in RestoreSettings()
[all …]
H A Dio_impl.hpp37 (GetSingleton().parameters.count(identifier) == 0 && in GetParam()
39 ? GetSingleton().aliases[identifier[0]] : identifier; in GetParam()
41 if (GetSingleton().parameters.count(key) == 0) in GetParam()
45 util::ParamData& d = GetSingleton().parameters[key]; in GetParam()
80 (GetSingleton().aliases.count(identifier[0]) > 0)) ? in GetPrintableParam()
81 GetSingleton().aliases[identifier[0]] : identifier; in GetPrintableParam()
83 if (GetSingleton().parameters.count(key) == 0) in GetPrintableParam()
87 util::ParamData& d = GetSingleton().parameters[key]; in GetPrintableParam()
117 (GetSingleton().parameters.count(identifier) == 0 && in GetRawParam()
121 if (GetSingleton().parameters.count(key) == 0) in GetRawParam()
[all …]
H A Dprogram_doc.cpp32 IO::GetSingleton().doc.programName = std::move(programName); in ProgramName()
46 IO::GetSingleton().doc.shortDescription = std::move(shortDescription); in ShortDescription()
61 IO::GetSingleton().doc.longDescription = std::move(longDescription); in LongDescription()
74 IO::GetSingleton().doc.example.push_back(std::move(example)); in Example()
88 IO::GetSingleton().doc.seeAlso.push_back(make_pair(description, link)); in SeeAlso()
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/tests/main_tests/
H A Dfastmks_test.cpp140 IO::GetSingleton().Parameters()["reference"].wasPassed = false; in BOOST_AUTO_TEST_CASE()
221 IO::GetSingleton().Parameters()["query"].wasPassed = false; in BOOST_AUTO_TEST_CASE()
258 IO::GetSingleton().Parameters()["query"].wasPassed = false; in BOOST_AUTO_TEST_CASE()
294 IO::GetSingleton().Parameters()["k"].wasPassed = false; in BOOST_AUTO_TEST_CASE()
331 IO::GetSingleton().Parameters()["k"].wasPassed = false; in BOOST_AUTO_TEST_CASE()
369 IO::GetSingleton().Parameters()["k"].wasPassed = false; in BOOST_AUTO_TEST_CASE()
494 IO::GetSingleton().Parameters()["offset"].wasPassed = false; in BOOST_AUTO_TEST_CASE()
513 IO::GetSingleton().Parameters()["kernel"].wasPassed = false; in BOOST_AUTO_TEST_CASE()
514 IO::GetSingleton().Parameters()["offset"].wasPassed = false; in BOOST_AUTO_TEST_CASE()
530 IO::GetSingleton().Parameters()["offset"].wasPassed = false; in BOOST_AUTO_TEST_CASE()
[all …]
H A Ddbscan_test.cpp149 IO::GetSingleton().Parameters()["input"].wasPassed = false;
150 IO::GetSingleton().Parameters()["epsilon"].wasPassed = false;
185 IO::GetSingleton().Parameters()["input"].wasPassed = false;
244 IO::GetSingleton().Parameters()["input"].wasPassed = false;
259 IO::GetSingleton().Parameters()["input"].wasPassed = false;
274 IO::GetSingleton().Parameters()["input"].wasPassed = false;
289 IO::GetSingleton().Parameters()["input"].wasPassed = false;
304 IO::GetSingleton().Parameters()["input"].wasPassed = false;
319 IO::GetSingleton().Parameters()["input"].wasPassed = false;
334 IO::GetSingleton().Parameters()["input"].wasPassed = false;
[all …]
H A Dkfn_test.cpp91 IO::GetSingleton().Parameters()["reference"].wasPassed = false;
92 IO::GetSingleton().Parameters()["k"].wasPassed = false;
229 IO::GetSingleton().Parameters()["reference"].wasPassed = false;
230 IO::GetSingleton().Parameters()["epsilon"].wasPassed = false;
237 IO::GetSingleton().Parameters()["reference"].wasPassed = false;
238 IO::GetSingleton().Parameters()["epsilon"].wasPassed = false;
273 IO::GetSingleton().Parameters()["epsilon"].wasPassed = false;
335 IO::GetSingleton().Parameters()["query"].wasPassed = false;
375 IO::GetSingleton().Parameters()["epsilon"].wasPassed = false;
571 IO::GetSingleton().Parameters()["query"].wasPassed = false;
[all …]
H A Dkrann_test.cpp85 IO::GetSingleton().Parameters()["reference"].wasPassed = false;
86 IO::GetSingleton().Parameters()["k"].wasPassed = false;
93 IO::GetSingleton().Parameters()["reference"].wasPassed = false;
94 IO::GetSingleton().Parameters()["k"].wasPassed = false;
101 IO::GetSingleton().Parameters()["reference"].wasPassed = false;
102 IO::GetSingleton().Parameters()["k"].wasPassed = false;
134 IO::GetSingleton().Parameters()["k"].wasPassed = false;
142 IO::GetSingleton().Parameters()["k"].wasPassed = false;
150 IO::GetSingleton().Parameters()["k"].wasPassed = false;
295 IO::GetSingleton().Parameters()["query"].wasPassed = false;
[all …]
H A Dhoeffding_tree_test.cpp171 IO::GetSingleton().Parameters()["test"].wasPassed = false;
242 IO::GetSingleton().Parameters()["labels"].wasPassed = false;
243 IO::GetSingleton().Parameters()["test"].wasPassed = false;
302 IO::GetSingleton().Parameters()["labels"].wasPassed = false;
303 IO::GetSingleton().Parameters()["test"].wasPassed = false;
370 IO::GetSingleton().Parameters()["test"].wasPassed = false;
439 IO::GetSingleton().Parameters()["test"].wasPassed = false;
507 IO::GetSingleton().Parameters()["test"].wasPassed = false;
574 IO::GetSingleton().Parameters()["test"].wasPassed = false;
684 IO::GetSingleton().Parameters()["test"].wasPassed = false;
[all …]
H A Dknn_test.cpp88 IO::GetSingleton().Parameters()["reference"].wasPassed = false;
89 IO::GetSingleton().Parameters()["k"].wasPassed = false;
259 IO::GetSingleton().Parameters()["reference"].wasPassed = false;
260 IO::GetSingleton().Parameters()["rho"].wasPassed = false;
321 IO::GetSingleton().Parameters()["reference"].wasPassed = false;
322 IO::GetSingleton().Parameters()["query"].wasPassed = false;
363 IO::GetSingleton().Parameters()["tau"].wasPassed = false;
404 IO::GetSingleton().Parameters()["rho"].wasPassed = false;
442 IO::GetSingleton().Parameters()["epsilon"].wasPassed = false;
599 IO::GetSingleton().Parameters()["query"].wasPassed = false;
[all …]
H A Dsoftmax_regression_test.cpp151 IO::GetSingleton().Parameters()["training"].wasPassed = false;
152 IO::GetSingleton().Parameters()["labels"].wasPassed = false;
153 IO::GetSingleton().Parameters()["test"].wasPassed = false;
342 IO::GetSingleton().Parameters()["training"].wasPassed = false;
343 IO::GetSingleton().Parameters()["labels"].wasPassed = false;
344 IO::GetSingleton().Parameters()["test"].wasPassed = false;
411 IO::GetSingleton().Parameters()["training"].wasPassed = false;
412 IO::GetSingleton().Parameters()["labels"].wasPassed = false;
413 IO::GetSingleton().Parameters()["test"].wasPassed = false;
481 IO::GetSingleton().Parameters()["labels"].wasPassed = false;
[all …]
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/bindings/go/
H A Dgo_option.hpp98 IO::GetSingleton().functionMap[data.tname]["GetParam"] = &GetParam<T>; in GoOption()
99 IO::GetSingleton().functionMap[data.tname]["GetPrintableParam"] = in GoOption()
102 IO::GetSingleton().functionMap[data.tname]["DefaultParam"] = in GoOption()
104 IO::GetSingleton().functionMap[data.tname]["PrintDefnInput"] = in GoOption()
106 IO::GetSingleton().functionMap[data.tname]["PrintDefnOutput"] = in GoOption()
108 IO::GetSingleton().functionMap[data.tname]["PrintDoc"] = &PrintDoc<T>; in GoOption()
109 IO::GetSingleton().functionMap[data.tname]["PrintOutputProcessing"] = in GoOption()
111 IO::GetSingleton().functionMap[data.tname]["PrintMethodConfig"] = in GoOption()
113 IO::GetSingleton().functionMap[data.tname]["PrintMethodInit"] = in GoOption()
115 IO::GetSingleton().functionMap[data.tname]["PrintInputProcessing"] = in GoOption()
[all …]
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/bindings/cli/
H A Dcli_option.hpp142 IO::GetSingleton().functionMap[tname]["DefaultParam"] = in CLIOption()
144 IO::GetSingleton().functionMap[tname]["OutputParam"] = in CLIOption()
146 IO::GetSingleton().functionMap[tname]["GetPrintableParam"] = in CLIOption()
148 IO::GetSingleton().functionMap[tname]["StringTypeParam"] = in CLIOption()
150 IO::GetSingleton().functionMap[tname]["GetParam"] = &GetParam<N>; in CLIOption()
152 IO::GetSingleton().functionMap[tname]["AddToCLI11"] = &AddToCLI11<N>; in CLIOption()
153 IO::GetSingleton().functionMap[tname]["MapParameterName"] = in CLIOption()
155 IO::GetSingleton().functionMap[tname]["GetPrintableParamName"] = in CLIOption()
157 IO::GetSingleton().functionMap[tname]["GetPrintableParamValue"] = in CLIOption()
159 IO::GetSingleton().functionMap[tname]["GetAllocatedMemory"] = in CLIOption()
[all …]
H A Dend_program.hpp29 IO::GetSingleton().timer.StopAllTimers(); in EndProgram()
37 IO::GetSingleton().functionMap[d.tname]["OutputParam"](d, NULL, NULL); in EndProgram()
51 IO::GetSingleton().functionMap[data.tname]["MapParameterName"](data, in EndProgram()
56 IO::GetSingleton().functionMap[data.tname]["GetPrintableParam"](data, in EndProgram()
62 for (auto& it2 : IO::GetSingleton().timer.GetAllTimers()) in EndProgram()
65 IO::GetSingleton().timer.PrintTimer(it2.first); in EndProgram()
78 IO::GetSingleton().functionMap[data.tname]["GetAllocatedMemory"](data, in EndProgram()
91 IO::GetSingleton().functionMap[data.tname]["DeleteAllocatedMemory"](data, in EndProgram()
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/bindings/julia/
H A Djulia_option.hpp86 IO::GetSingleton().functionMap[data.tname]["GetParam"] = &GetParam<T>; in JuliaOption()
87 IO::GetSingleton().functionMap[data.tname]["GetPrintableParam"] = in JuliaOption()
91 IO::GetSingleton().functionMap[data.tname]["PrintParamDefn"] = in JuliaOption()
93 IO::GetSingleton().functionMap[data.tname]["PrintInputParam"] = in JuliaOption()
95 IO::GetSingleton().functionMap[data.tname]["PrintOutputProcessing"] = in JuliaOption()
97 IO::GetSingleton().functionMap[data.tname]["PrintInputProcessing"] = in JuliaOption()
99 IO::GetSingleton().functionMap[data.tname]["PrintDoc"] = &PrintDoc<T>; in JuliaOption()
100 IO::GetSingleton().functionMap[data.tname]["PrintModelTypeImport"] = in JuliaOption()
104 IO::GetSingleton().functionMap[data.tname]["DefaultParam"] = in JuliaOption()
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/bindings/python/
H A Dpy_option.hpp85 IO::GetSingleton().functionMap[data.tname]["GetParam"] = &GetParam<T>; in PyOption()
86 IO::GetSingleton().functionMap[data.tname]["GetPrintableParam"] = in PyOption()
89 IO::GetSingleton().functionMap[data.tname]["DefaultParam"] = in PyOption()
93 IO::GetSingleton().functionMap[data.tname]["PrintClassDefn"] = in PyOption()
95 IO::GetSingleton().functionMap[data.tname]["PrintDefn"] = &PrintDefn<T>; in PyOption()
96 IO::GetSingleton().functionMap[data.tname]["PrintDoc"] = &PrintDoc<T>; in PyOption()
97 IO::GetSingleton().functionMap[data.tname]["PrintOutputProcessing"] = in PyOption()
99 IO::GetSingleton().functionMap[data.tname]["PrintInputProcessing"] = in PyOption()
101 IO::GetSingleton().functionMap[data.tname]["ImportDecl"] = &ImportDecl<T>; in PyOption()
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/bindings/R/
H A DR_option.hpp92 IO::GetSingleton().functionMap[data.tname]["GetParam"] = &GetParam<T>; in ROption()
93 IO::GetSingleton().functionMap[data.tname]["GetPrintableParam"] = in ROption()
97 IO::GetSingleton().functionMap[data.tname]["PrintDoc"] = &PrintDoc<T>; in ROption()
98 IO::GetSingleton().functionMap[data.tname]["PrintInputParam"] = in ROption()
100 IO::GetSingleton().functionMap[data.tname]["PrintOutputProcessing"] = in ROption()
102 IO::GetSingleton().functionMap[data.tname]["PrintInputProcessing"] = in ROption()
104 IO::GetSingleton().functionMap[data.tname]["PrintSerializeUtil"] = in ROption()
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/bindings/markdown/
H A Dmd_option.hpp82 IO::GetSingleton().functionMap[data.tname]["DefaultParam"] = in MDOption()
84 IO::GetSingleton().functionMap[data.tname]["GetParam"] = &GetParam<T>; in MDOption()
85 IO::GetSingleton().functionMap[data.tname]["GetPrintableParam"] = in MDOption()
87 IO::GetSingleton().functionMap[data.tname]["GetPrintableParamName"] = in MDOption()
89 IO::GetSingleton().functionMap[data.tname]["GetPrintableParamValue"] = in MDOption()
91 IO::GetSingleton().functionMap[data.tname]["GetPrintableType"] = in MDOption()
93 IO::GetSingleton().functionMap[data.tname]["IsSerializable"] = in MDOption()
H A Dprogram_doc_wrapper.hpp32 BindingInfo::GetSingleton().map[bindingName].programName = in ProgramNameWrapper()
46 BindingInfo::GetSingleton().map[bindingName].shortDescription = in ShortDescriptionWrapper()
60 BindingInfo::GetSingleton().map[bindingName].longDescription = in LongDescriptionWrapper()
74 BindingInfo::GetSingleton().map[bindingName].example.push_back( in ExampleWrapper()
88 BindingInfo::GetSingleton().map[bindingName].seeAlso.push_back( in SeeAlsoWrapper()
H A Dbinding_info.cpp23 if (GetSingleton().map.count(bindingName) == 0) in GetBindingDetails()
29 return GetSingleton().map.at(bindingName); in GetBindingDetails()
35 return GetSingleton().language; in Language()
38 BindingInfo& BindingInfo::GetSingleton() in GetSingleton() function in mlpack::bindings::markdown::BindingInfo
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/components/places/
H A DnsPlacesModule.cpp19 nsNavHistory::GetSingleton)
21 nsAnnotationService::GetSingleton)
23 nsNavBookmarks::GetSingleton)
25 nsFaviconService::GetSingleton)
26 NS_GENERIC_FACTORY_SINGLETON_CONSTRUCTOR(History, History::GetSingleton)
/dports/www/firefox-legacy/firefox-52.8.0esr/toolkit/components/places/
H A DnsPlacesModule.cpp19 nsNavHistory::GetSingleton)
21 nsAnnotationService::GetSingleton)
23 nsNavBookmarks::GetSingleton)
25 nsFaviconService::GetSingleton)
26 NS_GENERIC_FACTORY_SINGLETON_CONSTRUCTOR(History, History::GetSingleton)
/dports/www/firefox/firefox-99.0/toolkit/components/glean/ipc/
H A DFOGIPC.cpp98 auto* cc = dom::ContentChild::GetSingleton(); in RecordPowerMetrics()
220 net::SocketProcessParent::GetSingleton()) { in FlushAllChildData()
226 mozilla::gmp::GeckoMediaPluginServiceParent::GetSingleton()); in FlushAllChildData()
235 UtilityProcessManager::GetSingleton()) { in FlushAllChildData()
286 mozilla::dom::ContentChild::GetSingleton()->SendFOGData(std::move(buf)); in SendFOGData()
292 Unused << mozilla::gfx::GPUParent::GetSingleton()->SendFOGData( in SendFOGData()
299 Unused << net::SocketProcessChild::GetSingleton()->SendFOGData( in SendFOGData()
303 Unused << ipc::UtilityProcessChild::GetSingleton()->SendFOGData( in SendFOGData()
337 mozilla::gmp::GeckoMediaPluginServiceParent::GetSingleton()); in TestTriggerMetrics()
356 Unused << net::SocketProcessParent::GetSingleton() in TestTriggerMetrics()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/dom/media/mediacontrol/
H A DContentMediaController.cpp84 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifyMediaPlaybackChanged()
108 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifyMediaAudibleChanged()
131 ContentChild* contentChild = ContentChild::GetSingleton(); in SetIsInPictureInPictureMode()
154 ContentChild* contentChild = ContentChild::GetSingleton(); in SetDeclaredPlaybackState()
174 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifySessionCreated()
193 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifySessionDestroyed()
213 ContentChild* contentChild = ContentChild::GetSingleton(); in UpdateMetadata()
234 ContentChild* contentChild = ContentChild::GetSingleton(); in EnableAction()
256 ContentChild* contentChild = ContentChild::GetSingleton(); in DisableAction()
278 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifyMediaFullScreenState()
[all …]
/dports/www/firefox/firefox-99.0/dom/media/mediacontrol/
H A DContentMediaController.cpp84 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifyMediaPlaybackChanged()
108 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifyMediaAudibleChanged()
131 ContentChild* contentChild = ContentChild::GetSingleton(); in SetIsInPictureInPictureMode()
154 ContentChild* contentChild = ContentChild::GetSingleton(); in SetDeclaredPlaybackState()
174 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifySessionCreated()
193 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifySessionDestroyed()
213 ContentChild* contentChild = ContentChild::GetSingleton(); in UpdateMetadata()
234 ContentChild* contentChild = ContentChild::GetSingleton(); in EnableAction()
256 ContentChild* contentChild = ContentChild::GetSingleton(); in DisableAction()
278 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifyMediaFullScreenState()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/dom/media/mediacontrol/
H A DContentMediaController.cpp84 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifyMediaPlaybackChanged()
108 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifyMediaAudibleChanged()
131 ContentChild* contentChild = ContentChild::GetSingleton(); in SetIsInPictureInPictureMode()
154 ContentChild* contentChild = ContentChild::GetSingleton(); in SetDeclaredPlaybackState()
174 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifySessionCreated()
193 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifySessionDestroyed()
213 ContentChild* contentChild = ContentChild::GetSingleton(); in UpdateMetadata()
234 ContentChild* contentChild = ContentChild::GetSingleton(); in EnableAction()
256 ContentChild* contentChild = ContentChild::GetSingleton(); in DisableAction()
278 ContentChild* contentChild = ContentChild::GetSingleton(); in NotifyMediaFullScreenState()
[all …]

12345678910>>...57