OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:key_regex
(Results
1 - 3
of
3
) sorted by null
/external/autotest/client/common_lib/
global_config.py
156
def get_config_value_regex(self, section,
key_regex
, type=str):
160
@param
key_regex
: The regex that key should match.
163
@return: A dictionary of key:value with key matching `
key_regex
`. Return
169
if re.match(
key_regex
, option):
base_job.py
778
key_regex
= re.compile(r'^[-\.\w]+$')
783
key_regex
= re.compile(r'^[-\.\w]+\{%s\}$' % escaped_tag)
790
if not
key_regex
.search(key):
[
all
...]
base_utils.py
533
key_regex
= re.compile(r'^[-\.\w]+$')
538
key_regex
= re.compile(r'^[-\.\w]+\{%s\}$' % escaped_tag)
541
if not
key_regex
.search(key):
[
all
...]
Completed in 735 milliseconds