Lines Matching refs:regexp
34 # regexp a regexp to compare the "complete" string with.
36 # Use this instead of regexp if that isn't enough.
72 { regexp => qr/#if(def|ndef) OPENSSL_NO_DEPRECATED_(\d+_\d+(?:_\d+)?)$/,
84 { regexp => qr/#ifdef ?(.*)/,
97 { regexp => qr/#ifndef ?(.*)/,
110 { regexp => qr/#if (0|1)/,
127 { regexp => qr/#if ?(.*)/,
187 { regexp => qr/#elif (.*)/,
204 { regexp => qr/#else/,
223 { regexp => qr/#endif ?/,
238 { regexp => qr/#define ([[:alpha:]_]\w*)(<<<\(.*?\)>>>)?( (.*))?/,
248 { regexp => qr/#.*/,
266 { regexp => qr/OSSL_DEPRECATEDIN_\d+_\d+(?:_\d+)?\s+(.*)/,
269 { regexp => qr/OSSL_DEPRECATEDIN_\d+_\d+(?:_\d+)?_FOR<<<.*>>>(.*)/,
272 { regexp => qr/(.*?)\s+OSSL_DEPRECATEDIN_\d+_\d+(?:_\d+)?\s+(.*)/,
275 { regexp => qr/(.*?)\s+OSSL_DEPRECATEDIN_\d+_\d+(?:_\d+)?_FOR<<<.*>>>(.*)/,
284 { regexp => qr/OSSL_CORE_MAKE_FUNC<<<\((.*?),(.*?),(.*?)\)>>>/,
298 { regexp => qr/(.*)\bLHASH_OF<<<\((.*?)\)>>>(.*)/,
301 { regexp => qr/DEFINE_LHASH_OF(?:_INTERNAL|_EX)?<<<\((.*)\)>>>/,
329 { regexp => qr/(.*)\bSTACK_OF<<<\((.*?)\)>>>(.*)/,
332 # { regexp => qr/(.*)\bSTACK_OF\((.*?)\)(.*)/,
341 { regexp => qr/SKM_DEFINE_STACK_OF<<<\((.*),\s*(.*),\s*(.*)\)>>>/,
380 { regexp => qr/SKM_DEFINE_STACK_OF_INTERNAL<<<\((.*),\s*(.*),\s*(.*)\)>>>/,
395 { regexp => qr/DEFINE_SPECIAL_STACK_OF<<<\((.*),\s*(.*)\)>>>/,
398 { regexp => qr/DEFINE_STACK_OF<<<\((.*)\)>>>/,
401 { regexp => qr/DEFINE_SPECIAL_STACK_OF_CONST<<<\((.*),\s*(.*)\)>>>/,
404 { regexp => qr/DEFINE_STACK_OF_CONST<<<\((.*)\)>>>/,
410 { regexp => qr/DECLARE_ASN1_ITEM<<<\((.*)\)>>>/,
417 { regexp => qr/DECLARE_ASN1_ENCODE_FUNCTIONS_only<<<\((.*),\s*(.*)\)>>>/,
425 { regexp => qr/DECLARE_ASN1_ENCODE_FUNCTIONS<<<\((.*),\s*(.*),\s*(.*)\)>>>/,
434 { regexp => qr/DECLARE_ASN1_ENCODE_FUNCTIONS_name<<<\((.*),\s*(.*)\)>>>/,
443 { regexp => qr/DECLARE_ASN1_ALLOC_FUNCTIONS_name<<<\((.*),\s*(.*)\)>>>/,
451 { regexp => qr/DECLARE_ASN1_ALLOC_FUNCTIONS<<<\((.*)\)>>>/,
459 { regexp => qr/DECLARE_ASN1_FUNCTIONS_name<<<\((.*),\s*(.*)\)>>>/,
470 { regexp => qr/DECLARE_ASN1_FUNCTIONS<<<\((.*)\)>>>/,
480 { regexp => qr/DECLARE_ASN1_NDEF_FUNCTION<<<\((.*)\)>>>/,
487 { regexp => qr/DECLARE_ASN1_PRINT_FUNCTION<<<\((.*)\)>>>/,
494 { regexp => qr/DECLARE_ASN1_PRINT_FUNCTION_name<<<\((.*),\s*(.*)\)>>>/,
501 { regexp => qr/DECLARE_ASN1_SET_OF<<<\((.*)\)>>>/,
504 { regexp => qr/DECLARE_ASN1_DUP_FUNCTION<<<\((.*)\)>>>/,
511 { regexp => qr/DECLARE_ASN1_DUP_FUNCTION_name<<<\((.*),\s*(.*)\)>>>/,
519 { regexp => qr/
533 { regexp => qr/DECLARE_PKCS12_SET_OF<<<\((.*)\)>>>/,
539 { regexp => qr/DECLARE_PEM(?|_rw|_rw_cb|_rw_const)<<<\((.*?),.*\)>>>/,
550 { regexp => qr/DECLARE_PEM(?|_rw|_rw_cb|_rw_const)_ex<<<\((.*?),.*\)>>>/,
565 { regexp => qr/DECLARE_PEM(?|_write|_write_cb|_write_const)<<<\((.*?),.*\)>>>/,
574 { regexp => qr/DECLARE_PEM(?|_write|_write_cb|_write_const)_ex<<<\((.*?),.*\)>>>/,
585 { regexp => qr/DECLARE_PEM(?|_read|_read_cb)<<<\((.*?),.*\)>>>/,
594 { regexp => qr/DECLARE_PEM(?|_read|_read_cb)_ex<<<\((.*?),.*\)>>>/,
606 { regexp => qr/
621 { regexp => qr/OPENSSL_(?:EXPORT|EXTERN)/,
627 { regexp => qr/__NDK_FPABI__/,
642 { regexp => qr/^extern "C" (.*(?:;|>>>))/,
646 { regexp => qr/^\s* # Any spaces before
660 { regexp => qr/(.*) # Anything before ($1)
688 { regexp => qr/^(union|struct|enum) ([[:alpha:]_]\w*);/,
693 { regexp => qr/(?:(typedef)\s?)? # Possible typedef ($1)
710 { regexp => qr/(?:(typedef)\s?)? # Possible typedef ($1)
724 { regexp => qr/(?:(typedef)\s?)? # Possible typedef ($1)
738 { regexp => qr/(?:(typedef)\s?)? # Possible typedef ($1)
1171 if ($handler->{regexp}
1172 && $line =~ m|^$handler->{regexp}$|) {
1176 print STDERR "DEBUG[",$opts{debug_type},"]: (matches /\^",$handler->{regexp},"\$/)\n";