Lines Matching refs:path
14 /// The header's path, not including the enclosing quotation marks or angle
16 pub path: String,
17 /// Whether to emit `#include "path"` or `#include <path>`.
58 .any(|header| header.path == "rust/cxx.h" || header.path == "rust\\cxx.h")
75 writeln!(out, "#include \"{}\"", include.path.escape_default());
78 writeln!(out, "#include <{}>", include.path);
186 path: include.path.clone(),