Home
last modified time | relevance | path

Searched refs:first_word (Results 1 – 25 of 555) sorted by relevance

12345678910>>...23

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/tools/transport_security_state_generator/
H A Dinput_file_parsers.cc67 if (first_word.ends_with(",")) { in MatchCertificateName()
68 first_word = first_word.substr(0, first_word.size() - 1); in MatchCertificateName()
71 if (first_word.starts_with("*.")) { in MatchCertificateName()
72 first_word = first_word.substr(2, first_word.size() - 2); in MatchCertificateName()
75 size_t pos = first_word.find('.'); in MatchCertificateName()
77 first_word = first_word.substr(0, first_word.size() - pos); in MatchCertificateName()
80 pos = first_word.find('-'); in MatchCertificateName()
82 first_word = first_word.substr(0, first_word.size() - pos); in MatchCertificateName()
85 if (first_word.empty()) { in MatchCertificateName()
92 first_word = filtered_word; in MatchCertificateName()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/tools/transport_security_state_generator/
H A Dinput_file_parsers.cc66 base::StringPiece first_word = words[0]; in MatchCertificateName() local
68 if (base::EndsWith(first_word, ",")) { in MatchCertificateName()
69 first_word = first_word.substr(0, first_word.size() - 1); in MatchCertificateName()
73 first_word = first_word.substr(2, first_word.size() - 2); in MatchCertificateName()
76 size_t pos = first_word.find('.'); in MatchCertificateName()
78 first_word = first_word.substr(0, first_word.size() - pos); in MatchCertificateName()
81 pos = first_word.find('-'); in MatchCertificateName()
83 first_word = first_word.substr(0, first_word.size() - pos); in MatchCertificateName()
86 if (first_word.empty()) { in MatchCertificateName()
93 first_word = filtered_word; in MatchCertificateName()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/doc/book/listings/ch04-understanding-ownership/listing-04-09/src/
H A Dmain.rs2 fn first_word(s: &str) -> &str { in first_word() function
20 let word = first_word(&my_string[0..6]); in main()
21 let word = first_word(&my_string[..]); in main()
24 let word = first_word(&my_string); in main()
29 let word = first_word(&my_string_literal[0..6]); in main()
30 let word = first_word(&my_string_literal[..]); in main()
34 let word = first_word(my_string_literal); in main()
/dports/shells/bash/bash-5.1/tests/
H A Ddollar-at-star3.sub39 first_word=${f[@]:0:1}
40 recho $first_word
42 first_word=${f[0]:0:1}
43 recho $first_word
45 first_word=${f:0:1}
46 recho $first_word
50 first_word=${f[@]:0:1}
51 recho $first_word
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/Inflector-0.11.4/src/cases/case/
H A Dmod.rs9 pub first_word: bool, field
37 let mut first_word: bool = camel_options.first_word; in to_case_camel_like() localVariable
53 result = append_on_new_word(result, first_word, character, &camel_options); in to_case_camel_like()
54 first_word = false; in to_case_camel_like()
65 fn append_on_new_word(mut result: String, first_word: bool, character: char, camel_options: &CamelO… in append_on_new_word()
66 if not_first_word_and_has_seperator(first_word, camel_options.has_seperator) { in append_on_new_word()
69 if first_word_or_not_inverted(first_word, camel_options.inverted) { in append_on_new_word()
77 fn not_first_word_and_has_seperator(first_word: bool, has_seperator: bool) -> bool { in not_first_word_and_has_seperator()
78 has_seperator && !first_word in not_first_word_and_has_seperator()
81 fn first_word_or_not_inverted(first_word: bool, inverted: bool) -> bool { in first_word_or_not_inverted()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/Inflector/src/cases/case/
H A Dmod.rs9 pub first_word: bool, field
37 let mut first_word: bool = camel_options.first_word; in to_case_camel_like() localVariable
53 result = append_on_new_word(result, first_word, character, &camel_options); in to_case_camel_like()
54 first_word = false; in to_case_camel_like()
65 fn append_on_new_word(mut result: String, first_word: bool, character: char, camel_options: &CamelO… in append_on_new_word()
66 if not_first_word_and_has_seperator(first_word, camel_options.has_seperator) { in append_on_new_word()
69 if first_word_or_not_inverted(first_word, camel_options.inverted) { in append_on_new_word()
77 fn not_first_word_and_has_seperator(first_word: bool, has_seperator: bool) -> bool { in not_first_word_and_has_seperator()
78 has_seperator && !first_word in not_first_word_and_has_seperator()
81 fn first_word_or_not_inverted(first_word: bool, inverted: bool) -> bool { in first_word_or_not_inverted()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/Inflector/src/cases/case/
H A Dmod.rs9 pub first_word: bool, field
37 let mut first_word: bool = camel_options.first_word; in to_case_camel_like() localVariable
53 result = append_on_new_word(result, first_word, character, &camel_options); in to_case_camel_like()
54 first_word = false; in to_case_camel_like()
65 fn append_on_new_word(mut result: String, first_word: bool, character: char, camel_options: &CamelO… in append_on_new_word()
66 if not_first_word_and_has_seperator(first_word, camel_options.has_seperator) { in append_on_new_word()
69 if first_word_or_not_inverted(first_word, camel_options.inverted) { in append_on_new_word()
77 fn not_first_word_and_has_seperator(first_word: bool, has_seperator: bool) -> bool { in not_first_word_and_has_seperator()
78 has_seperator && !first_word in not_first_word_and_has_seperator()
81 fn first_word_or_not_inverted(first_word: bool, inverted: bool) -> bool { in first_word_or_not_inverted()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/Inflector/src/cases/case/
H A Dmod.rs9 pub first_word: bool, field
37 let mut first_word: bool = camel_options.first_word; in to_case_camel_like() localVariable
53 result = append_on_new_word(result, first_word, character, &camel_options); in to_case_camel_like()
54 first_word = false; in to_case_camel_like()
65 fn append_on_new_word(mut result: String, first_word: bool, character: char, camel_options: &CamelO… in append_on_new_word()
66 if not_first_word_and_has_seperator(first_word, camel_options.has_seperator) { in append_on_new_word()
69 if first_word_or_not_inverted(first_word, camel_options.inverted) { in append_on_new_word()
77 fn not_first_word_and_has_seperator(first_word: bool, has_seperator: bool) -> bool { in not_first_word_and_has_seperator()
78 has_seperator && !first_word in not_first_word_and_has_seperator()
81 fn first_word_or_not_inverted(first_word: bool, inverted: bool) -> bool { in first_word_or_not_inverted()
[all …]
/dports/devel/radare2/radare2-5.1.1/libr/asm/arch/dcpu16/
H A Dasm.c260 ut16 first_word; in dcpu16_assemble() local
281 first_word = ((paramB & 0x3F) << 10) | ((paramA & 0x3F) << 4) | (basic_opcode & 0xF); in dcpu16_assemble()
285 memcpy (out, &first_word, 2); in dcpu16_assemble()
295 out[0] = (first_word>>8) & 0xff; in dcpu16_assemble()
296 out[1] = first_word & 0xff; in dcpu16_assemble()
317 ut16 first_word, wordX = 0; in dcpu16_assemble() local
320 first_word = ((p & 0x3F) << 10) \ in dcpu16_assemble()
324 memcpy (out, &first_word, 2); in dcpu16_assemble()
330 out[0] = (first_word>>8) & 0xff; in dcpu16_assemble()
331 out[1] = first_word & 0xff; in dcpu16_assemble()
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/heck-0.3.3/src/
H A Dlib.rs86 let mut first_word = true; in transform() localVariable
116 if !first_word { in transform()
120 first_word = false; in transform()
127 if !first_word { in transform()
130 first_word = false; in transform()
142 if !first_word { in transform()
145 first_word = false; in transform()
/dports/multimedia/librav1e/rav1e-0.5.1/cargo-crates/heck-0.3.3/src/
H A Dlib.rs86 let mut first_word = true; in transform() localVariable
116 if !first_word { in transform()
120 first_word = false; in transform()
127 if !first_word { in transform()
130 first_word = false; in transform()
142 if !first_word { in transform()
145 first_word = false; in transform()
/dports/misc/broot/broot-1.7.0/cargo-crates/heck-0.3.3/src/
H A Dlib.rs86 let mut first_word = true; in transform() localVariable
116 if !first_word { in transform()
120 first_word = false; in transform()
127 if !first_word { in transform()
130 first_word = false; in transform()
142 if !first_word { in transform()
145 first_word = false; in transform()
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/heck-0.3.3/src/
H A Dlib.rs86 let mut first_word = true; in transform() localVariable
116 if !first_word { in transform()
120 first_word = false; in transform()
127 if !first_word { in transform()
130 first_word = false; in transform()
142 if !first_word { in transform()
145 first_word = false; in transform()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/heck-0.3.3/src/
H A Dlib.rs86 let mut first_word = true; in transform() localVariable
116 if !first_word { in transform()
120 first_word = false; in transform()
127 if !first_word { in transform()
130 first_word = false; in transform()
142 if !first_word { in transform()
145 first_word = false; in transform()
/dports/devel/rust-cbindgen/cbindgen-0.20.0/cargo-crates/heck-0.3.1/src/
H A Dlib.rs79 let mut first_word = true; in transform() localVariable
108 if !first_word { boundary(&mut out); } in transform()
110 first_word = false; in transform()
117 if !first_word { boundary(&mut out); } in transform()
118 else { first_word = false; } in transform()
129 if !first_word { boundary(&mut out); } in transform()
130 else { first_word = false; } in transform()
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/heck-0.3.3/src/
H A Dlib.rs86 let mut first_word = true; in transform() localVariable
116 if !first_word { in transform()
120 first_word = false; in transform()
127 if !first_word { in transform()
130 first_word = false; in transform()
142 if !first_word { in transform()
145 first_word = false; in transform()
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/heck-0.3.3/src/
H A Dlib.rs86 let mut first_word = true; in transform() localVariable
116 if !first_word { in transform()
120 first_word = false; in transform()
127 if !first_word { in transform()
130 first_word = false; in transform()
142 if !first_word { in transform()
145 first_word = false; in transform()
/dports/games/genact/genact-0.10.0/cargo-crates/heck-0.3.1/src/
H A Dlib.rs79 let mut first_word = true; in transform() localVariable
108 if !first_word { boundary(&mut out); } in transform()
110 first_word = false; in transform()
117 if !first_word { boundary(&mut out); } in transform()
118 else { first_word = false; } in transform()
129 if !first_word { boundary(&mut out); } in transform()
130 else { first_word = false; } in transform()
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/cargo-crates/heck-0.3.3/src/
H A Dlib.rs86 let mut first_word = true; in transform() localVariable
116 if !first_word { in transform()
120 first_word = false; in transform()
127 if !first_word { in transform()
130 first_word = false; in transform()
142 if !first_word { in transform()
145 first_word = false; in transform()
/dports/lang/gleam/gleam-0.18.2/cargo-crates/heck-0.3.3/src/
H A Dlib.rs86 let mut first_word = true; in transform() localVariable
116 if !first_word { in transform()
120 first_word = false; in transform()
127 if !first_word { in transform()
130 first_word = false; in transform()
142 if !first_word { in transform()
145 first_word = false; in transform()
/dports/shells/nsh/nsh-0.4.2/cargo-crates/heck-0.3.3/src/
H A Dlib.rs86 let mut first_word = true; in transform() localVariable
116 if !first_word { in transform()
120 first_word = false; in transform()
127 if !first_word { in transform()
130 first_word = false; in transform()
142 if !first_word { in transform()
145 first_word = false; in transform()
/dports/databases/redisjson/RedisJSON-2.0.6/cargo-crates/heck-0.3.3/src/
H A Dlib.rs86 let mut first_word = true; in transform() localVariable
116 if !first_word { in transform()
120 first_word = false; in transform()
127 if !first_word { in transform()
130 first_word = false; in transform()
142 if !first_word { in transform()
145 first_word = false; in transform()
/dports/net-im/libsignal-client/libsignal-client-0.9.6/cargo-crates/heck-0.3.2/src/
H A Dlib.rs81 let mut first_word = true; in transform() localVariable
110 if !first_word { boundary(&mut out); } in transform()
112 first_word = false; in transform()
119 if !first_word { boundary(&mut out); } in transform()
120 else { first_word = false; } in transform()
131 if !first_word { boundary(&mut out); } in transform()
132 else { first_word = false; } in transform()
/dports/devel/grex/grex-1.3.0/cargo-crates/heck-0.3.2/src/
H A Dlib.rs81 let mut first_word = true; in transform() localVariable
110 if !first_word { boundary(&mut out); } in transform()
112 first_word = false; in transform()
119 if !first_word { boundary(&mut out); } in transform()
120 else { first_word = false; } in transform()
131 if !first_word { boundary(&mut out); } in transform()
132 else { first_word = false; } in transform()
/dports/multimedia/rav1e/rav1e-0.5.1/cargo-crates/heck-0.3.3/src/
H A Dlib.rs86 let mut first_word = true; in transform() localVariable
116 if !first_word { in transform()
120 first_word = false; in transform()
127 if !first_word { in transform()
130 first_word = false; in transform()
142 if !first_word { in transform()
145 first_word = false; in transform()

12345678910>>...23