Home
last modified time | relevance | path

Searched refs:match_object (Results 1 – 25 of 744) sorted by relevance

12345678910>>...30

/dports/devel/py-pyxb/PyXB-1.2.6/pyxb/utils/
H A Dtemplates.py67 def _bodyIfDefinedPattern (match_object, dictionary): argument
69 id = match_object.group('id')
70 repl = match_object.group('repl')
71 ndrepl = match_object.group('ndrepl')
84 def _bodyConditionalPattern (match_object, dictionary): argument
86 expr = match_object.group('expr')
87 true = match_object.group('true')
88 false = match_object.group('false')
/dports/sysutils/py-salt/salt-3004.1/tests/unit/modules/nxos/
H A Dnxos_platform.py178 match_object = re.search(
182 ver = match_object.group(1)
183 ver += "." + match_object.group(2)
184 if match_object.groups()[-1]:
185 ver += "(" + match_object.group(3) + ")"
186 ver += match_object.group(4)
187 ver += "(" + match_object.group(5) + ")"
190 "(" + match_object.group(3) + "." + match_object.group(4) + ")"
/dports/net/py-suds-jurko/suds-jurko-0.6/suds/sax/
H A Ddate.py371 def _date_from_match(match_object): argument
384 year = int(match_object.group("year"))
385 month = int(match_object.group("month"))
386 day = int(match_object.group("day"))
390 def _time_from_match(match_object): argument
409 hour = int(match_object.group('hour'))
410 minute = int(match_object.group('minute'))
411 second = int(match_object.group('second'))
423 def _tzinfo_from_match(match_object): argument
436 tz_utc = match_object.group("tz_utc")
[all …]
/dports/net/py-suds-community/suds-community-1.0.0/suds/sax/
H A Ddate.py373 def _date_from_match(match_object): argument
386 year = int(match_object.group("year"))
387 month = int(match_object.group("month"))
388 day = int(match_object.group("day"))
392 def _time_from_match(match_object): argument
411 hour = int(match_object.group('hour'))
412 minute = int(match_object.group('minute'))
413 second = int(match_object.group('second'))
425 def _tzinfo_from_match(match_object): argument
438 tz_utc = match_object.group("tz_utc")
[all …]
/dports/science/gramps/gramps-5.1.4/gramps/gen/filters/rules/person/
H A D_hastextmatchingsubstringof.py85 if self.match_object(person): # first match the person itself
111 if self.match_object(family):
131 if self.match_object(event):
150 if self.match_object(place):
160 if self.match_object(media):
169 if repo and self.match_object(repo)
176 match = self.match_object(source)
194 (match, self.match_object(citation),
197 if match or self.match_object(citation):
208 def match_object(self, obj): member in HasTextMatchingSubstringOf
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/debugger/src/
H A Ddbg_idb.erl23 -export([insert/3, lookup/2, match_object/2]).
49 match_object(DbRef, Key) -> function
52 rpc:block_call(Node, ets, match_object, [ModDb, Key]);
54 ets:match_object(ModDb, Key)
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/debugger/src/
H A Ddbg_idb.erl23 -export([insert/3, lookup/2, match_object/2]).
49 match_object(DbRef, Key) -> function
52 rpc:block_call(Node, ets, match_object, [ModDb, Key]);
54 ets:match_object(ModDb, Key)
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/debugger/src/
H A Ddbg_idb.erl23 -export([insert/3, lookup/2, match_object/2]).
49 match_object(DbRef, Key) -> function
52 rpc:block_call(Node, ets, match_object, [ModDb, Key]);
54 ets:match_object(ModDb, Key)
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/debugger/src/
H A Ddbg_idb.erl23 -export([insert/3, lookup/2, match_object/2]).
49 match_object(DbRef, Key) -> function
52 rpc:block_call(Node, ets, match_object, [ModDb, Key]);
54 ets:match_object(ModDb, Key)
/dports/lang/erlang/otp-OTP-24.1.7/lib/debugger/src/
H A Ddbg_idb.erl23 -export([insert/3, lookup/2, match_object/2]).
49 match_object(DbRef, Key) -> function
52 rpc:block_call(Node, ets, match_object, [ModDb, Key]);
54 ets:match_object(ModDb, Key)
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/debugger/src/
H A Ddbg_idb.erl23 -export([insert/3, lookup/2, match_object/2]).
49 match_object(DbRef, Key) -> function
52 rpc:block_call(Node, ets, match_object, [ModDb, Key]);
54 ets:match_object(ModDb, Key)
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/debugger/src/
H A Ddbg_idb.erl23 -export([insert/3, lookup/2, match_object/2]).
49 match_object(DbRef, Key) -> function
52 rpc:block_call(Node, ets, match_object, [ModDb, Key]);
54 ets:match_object(ModDb, Key)
/dports/math/py-sympy/sympy-1.9/sympy/solvers/ode/
H A Dhypergeometric.py223 def get_sol_2F1_hypergeometric(eq, func, match_object): argument
228 a = match_object['a']
229 b = match_object['b']
230 c = match_object['c']
231 A = match_object['A']
245 subs = match_object['mobius']
251 sol = sol.subs(x, match_object['mobius'])
252 sol = sol.subs(x, x**match_object['k'])
253 e = e.subs(x, x**match_object['k'])
258 sol = cancel((e/e1)*x**((-match_object['k']+1)/2))*sol
[all …]
/dports/devel/py-behave/behave-1.2.6/behave/
H A Dtag_matcher.py226 match_object = self.tag_pattern.match(tag)
227 if match_object:
228 yield (tag, match_object)
241 match_object = self.tag_pattern.match(tag)
242 if match_object:
243 category = match_object.group("category")
247 category_tag_pairs.append((tag, match_object))
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/snmp/src/agent/
H A Dsnmpa_general_db.erl35 -export([match_object/2, match_delete/2]).
329 match_object({mnesia, Name}, Pattern) -> function
331 F = fun() -> mnesia:match_object(Name, Pattern, read) end,
338 match_object({dets, Name}, Pattern) -> function
340 dets:match_object(Name, Pattern);
341 match_object({ets, Name, _}, Pattern) -> function
343 ets:match_object(Name, Pattern).
357 Recs = mnesia:match_object(Name, Pattern, read),
371 Recs = dets:match_object(Name, Pattern),
376 Recs = ets:match_object(Name, Pattern),
[all …]
H A Dsnmpa_mib_storage_mnesia.erl37 match_object/2,
186 match_object(#tab{id = ID}, Pattern) -> function
188 F = fun() -> mnesia:match_object(ID, Pattern, read) end,
207 Recs = mnesia:match_object(ID, Pattern, read),
230 match_object(Tab, mnesia:table_info(ID, wild_pattern)).
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/snmp/src/agent/
H A Dsnmpa_general_db.erl35 -export([match_object/2, match_delete/2]).
329 match_object({mnesia, Name}, Pattern) -> function
331 F = fun() -> mnesia:match_object(Name, Pattern, read) end,
338 match_object({dets, Name}, Pattern) -> function
340 dets:match_object(Name, Pattern);
341 match_object({ets, Name, _}, Pattern) -> function
343 ets:match_object(Name, Pattern).
357 Recs = mnesia:match_object(Name, Pattern, read),
371 Recs = dets:match_object(Name, Pattern),
376 Recs = ets:match_object(Name, Pattern),
[all …]
H A Dsnmpa_mib_storage_mnesia.erl37 match_object/2,
186 match_object(#tab{id = ID}, Pattern) -> function
188 F = fun() -> mnesia:match_object(ID, Pattern, read) end,
207 Recs = mnesia:match_object(ID, Pattern, read),
230 match_object(Tab, mnesia:table_info(ID, wild_pattern)).
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/snmp/src/agent/
H A Dsnmpa_general_db.erl35 -export([match_object/2, match_delete/2]).
329 match_object({mnesia, Name}, Pattern) -> function
331 F = fun() -> mnesia:match_object(Name, Pattern, read) end,
338 match_object({dets, Name}, Pattern) -> function
340 dets:match_object(Name, Pattern);
341 match_object({ets, Name, _}, Pattern) -> function
343 ets:match_object(Name, Pattern).
357 Recs = mnesia:match_object(Name, Pattern, read),
371 Recs = dets:match_object(Name, Pattern),
376 Recs = ets:match_object(Name, Pattern),
[all …]
H A Dsnmpa_mib_storage_mnesia.erl37 match_object/2,
186 match_object(#tab{id = ID}, Pattern) -> function
188 F = fun() -> mnesia:match_object(ID, Pattern, read) end,
207 Recs = mnesia:match_object(ID, Pattern, read),
230 match_object(Tab, mnesia:table_info(ID, wild_pattern)).
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/snmp/src/agent/
H A Dsnmpa_general_db.erl35 -export([match_object/2, match_delete/2]).
329 match_object({mnesia, Name}, Pattern) -> function
331 F = fun() -> mnesia:match_object(Name, Pattern, read) end,
338 match_object({dets, Name}, Pattern) -> function
340 dets:match_object(Name, Pattern);
341 match_object({ets, Name, _}, Pattern) -> function
343 ets:match_object(Name, Pattern).
357 Recs = mnesia:match_object(Name, Pattern, read),
371 Recs = dets:match_object(Name, Pattern),
376 Recs = ets:match_object(Name, Pattern),
[all …]
H A Dsnmpa_mib_storage_mnesia.erl37 match_object/2,
186 match_object(#tab{id = ID}, Pattern) -> function
188 F = fun() -> mnesia:match_object(ID, Pattern, read) end,
207 Recs = mnesia:match_object(ID, Pattern, read),
230 match_object(Tab, mnesia:table_info(ID, wild_pattern)).
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/snmp/src/agent/
H A Dsnmpa_general_db.erl35 -export([match_object/2, match_delete/2]).
329 match_object({mnesia, Name}, Pattern) -> function
331 F = fun() -> mnesia:match_object(Name, Pattern, read) end,
338 match_object({dets, Name}, Pattern) -> function
340 dets:match_object(Name, Pattern);
341 match_object({ets, Name, _}, Pattern) -> function
343 ets:match_object(Name, Pattern).
357 Recs = mnesia:match_object(Name, Pattern, read),
371 Recs = dets:match_object(Name, Pattern),
376 Recs = ets:match_object(Name, Pattern),
[all …]
/dports/lang/erlang/otp-OTP-24.1.7/lib/snmp/src/agent/
H A Dsnmpa_general_db.erl35 -export([match_object/2, match_delete/2]).
329 match_object({mnesia, Name}, Pattern) -> function
331 F = fun() -> mnesia:match_object(Name, Pattern, read) end,
338 match_object({dets, Name}, Pattern) -> function
340 dets:match_object(Name, Pattern);
341 match_object({ets, Name, _}, Pattern) -> function
343 ets:match_object(Name, Pattern).
357 Recs = mnesia:match_object(Name, Pattern, read),
371 Recs = dets:match_object(Name, Pattern),
376 Recs = ets:match_object(Name, Pattern),
[all …]
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/snmp/src/agent/
H A Dsnmpa_general_db.erl35 -export([match_object/2, match_delete/2]).
329 match_object({mnesia, Name}, Pattern) -> function
331 F = fun() -> mnesia:match_object(Name, Pattern, read) end,
338 match_object({dets, Name}, Pattern) -> function
340 dets:match_object(Name, Pattern);
341 match_object({ets, Name, _}, Pattern) -> function
343 ets:match_object(Name, Pattern).
357 Recs = mnesia:match_object(Name, Pattern, read),
371 Recs = dets:match_object(Name, Pattern),
376 Recs = ets:match_object(Name, Pattern),
[all …]

12345678910>>...30