Home
last modified time | relevance | path

Searched refs:detect_include_paths (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/bindgen/
Dlib.rs782 fn detect_include_paths(options: &mut BindgenOptions) { in generate() function
783 if !options.detect_include_paths { in generate()
856 detect_include_paths(&mut options); in generate()
/aosp_15_r20/external/rust/android-crates-io/crates/bindgen/options/
Dmod.rs1525 detect_include_paths: bool {
1531 pub fn detect_include_paths(mut self, doit: bool) -> Self {
1532 self.options.detect_include_paths = doit;
/aosp_15_r20/external/rust/android-crates-io/crates/bindgen-cli/
Doptions.rs744 builder = builder.detect_include_paths(false); in builder_from_flags()