Home
last modified time | relevance | path

Searched refs:raw_line (Results 1 – 9 of 9) sorted by relevance

/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo_sanity.rs234 .raw_line(r#"pub use nsstring::{nsACString, nsAString, nsString};"#) in sanity_check_can_generate_stylo_bindings()
235 .raw_line(r#"type nsACString_internal = nsACString;"#) in sanity_check_can_generate_stylo_bindings()
236 .raw_line(r#"type nsAString_internal = nsAString;"#) in sanity_check_can_generate_stylo_bindings()
237 .raw_line(r#"use gecko_bindings::structs::mozilla::css::URLValue;"#) in sanity_check_can_generate_stylo_bindings()
238 .raw_line(r#"use gecko_bindings::structs::RawGeckoAnimationPropertySegment;"#) in sanity_check_can_generate_stylo_bindings()
239 .raw_line(r#"use gecko_bindings::structs::RawGeckoComputedTiming;"#) in sanity_check_can_generate_stylo_bindings()
240 .raw_line(r#"use gecko_bindings::structs::RawGeckoDocument;"#) in sanity_check_can_generate_stylo_bindings()
241 .raw_line(r#"use gecko_bindings::structs::RawGeckoElement;"#) in sanity_check_can_generate_stylo_bindings()
242 .raw_line(r#"use gecko_bindings::structs::RawGeckoKeyframeList;"#) in sanity_check_can_generate_stylo_bindings()
243 .raw_line(r#"use gecko_bindings::structs::RawGeckoComputedKeyframeValuesList;"#) in sanity_check_can_generate_stylo_bindings()
[all …]
/third_party/rust/crates/rust-openssl/openssl-sys/build/
Drun_bindgen.rs72 .raw_line("use libc::*;") in run()
73 .raw_line("type evp_pkey_st = EVP_PKEY;") in run()
117 .raw_line("use libc::*;") in run_boringssl()
/third_party/rust/crates/bindgen/bindgen-integration/
Dbuild.rs174 .raw_line("pub use self::root::*;") in setup_macro_test()
175 .raw_line("extern { fn my_prefixed_function_to_remove(i: i32); }") in setup_macro_test()
/third_party/rust/crates/bindgen/bindgen-cli/
Doptions.rs230 raw_line: Vec<String>, field
447 raw_line, in builder_from_flags()
756 for line in raw_line { in builder_from_flags()
757 builder = builder.raw_line(line); in builder_from_flags()
/third_party/ltp/scripts/
Dcheckpatch.pl1942 sub raw_line { subroutine
1961 my $stat_real = raw_line($linenr, 0);
1963 $stat_real = $stat_real . "\n" . raw_line($count, 0);
1974 $herectx .= raw_line($linenr, $n) . "\n";
4279 my $stat_real = raw_line($linenr, $cond_lines);
5375 my $rl = raw_line($linenr, $n);
5572 $stat_real = raw_line($linenr, $cond_lines)
6723 my $fmt = get_quoted_string($lines[$count - 1], raw_line($count, 0));
6963 my $rl = raw_line($linenr, $n);
/third_party/python/Lib/
Dnntplib.py650 for raw_line in lines:
651 match = line_pat.search(raw_line.strip())
/third_party/rust/crates/bindgen/bindgen/
Dlib.rs1171 pub fn raw_line<T: Into<String>>(mut self, arg: T) -> Self {
/third_party/json/tools/cpplint/
Dcpplint.py960 def ParseNolintSuppressions(filename, raw_line, linenum, error): argument
973 matched = Search(r'\bNOLINT(NEXTLINE)?\b(\([^)]+\))?', raw_line)
/third_party/rust/crates/bindgen/bindgen/codegen/
Dmod.rs593 for raw_line in raw_lines { in codegen()
596 proc_macro2::TokenStream::from_str(raw_line).unwrap(), in codegen()