/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | StringRef.cpp | 247 /// Chars, or npos if not found. 249 /// Note: O(size() + Chars.size()) 250 StringRef::size_type StringRef::find_first_of(StringRef Chars, 253 for (size_type i = 0; i != Chars.size(); ++i) 254 CharBits.set((unsigned char)Chars[i]); 272 /// in the string \arg Chars, or npos if not found. 274 /// Note: O(size() + Chars.size()) 275 StringRef::size_type StringRef::find_first_not_of(StringRef Chars, 278 for (size_type i = 0; i != Chars.size(); ++i) 279 CharBits.set((unsigned char)Chars[ [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | StringRef.cpp | 233 /// Chars, or npos if not found. 235 /// Note: O(size() + Chars.size()) 236 StringRef::size_type StringRef::find_first_of(StringRef Chars, 239 for (size_type i = 0; i != Chars.size(); ++i) 240 CharBits.set((unsigned char)Chars[i]); 258 /// in the string \arg Chars, or npos if not found. 260 /// Note: O(size() + Chars.size()) 261 StringRef::size_type StringRef::find_first_not_of(StringRef Chars, 264 for (size_type i = 0; i != Chars.size(); ++i) 265 CharBits.set((unsigned char)Chars[ [all...] |
H A D | GlobPattern.cpp | 85 StringRef Chars = S.substr(1, End - 1); in scan() 87 if (Chars.startswith("^") || Chars.startswith("!")) { in scan() 88 Expected<BitVector> BV = expand(Chars.substr(1), Original); in scan() 93 return expand(Chars, Original); in scan()
|
H A D | ScaledNumber.cpp | 186 SmallVector<char, 24> Chars; 187 Float.toString(Chars, Precision, 0); 188 return std::string(Chars.begin(), Chars.end());
|
H A D | raw_ostream.cpp | 476 static const char Chars[] = {C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, in write_padding() local 483 if (NumChars < array_lengthof(Chars)) in write_padding() 484 return OS.write(Chars, NumChars); in write_padding() 488 (unsigned)array_lengthof(Chars)-1); in write_padding() 489 OS.write(Chars, NumToWrite); in write_padding()
|
/third_party/rust/crates/codespan/codespan-reporting/src/term/ |
H A D | config.rs | 19 pub chars: Chars, 36 chars: Chars::default(), in default() 197 pub struct Chars { structure names 255 impl Default for Chars { 256 fn default() -> Chars { in default() 257 Chars { in default()
|
H A D | renderer.rs | 7 use crate::term::{Chars, Config, Styles}; 125 fn chars(&self) -> &'config Chars { in chars()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | SmallString.h | 181 /// Find the first character in the string that is in \p Chars, or npos if 184 /// Complexity: O(size() + Chars.size()) 185 size_t find_first_of(StringRef Chars, size_t From = 0) const { in find_first_of() argument 186 return str().find_first_of(Chars, From); in find_first_of() 196 /// \p Chars, or npos if not found. 198 /// Complexity: O(size() + Chars.size()) 199 size_t find_first_not_of(StringRef Chars, size_t From = 0) const { in find_first_not_of() argument 200 return str().find_first_not_of(Chars, From); in find_first_not_of() 212 /// Complexity: O(size() + Chars.size()) 214 StringRef Chars, size_ in find_last_of() 213 find_last_of( StringRef Chars, size_t From = StringRef::npos) const find_last_of() argument [all...] |
H A D | StringRef.h | 396 /// Find the first character in the string that is in \p Chars, or npos if 399 /// Complexity: O(size() + Chars.size()) 401 size_t find_first_of(StringRef Chars, size_t From = 0) const; 409 /// \p Chars, or npos if not found. 411 /// Complexity: O(size() + Chars.size()) 413 size_t find_first_not_of(StringRef Chars, size_t From = 0) const; 425 /// Complexity: O(size() + Chars.size()) 427 size_t find_last_of(StringRef Chars, size_t From = npos) const; 434 /// Find the last character in the string that is not in \p Chars, or 437 /// Complexity: O(size() + Chars [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | SmallString.h | 180 /// Find the first character in the string that is in \p Chars, or npos if 183 /// Complexity: O(size() + Chars.size()) 184 size_t find_first_of(StringRef Chars, size_t From = 0) const { in find_first_of() argument 185 return str().find_first_of(Chars, From); in find_first_of() 195 /// \p Chars, or npos if not found. 197 /// Complexity: O(size() + Chars.size()) 198 size_t find_first_not_of(StringRef Chars, size_t From = 0) const { in find_first_not_of() argument 199 return str().find_first_not_of(Chars, From); in find_first_not_of() 211 /// Complexity: O(size() + Chars.size()) 213 StringRef Chars, size_ in find_last_of() 212 find_last_of( StringRef Chars, size_t From = StringRef::npos) const find_last_of() argument [all...] |
H A D | StringRef.h | 405 /// Find the first character in the string that is in \p Chars, or npos if 408 /// Complexity: O(size() + Chars.size()) 410 size_t find_first_of(StringRef Chars, size_t From = 0) const; 418 /// \p Chars, or npos if not found. 420 /// Complexity: O(size() + Chars.size()) 422 size_t find_first_not_of(StringRef Chars, size_t From = 0) const; 434 /// Complexity: O(size() + Chars.size()) 436 size_t find_last_of(StringRef Chars, size_t From = npos) const; 443 /// Find the last character in the string that is not in \p Chars, or 446 /// Complexity: O(size() + Chars [all...] |
/third_party/cups-filters/filter/ |
H A D | texttopdf.c | 131 unsigned short Chars[256]; /* Input char to unicode */ variable 369 memset(Chars, 0, sizeof(Chars)); in WriteProlog() 607 Chars[ch] = unicode; in WriteProlog() 813 Chars[i] = i; in WriteProlog() 897 lastfont = Codes[Chars[line->ch]]; in write_line() 913 font = Codes[Chars[line->ch]]; in write_line() 940 font = Codes[Chars[line->ch]]; in write_line() 1109 lastfont=Codes[Chars[str->ch]]; in write_font_str() 1131 ch=Chars[st in write_font_str() [all...] |
/third_party/lzma/CS/7zip/Common/ |
H A D | CommandLineParser.cs | 225 int len = charsSet.Chars.Length;
in ParseSubCharsCommand() 228 char c = charsSet.Chars[j];
in ParseSubCharsCommand() 271 public string Chars = "";
field in SevenZip.CommandLineParser.CommandSubCharsSet
|
/third_party/googletest/googlemock/test/ |
H A D | gmock-internal-utils_test.cc | 589 typedef std::vector<char> Chars; in TEST() typedef 590 Chars v1; in TEST() 591 const Chars& v2(StlContainerView<Chars>::ConstReference(v1)); in TEST() 595 Chars v3 = StlContainerView<Chars>::Copy(v1); in TEST()
|
/third_party/rust/crates/codespan/codespan-reporting/src/ |
H A D | term.rs | 15 pub use self::config::{Chars, Config, DisplayStyle, Styles};
|
/third_party/typescript/tests/baselines/reference/ |
H A D | templateLiteralTypes1.js | 170 type Chars<S extends string> = 172 S extends `${infer C0}${infer C1}${infer C2}${infer C3}${infer C4}${infer C5}${infer C6}${infer C7}${infer C8}${infer C9}${infer R}` ? [C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, ...Chars<R>] : 173 S extends `${infer C}${infer R}` ? [C, ...Chars<R>] : 177 type L1 = Chars<'FooBarBazThisIsALongerString'>; // ['F', 'o', 'o', 'B', 'a', 'r', ...]
|
/third_party/rust/crates/humantime/src/ |
H A D | duration.rs | 3 use std::str::Chars; 98 iter: Chars<'a>,
|
/third_party/rust/crates/strsim-rs/src/ |
H A D | lib.rs | 11 use std::str::Chars; 137 type IntoIter = Chars<'b>;
|
/third_party/rust/crates/nom/src/ |
H A D | traits.rs | 9 use crate::lib::std::str::Chars; 380 type IterElem = Chars<'a>;
|
/third_party/rust/crates/proc-macro2/src/ |
H A D | parse.rs | 7 use core::str::{Bytes, CharIndices, Chars}; 57 fn chars(&self) -> Chars<'a> { in as_bytes()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | cord.h | 503 // you create one implicitly through use of the `Cord::Chars()` member 570 // Generally, prefer using `Cord::Chars()` within a range-based for loop for 579 // Generally, prefer using `Cord::Chars()` within a range-based for loop for 590 // instead, prefer to use the `Cord::Chars()` method show below. 605 // Cord::CharIterator::Chars() 609 // tasks on a Cord, use `Cord::Chars()` to retrieve this iterator. 614 // for (char c : cord.Chars()) { ... } 620 // for (char c : CordFactory().Chars()) { 624 CharRange Chars() const; 1422 inline Cord::CharRange Cord::Chars() cons function in absl::Cord [all...] |
H A D | cord_test.cc | 1579 absl::Cord::CharRange range = cord.Chars();
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | 4667 r#"Chars(['ศ', 'ไ', 'ท', 'ย', '中', '华', 'V', 'i', 'ệ', 't', ' ', 'N', 'a', 'm'])"# in test_chars_debug() 5570 // Chars of 1, 2, 3, and 4 bytes in utf8_chars() 15023 pub use core::str::{from_utf8, from_utf8_mut, Bytes, CharIndices, Chars}; 16229 use crate::str::{self, from_boxed_utf8_unchecked, Chars, FromStr, Utf8Error}; 18716 iter: Chars<'a>, [all...] |