Searched refs:match (Results 1 – 12 of 12) sorted by relevance
/zcbor-3.5.0-3.4.0/ |
D | setup.py | 18 def new_link(match): argument 19 match_text = match.group(0)
|
D | ARCHITECTURE.md | 85 For container types, the regex will match the whole type, and then recursively parse the children w…
|
D | README.md | 172 When you call this, zcbor reads the CDDL files and creates C struct types to match the types descri…
|
/zcbor-3.5.0-3.4.0/tests/cases/ |
D | manifest9.cddl | 152 SUIT_Condition //= (suit-condition-image-match, SUIT_Reporting_Policy) 153 SUIT_Condition //= (suit-condition-image-not-match, SUIT_Reporting_Policy) 196 SUIT_Command_ID /= suit-condition-image-match 200 SUIT_Command_ID /= suit-condition-image-not-match 418 suit-condition-image-match = 3 423 suit-condition-image-not-match = 25
|
D | manifest9_simple.cddl | 89 SUIT_Condition //= (suit-condition-image-match, SUIT_Reporting_Policy) 146 suit-condition-image-match = 3
|
D | manifest14.cddl | 142 SUIT_Condition //= (suit-condition-image-match, SUIT_Rep_Policy) 143 SUIT_Condition //= (suit-condition-image-not-match, SUIT_Rep_Policy) 362 suit-condition-image-match = 3 368 suit-condition-image-not-match = 25
|
D | manifest2.cddl | 119 SUIT_Condition //= (suit-condition-image-match, nil) 120 SUIT_Condition //= (suit-condition-image-not-match, nil) 275 suit-condition-image-match = 3 281 suit-condition-image-not-match = 25
|
D | manifest3.cddl | 125 SUIT_Condition //= (suit-condition-image-match, nil) 126 SUIT_Condition //= (suit-condition-image-not-match, nil) 297 suit-condition-image-match = 3 303 suit-condition-image-not-match = 25
|
D | manifest12.cddl | 167 SUIT_Condition //= (suit-condition-image-match, SUIT_Rep_Policy) 168 SUIT_Condition //= (suit-condition-image-not-match, SUIT_Rep_Policy) 388 suit-condition-image-match = 3 394 suit-condition-image-not-match = 25
|
D | manifest20.cddl | 112 SUIT_Condition //= (suit-condition-image-match, SUIT_Rep_Policy) 227 suit-condition-image-match = 3
|
D | manifest16.cddl | 122 SUIT_Condition //= (suit-condition-image-match, SUIT_Rep_Policy) 233 suit-condition-image-match = 3
|
/zcbor-3.5.0-3.4.0/zcbor/ |
D | zcbor.py | 8 from regex import match, search, sub, findall, S, M, fullmatch 67 elif any((match(r"zcbor-.*\.egg", p) for p in P_SCRIPT.parts)): 576 match_obj = match(reg, quantifier) 867 match_obj = match(reg, instr) 1620 match = fullmatch(r"zcbor_keyval\d+", key) 1621 if match is not None: 2805 if match(r"\A\w+\Z", arg) is not None:
|