Home
last modified time | relevance | path

Searched refs:_profiles (Results 1 – 25 of 86) sorted by relevance

1234

/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/support_data/
H A DossimDemGrid.cpp103 _profiles.push_back(ossimDemProfile()); in fillGeographic()
104 dem >> _profiles.back(); in fillGeographic()
111 _height = _profiles[0].getNumberOfElevations(); in fillGeographic()
135 _profiles.erase(_profiles.begin(), _profiles.end()); in fillGeographic()
157 _profiles.push_back(ossimDemProfile()); in fillUTM()
158 dem >> _profiles.back(); in fillUTM()
174 (i < _profiles.size())) in fillUTM()
176 if (i < _profiles.size()) in fillUTM()
177 curpoint = _profiles[i].getProfileLocation(); in fillUTM()
189 for (i = 0; i < _profiles.size(); i++) in fillUTM()
[all …]
/dports/devel/hpx/hpx-1.2.1/tests/performance/network/network_storage/
H A Dsimple_profiler.hpp54 std::for_each(this->_profiles.begin(), this->_profiles.end(), in done()
63 std::for_each(this->_profiles.begin(), this->_profiles.end(), in done()
72 this->_profiles[this->_title] = std::make_tuple(elapsed,0,1); in done()
77 for (auto p=this->_profiles.begin(); p!=this->_profiles.end(); ) { in done()
99 if ((++p)==this->_profiles.end()) { in done()
116 if (this->_profiles.find(title) == this->_profiles.end()) { in addProfile()
118 this->_profiles[title] = value; in addProfile()
121 valtype &val = this->_profiles[title]; in addProfile()
130 std::map<const char *, valtype> _profiles; member in hpx::util::simple_profiler
/dports/x11/konsole/konsole-21.12.3/src/profile/
H A DProfileGroup.cpp18 _profiles.append(profile); in addProfile()
23 _profiles.removeAll(profile); in removeProfile()
28 return _profiles; in profiles()
40 if (_profiles.count() > 1 && !canInheritProperty(properties->property)) { in updateValues()
46 for (int i = 0; i < _profiles.count(); i++) { in updateValues()
47 QVariant profileValue = _profiles[i]->property<QVariant>(properties->property); in updateValues()
62 if (_profiles.count() > 1 && !canInheritProperty(p)) { in setProperty()
67 for (const Profile::Ptr &profile : qAsConst(_profiles)) { in setProperty()
H A DProfileManager.cpp75 Q_ASSERT(_profiles.size() > 0); in ProfileManager()
89 return std::find(_profiles.cbegin(), _profiles.cend(), profile); in findProfile()
133 for (const Profile::Ptr &profile : _profiles) { in loadProfile()
222 std::sort(_profiles.begin(), _profiles.end(), profileNameLessThan); in sortProfiles()
233 return {_profiles.cbegin(), _profiles.cend()}; in loadedProfiles()
360 if (_profiles.empty()) { in addProfile()
364 if (findProfile(profile) == _profiles.cend()) { in addProfile()
365 _profiles.push_back(profile); in addProfile()
386 _profiles.erase(it); in deleteProfile()
443 … return std::find_if(_profiles.cbegin(), _profiles.cend(), [&name, suffix](const Profile::Ptr &p) { in loadShortcuts()
[all …]
H A DProfileGroup.h81 QList<Profile::Ptr> _profiles;
86 , _profiles(QList<Profile::Ptr>()) in ProfileGroup()
/dports/net/pear-Net_UserAgent_Mobile/Net_UserAgent_Mobile-1.0.0RC1/tests/Mobile/
H A DWillcomTestCase.php59 …private $_profiles = array('Mozilla/3.0(DDIPOCKET;JRC/AH-J3001V,AH-J3002V/1.0/0100/c50)CNF/2.0' =>… variable in Net_UserAgent_Mobile_WillcomTestCase
73 reset($this->_profiles);
74 while (list($userAgent, $profile) = each($this->_profiles)) {
87 reset($this->_profiles);
88 while (list($userAgent, $profile) = each($this->_profiles)) {
H A DDoCoMoTestCase.php65 private $_profiles = array( variable in Net_UserAgent_Mobile_DoCoMoTestCase
1097 reset($this->_profiles);
1111 reset($this->_profiles);
1121 reset($this->_profiles);
1131 reset($this->_profiles);
1201 reset($this->_profiles);
1214 reset($this->_profiles);
1227 reset($this->_profiles);
1240 reset($this->_profiles);
1253 reset($this->_profiles);
[all …]
H A DEZwebTestCase.php59 …private $_profiles = array('KDDI-CA23 UP.Browser/6.2.0.3.111 (GUI) MMP/2.0' => array('model' => 'C… variable in Net_UserAgent_Mobile_EZwebTestCase
179 reset($this->_profiles);
180 while (list($userAgent, $profile) = each($this->_profiles)) {
193 reset($this->_profiles);
194 while (list($userAgent, $profile) = each($this->_profiles)) {
H A DNonMobileTestCase.php59 …private $_profiles = array('Mozilla/5.0 (Windows; U; Windows NT 5.1; ja; rv:1.8.1.4) Gecko/2007051… variable in Net_UserAgent_Mobile_NonMobileTestCase
71 reset($this->_profiles);
72 while (list($userAgent, $profile) = each($this->_profiles)) {
H A DSoftBankTestCase.php59 private $_profiles = array( variable in Net_UserAgent_Mobile_SoftBankTestCase
126 reset($this->_profiles);
127 while (list($userAgent, $profile) = each($this->_profiles)) {
143 reset($this->_profiles);
144 while (list($userAgent, $profile) = each($this->_profiles)) {
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/libdevice/vaapi/
H A DVaapiGlobalContext.cpp57 _profiles.resize(vaMaxNumProfiles(dpy)); in init()
58 status = vaQueryConfigProfiles(dpy, &_profiles[0], &num_profiles); in init()
62 _profiles.resize(num_profiles); in init()
87 for (unsigned int i = 0; i < _profiles.size(); i++) { in hasProfile()
88 if (_profiles[i] == profile) { in hasProfile()
/dports/net-p2p/bazarr/bazarr-1.0.2/bazarr/
H A Dscore.py150 self._profiles = []
160 for profile in self._profiles:
168 self._profiles = [
174 logger.debug("Loaded profiles: %s", self._profiles)
177 self._profiles = []
200 return {item.name: item.score for item in self._profiles}
211 + sum(item.score for item in self._profiles if item.score)
/dports/devel/py-datapackage/datapackage-1.15.2/datapackage/
H A Dregistry.py43 self._profiles = {}
75 if profile_id not in self._profiles:
77 self._profiles[profile_id] = self._get_profile(profile_id)
81 return self._profiles[profile_id]
/dports/devel/py-oci/oci-2.53.1/src/oci/database/models/
H A Dautonomous_database_connection_strings.py115 self._profiles = None
253 return self._profiles
265 self._profiles = profiles
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/org/omg/IOP/
H A DIOR.java108 public IOR(String _type_id, TaggedProfile[] _profiles) in IOR() argument
111 profiles = _profiles; in IOR()
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/org/omg/IOP/
H A DIOR.java108 public IOR(String _type_id, TaggedProfile[] _profiles) in IOR() argument
111 profiles = _profiles; in IOR()
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/org/omg/IOP/
H A DIOR.java108 public IOR(String _type_id, TaggedProfile[] _profiles) in IOR() argument
111 profiles = _profiles; in IOR()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/org/omg/IOP/
H A DIOR.java108 public IOR(String _type_id, TaggedProfile[] _profiles) in IOR() argument
111 profiles = _profiles; in IOR()
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/org/omg/IOP/
H A DIOR.java108 public IOR(String _type_id, TaggedProfile[] _profiles) in IOR() argument
111 profiles = _profiles; in IOR()
/dports/java/sablevm-classpath/sablevm-classpath-1.13/org/omg/IOP/
H A DIOR.java107 public IOR(String _type_id, TaggedProfile[] _profiles) in IOR() argument
110 profiles = _profiles; in IOR()
/dports/devel/p5-Mojolicious-Plugin-NYTProf/Mojolicious-Plugin-NYTProf-0.23/t/
H A D020_no_production.t53 Mojolicious::Plugin::NYTProf::_profiles(catfile($prof_dir,'profiles')),
58 ! Mojolicious::Plugin::NYTProf::_profiles(catfile($prof_dir,'profiles')),
/dports/net-im/py-slixmpp/slixmpp-1.7.1/slixmpp/plugins/xep_0095/
H A Dstream_initiation.py38 self._profiles = {}
67 self._profiles[profile_name] = plugin
71 del self._profiles[profile_name]
93 if profile not in self._profiles:
/dports/news/pan/pan-0.145/pan/gui/
H A Dprofiles-dialog.cc437 _store = new_profile_store (_profiles); in rebuild_store()
446 _profiles.delete_profile (name); in delete_profile()
458 if (_profiles.get_profile (old_name, profile)) in edit_profile()
466 _profiles.delete_profile (old_name); in edit_profile()
467 _profiles.add_profile (new_name, profile); in edit_profile()
489 _profiles.add_profile (name, profile); in create_new_profile()
527 _profiles (profiles) in ProfilesDialog()
/dports/shells/zsh-completions/zsh-completions-0.33.0/src/
H A D_mvn321 unset _profiles
323 …if ( [[ ${+_profiles} -eq 0 ]] || _cache_invalid "$cache_name" ) && ! _retrieve_cache "$cache_name…
324 _profiles=()
328 [[ -z ${(M)profiles:#"$profile"*} ]] && _profiles+=("$profile"'['"in settings file"']')
331 [[ $#_profiles -gt 0 ]] && _store_cache "$cache_name" _profiles
333 profs+=($_profiles)
338 unset _profiles
340 …if ( [[ ${+_profiles} -eq 0 ]] || _cache_invalid "$cache_name" ) && ! _retrieve_cache "$cache_name…
341 _profiles=()
351 [[ $#_profiles -gt 0 ]] && _store_cache "$cache_name" _profiles
[all …]
/dports/devel/p5-Mojolicious-Plugin-NYTProf/Mojolicious-Plugin-NYTProf-0.23/lib/Mojolicious/Plugin/
H A DNYTProf.pm308 my @profiles = _profiles($prof_dir);
342 sub _profiles { subroutine

1234