• Home
  • Raw
  • Download

Lines Matching refs:module_state

638     _sremodulestate *module_state = get_sre_module_state_by_class(cls);  in _sre_SRE_Pattern_match_impl()  local
658 match = pattern_new_match(module_state, self, &state, status); in _sre_SRE_Pattern_match_impl()
681 _sremodulestate *module_state = get_sre_module_state_by_class(cls); in _sre_SRE_Pattern_fullmatch_impl() local
702 match = pattern_new_match(module_state, self, &state, status); in _sre_SRE_Pattern_fullmatch_impl()
727 _sremodulestate *module_state = get_sre_module_state_by_class(cls); in _sre_SRE_Pattern_search_impl() local
746 match = pattern_new_match(module_state, self, &state, status); in _sre_SRE_Pattern_search_impl()
895 _sremodulestate *module_state = get_sre_module_state_by_class(cls); in _sre_SRE_Pattern_finditer_impl() local
900 scanner = pattern_scanner(module_state, self, string, pos, endpos); in _sre_SRE_Pattern_finditer_impl()
932 _sremodulestate *module_state = get_sre_module_state_by_class(cls); in _sre_SRE_Pattern_scanner_impl() local
934 return pattern_scanner(module_state, self, string, pos, endpos); in _sre_SRE_Pattern_scanner_impl()
1041 pattern_subx(_sremodulestate* module_state, in pattern_subx() argument
1148 match = pattern_new_match(module_state, self, &state, 1); in pattern_subx()
1242 _sremodulestate *module_state = get_sre_module_state_by_class(cls); in _sre_SRE_Pattern_sub_impl() local
1244 return pattern_subx(module_state, self, repl, string, count, 0); in _sre_SRE_Pattern_sub_impl()
1265 _sremodulestate *module_state = get_sre_module_state_by_class(cls); in _sre_SRE_Pattern_subn_impl() local
1267 return pattern_subx(module_state, self, repl, string, count, 1); in _sre_SRE_Pattern_subn_impl()
1412 _sremodulestate *module_state = get_sre_module_state(module); in _sre_compile_impl() local
1418 self = PyObject_GC_NewVar(PatternObject, module_state->Pattern_Type, n); in _sre_compile_impl()
2416 pattern_new_match(_sremodulestate* module_state, in pattern_new_match() argument
2433 module_state->Match_Type, in pattern_new_match()
2525 _sremodulestate *module_state = get_sre_module_state_by_class(cls); in _sre_SRE_Scanner_match_impl() local
2541 match = pattern_new_match(module_state, (PatternObject*) self->pattern, in _sre_SRE_Scanner_match_impl()
2567 _sremodulestate *module_state = get_sre_module_state_by_class(cls); in _sre_SRE_Scanner_search_impl() local
2583 match = pattern_new_match(module_state, (PatternObject*) self->pattern, in _sre_SRE_Scanner_search_impl()
2597 pattern_scanner(_sremodulestate *module_state, in pattern_scanner() argument
2606 scanner = PyObject_GC_New(ScannerObject, module_state->Scanner_Type); in pattern_scanner()
2651 _sremodulestate *module_state = get_sre_module_state_by_class(tp); in pattern_richcompare() local
2659 if (!Py_IS_TYPE(righto, module_state->Pattern_Type)) in pattern_richcompare()