Home
last modified time | relevance | path

Searched refs:m_matcher (Results 1 – 25 of 218) sorted by relevance

123456789

/dports/graphics/kphotoalbum/kphotoalbum-5.8.1/DB/
H A DExactCategoryMatcher.cpp13 , m_matcher(nullptr) in ExactCategoryMatcher()
19 if (m_matcher) { in ~ExactCategoryMatcher()
20 delete m_matcher; in ~ExactCategoryMatcher()
21 m_matcher = nullptr; in ~ExactCategoryMatcher()
27 m_matcher = subMatcher; in setMatcher()
28 if (m_matcher) in setMatcher()
30 m_matcher->setShouldCreateMatchedSet(true); in setMatcher()
38 if (!m_matcher) in eval()
44 if (!m_matcher->eval(info, matchedTags)) in eval()
57 m_matcher->debug(level + 1); in debug()
/dports/textproc/scim/scim-1.4.9/src/
H A Dscim_hotkey.cpp159 HotkeyMatcher m_matcher; member in scim::IMEngineHotkeyMatcher::IMEngineHotkeyMatcherImpl
232 m_impl->m_matcher.add_hotkey (key, i); in add_hotkey()
250 m_impl->m_matcher.add_hotkeys (keys, i); in add_hotkeys()
283 m_impl->m_matcher.reset (); in reset()
289 m_impl->m_matcher.clear (); in clear()
296 m_impl->m_matcher.push_key_event (key); in push_key_event()
302 return m_impl->m_matcher.is_matched (); in is_matched()
344 HotkeyMatcher m_matcher; member in scim::FrontEndHotkeyMatcher::FrontEndHotkeyMatcherImpl
428 m_impl->m_matcher.reset (); in reset()
434 m_impl->m_matcher.clear (); in clear()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/css/
H A DMediaQueryList.cpp36 : m_matcher(vector) in MediaQueryList()
38 , m_evaluationRound(m_matcher->evaluationRound()) in MediaQueryList()
58 m_matcher->addListener(listener, this); in addListener()
66 m_matcher->removeListener(listener.get(), this); in removeListener()
71 if (m_evaluationRound != m_matcher->evaluationRound() && evaluator) in evaluate()
73 notificationNeeded = m_changeRound == m_matcher->evaluationRound(); in evaluate()
78 m_evaluationRound = m_matcher->evaluationRound(); in setMatches()
89 if (m_evaluationRound != m_matcher->evaluationRound()) in matches()
90 setMatches(m_matcher->evaluate(m_media.get())); in matches()
/dports/net/arataga/restinio-v.0.6.13/dev/restinio/router/
H A Dmethod_matcher.hpp82 std::unique_ptr< Matcher > m_matcher; member in restinio::router::impl::allocated_matcher_proxy_t
87 : m_matcher{ std::make_unique<Matcher>( std::forward<Args>(args)... ) } in allocated_matcher_proxy_t()
94 return m_matcher->match( method ); in match()
252 method_matcher_t * m_matcher{ nullptr }; member in restinio::router::impl::buffered_matcher_holder_t
266 if( m_matcher ) m_matcher->~method_matcher_t(); in cleanup()
272 if( other.m_matcher ) in move_from()
274 m_matcher = other.m_mover( other.m_matcher, m_buffer.data() ); in move_from()
277 other.m_matcher = nullptr; in move_from()
358 get() const noexcept { return m_matcher; } in get()
363 operator->() const noexcept { return m_matcher; } in operator ->()
[all …]
/dports/astro/libosmium/libosmium-2.17.2/include/osmium/util/
H A Dstring_matcher.hpp301 matcher_type m_matcher; member in osmium::StringMatcher
352 m_matcher(always_false{}) { in StringMatcher()
365 m_matcher(always_false{}) { in StringMatcher()
367 m_matcher = always_true{};
378 m_matcher(equal{str}) { in StringMatcher()
388 m_matcher(equal{str}) { in StringMatcher()
399 m_matcher(regex{aregex}) { in StringMatcher()
411 m_matcher(list{strings}) { in StringMatcher()
425 m_matcher(std::forward<TMatcher>(matcher)) { in StringMatcher()
433 return std::visit(match_visitor{str}, m_matcher); in operator ()()
[all …]
/dports/games/trenchbroom/TrenchBroom-ed46601/common/src/Model/
H A DBrushContentTypeEvaluator.cpp49 StringUtils::CaseSensitiveStringMatcher m_matcher; member in TrenchBroom::Model::TextureNameEvaluator
52 m_matcher(pattern) {} in TextureNameEvaluator()
58 return m_matcher.matches(textureName); in doEvaluate()
59 return m_matcher.matches(textureName.substr(pos + 1)); in doEvaluate()
77 StringUtils::CaseSensitiveStringMatcher m_matcher; member in TrenchBroom::Model::EntityClassnameEvaluator
80 m_matcher(pattern) {} in EntityClassnameEvaluator()
87 return m_matcher.matches(entity->classname()); in doEvaluate()
/dports/x11-fm/worker/worker-4.10.0/src/
H A Dstring_completion.cc26 StringCompletion::StringCompletion( RefCount< StringMatcherFNMatch > matcher ) : m_matcher( matcher… in StringCompletion()
38 if ( m_matcher.getVal() == NULL ) return ""; in findCompletion()
48 m_matcher->setMatchString( start_match + "*" ); in findCompletion()
64 m_matcher->setMatchString( new_matcher ); in findCompletion()
71 if ( ! m_matcher->match( *it1 ) ) { in findCompletion()
88 if ( m_matcher.getVal() == NULL ) return 0; in findShortestMatch()
102 if ( m_matcher->match( my_s ) ) { in findShortestMatch()
/dports/converters/osm2pgsql/osm2pgsql-1.5.1/contrib/libosmium/include/osmium/util/
H A Dstring_matcher.hpp283 matcher_type m_matcher; member in osmium::StringMatcher
326 m_matcher(always_false{}) { in StringMatcher()
339 m_matcher(always_false{}) { in StringMatcher()
341 m_matcher = always_true{};
352 m_matcher(equal{str}) { in StringMatcher()
362 m_matcher(equal{str}) { in StringMatcher()
373 m_matcher(regex{aregex}) { in StringMatcher()
385 m_matcher(list{strings}) { in StringMatcher()
399 m_matcher(std::forward<TMatcher>(matcher)) { in StringMatcher()
406 return boost::apply_visitor(match_visitor{str}, m_matcher); in operator ()()
[all …]
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/libosmium/include/osmium/util/
H A Dstring_matcher.hpp285 matcher_type m_matcher; member in osmium::StringMatcher
328 m_matcher(always_false{}) { in StringMatcher()
340 m_matcher(always_false{}) { in StringMatcher()
342 m_matcher = always_true{};
352 m_matcher(equal{str}) { in StringMatcher()
361 m_matcher(equal{str}) { in StringMatcher()
371 m_matcher(regex{aregex}) { in StringMatcher()
382 m_matcher(list{strings}) { in StringMatcher()
395 m_matcher(std::forward<TMatcher>(matcher)) { in StringMatcher()
402 return boost::apply_visitor(match_visitor{str}, m_matcher); in operator ()()
[all …]
/dports/math/ogdf/OGDF/test/include/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/
H A Dfulfillsconstraint.h17 : m_matcher(matcher) in FulfillsConstraint()
24 return m_matcher.Matches(actual); in operator()
27 MatcherType m_matcher; member
42 builder << snowhouse::Stringize(constraint.m_matcher);
/dports/games/trenchbroom/TrenchBroom-ed46601/common/src/Assets/
H A DModelDefinition.cpp107 m_matcher(NULL) {} in StaticModelDefinition()
113 m_matcher(new StaticModelDefinitionAttributeMatcher(attributeName, attributeValue)) {} in StaticModelDefinition()
119 m_matcher(new StaticModelDefinitionFlagMatcher(attributeName, attributeValue)) {} in StaticModelDefinition()
122 delete m_matcher; in ~StaticModelDefinition()
123 m_matcher = NULL; in ~StaticModelDefinition()
127 if (m_matcher == NULL) in doMatches()
129 return m_matcher->matches(attributes); in doMatches()
/dports/security/keepassxc/keepassxc-2.6.6/tests/
H A DTestWildcardMatcher.cpp61 m_matcher = new WildcardMatcher(text); in initMatcher()
66 delete m_matcher; in cleanupMatcher()
80 bool matchResult = m_matcher->match(pattern); in verifyMatch()
86 bool matchResult = m_matcher->match(pattern); in verifyNoMatch()
/dports/www/falkon/falkon-3.2.0/src/lib/adblock/
H A Dadblockmanager.cpp53 , m_matcher(new AdBlockMatcher(this)) in Q_GLOBAL_STATIC()
91 m_matcher->update(); in setEnabled()
93 m_matcher->clear(); in setEnabled()
122 const AdBlockRule* blockedRule = m_matcher->match(request, urlDomain, urlString); in block()
237 m_matcher->update(); in removeSubscription()
348 m_matcher->update(); in load()
364 m_matcher->update(); in updateMatcher()
410 return !m_matcher->adBlockDisabledForUrl(url); in canBeBlocked()
418 return m_matcher->elementHidingRules(); in elementHidingRules()
426 return m_matcher->elementHidingRulesForDomain(url.host()); in elementHidingRulesForDomain()
/dports/security/shibboleth-sp/shibboleth-sp-3.3.0/shibsp/attribute/filtering/impl/
H A DAttributeRequesterEntityAttributeFunctor.cpp49 boost::scoped_ptr<EntityMatcher> m_matcher; member in shibsp::AttributeRequesterEntityAttributeFunctor
52 …: m_matcher(SAMLConfig::getConfig().EntityMatcherManager.newPlugin(ENTITYATTR_ENTITY_MATCHER, e, d… in AttributeRequesterEntityAttributeFunctor()
59 return m_matcher->matches(*entity); in evaluatePolicyRequirement()
H A DAttributeIssuerEntityAttributeFunctor.cpp49 boost::scoped_ptr<EntityMatcher> m_matcher; member in shibsp::AttributeIssuerEntityAttributeFunctor
52 …: m_matcher(SAMLConfig::getConfig().EntityMatcherManager.newPlugin(ENTITYATTR_ENTITY_MATCHER, e, d… in AttributeIssuerEntityAttributeFunctor()
59 return m_matcher->matches(*entity); in evaluatePolicyRequirement()
H A DAttributeRequesterEntityMatcherFunctor.cpp49 boost::scoped_ptr<EntityMatcher> m_matcher; member in shibsp::AttributeRequesterEntityMatcherFunctor
55m_matcher.reset(SAMLConfig::getConfig().EntityMatcherManager.newPlugin(type.c_str(), e, deprecatio… in AttributeRequesterEntityMatcherFunctor()
64 return m_matcher->matches(*entity); in evaluatePolicyRequirement()
H A DAttributeIssuerEntityMatcherFunctor.cpp49 boost::scoped_ptr<EntityMatcher> m_matcher; member in shibsp::AttributeIssuerEntityMatcherFunctor
55m_matcher.reset(SAMLConfig::getConfig().EntityMatcherManager.newPlugin(type.c_str(), e, deprecatio… in AttributeIssuerEntityMatcherFunctor()
64 return m_matcher->matches(*entity); in evaluatePolicyRequirement()
/dports/security/opensaml/opensaml-3.2.1/saml/saml2/metadata/impl/
H A DIncludeMetadataFilter.cpp60 scoped_ptr<EntityMatcher> m_matcher; member in opensaml::saml2md::IncludeMetadataFilter
78m_matcher.reset(SAMLConfig::getConfig().EntityMatcherManager.newPlugin(matcher.c_str(), e, depreca… in IncludeMetadataFilter()
135 if (m_matcher && m_matcher->matches(entity)) in included()
H A DExcludeMetadataFilter.cpp58 scoped_ptr<EntityMatcher> m_matcher; member in opensaml::saml2md::ExcludeMetadataFilter
76m_matcher.reset(SAMLConfig::getConfig().EntityMatcherManager.newPlugin(matcher.c_str(), e, depreca… in ExcludeMetadataFilter()
146 if (m_matcher && m_matcher->matches(entity)) in included()
/dports/net/quiterss/quiterss-0.19.4_1/src/adblock/
H A Dadblockmanager.cpp66 , m_matcher(new AdBlockMatcher(this)) in AdBlockManager()
121 const AdBlockRule* blockedRule = m_matcher->match(request, urlDomain, urlString); in block()
298 connect(subscription, SIGNAL(subscriptionChanged()), m_matcher, SLOT(update())); in load()
309 m_matcher->update(); in load()
373 return !m_matcher->adBlockDisabledForUrl(url); in canBeBlocked()
378 return m_matcher->elementHidingRules(); in elementHidingRules()
390 return m_matcher->elementHidingRulesForDomain(url.host()); in elementHidingRulesForDomain()
/dports/audio/amarok/amarok-3e11ccdd1417e70486eaaa84d8475182eec44c20/src/playlistgenerator/constraints/
H A DCheckpoint.cpp68 , m_matcher( 0 ) in Checkpoint()
108 , m_matcher( 0 ) in Checkpoint()
114 delete m_matcher; in ~Checkpoint()
224 QList<int> locs = m_matcher->find( tl ); in satisfaction()
282 delete m_matcher; in setCheckpoint()
285 m_matcher = new TrackMatcher( track ); in setCheckpoint()
289 m_matcher = new AlbumMatcher( album ); in setCheckpoint()
293 m_matcher = new ArtistMatcher( artist ); in setCheckpoint()
/dports/security/keepassx-devel/keepassx-55869e8/tests/
H A DTestWildcardMatcher.cpp62 m_matcher = new WildcardMatcher(text); in initMatcher()
77 bool matchResult = m_matcher->match(pattern); in verifyMatch()
83 bool matchResult = m_matcher->match(pattern); in verifyNoMatch()
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/GraphMol/Descriptors/
H A DLipinski.cpp34 m_matcher = p; in ss_matcher()
35 POSTCONDITION(m_matcher, "no matcher"); in ss_matcher()
37 const RDKit::ROMol *getMatcher() const { return m_matcher; }; in getMatcher()
39 PRECONDITION(m_matcher, "no matcher"); in countMatches()
45 const RDKit::ROMol nm(*(m_matcher), true); in countMatches()
48 const RDKit::ROMol &nm = *m_matcher; in countMatches()
53 ~ss_matcher() { delete m_matcher; }; in ~ss_matcher()
59 const RDKit::ROMol *m_matcher{nullptr}; member in __anoncf95b39d0111::ss_matcher
/dports/devel/catch/Catch2-2.13.7/include/internal/
H A Dcatch_capture_matchers.h25 MatcherT m_matcher; variable
31 m_matcher( matcher ),
36 auto matcherAsString = m_matcher.toString(); in streamReconstructedExpression()
/dports/math/e-antic/e-antic-1.0.0-rc.13/libeantic/test/external/catch2/include/internal/
H A Dcatch_capture_matchers.h25 MatcherT m_matcher; variable
31 m_matcher( matcher ),
36 auto matcherAsString = m_matcher.toString(); in streamReconstructedExpression()

123456789