Home
last modified time | relevance | path

Searched refs:include_regex (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/zstd/build/single_file_libs/
H A Dcombine.py76 include_regex: Pattern = re.compile(r'^\s*#\s*include\s*"(.+?)"') variable
81 if (include_regex.match('#include "file"') and
82 include_regex.match(' #include "file"') and
83 include_regex.match('# include "file"') and
84 include_regex.match('#include "file"') and
85 include_regex.match('#include "file" // comment')):
86 if (not include_regex.match('#include <file>') and
87 not include_regex.match('//#include "file"') and
88 not include_regex.match('/*#include "file"*/')):
89 found = include_regex.match('#include "file" // "')
[all …]
/aosp_15_r20/external/google-cloud-java/java-dlp/proto-google-cloud-dlp-v2/src/main/proto/google/privacy/dlp/v2/
H A Dstorage.proto388 // Included files are those that match at least one item in `include_regex` and
394 // For example, given the input `{bucket_name: "mybucket", include_regex:
402 // full path doesn't match any items in `include_regex`)
406 // If `include_regex` is left empty, it will match all files by default
407 // (this is equivalent to setting `include_regex: [".*"]`).
413 // * `{bucket_name: "mybucket", include_regex: ["directory/[^/]+"]}` will
429 repeated string include_regex = 2; field
/aosp_15_r20/external/googleapis/google/privacy/dlp/v2/
H A Dstorage.proto430 // Included files are those that match at least one item in `include_regex` and
436 // For example, given the input `{bucket_name: "mybucket", include_regex:
444 // full path doesn't match any items in `include_regex`)
448 // If `include_regex` is left empty, it will match all files by default
449 // (this is equivalent to setting `include_regex: [".*"]`).
455 // * `{bucket_name: "mybucket", include_regex: ["directory/[^/]+"]}` will
471 repeated string include_regex = 2; field
/aosp_15_r20/external/pytorch/torch/utils/
H A Dcpp_extension.py726 include_regex = re.compile(r'((\-|\/)I.*)')
729 for m in (include_regex.match(elem) for elem in cmd) if m