| /external/sdv/vsomeip/third_party/boost/numeric/odeint/include/boost/numeric/odeint/algebra/ |
| D | fusion_algebra.hpp | 6 Algebra for boost::fusion sequences. 72 typedef boost::fusion::vector< S1& , S2& > Sequences; in for_each2() typedef 73 Sequences sequences( s1 , s2 ); in for_each2() local 74 …boost::fusion::for_each( boost::fusion::zip_view< Sequences >( sequences ) , boost::fusion::make_f… in for_each2() 81 typedef boost::fusion::vector< S1& , S2& , S3& > Sequences; in for_each3() typedef 82 Sequences sequences( s1 , s2 , s3 ); in for_each3() local 83 …boost::fusion::for_each( boost::fusion::zip_view< Sequences >( sequences ) , boost::fusion::make_f… in for_each3() 89 typedef boost::fusion::vector< S1& , S2& , S3& , S4& > Sequences; in for_each4() typedef 90 Sequences sequences( s1 , s2 , s3 , s4 ); in for_each4() local 91 …boost::fusion::for_each( boost::fusion::zip_view< Sequences >( sequences ) , boost::fusion::make_f… in for_each4() [all …]
|
| /external/rust/crates/grpcio-sys/grpc/third_party/utf8_range/utf8_corpus_dir/ |
| D | utf8_corpus_kuhn.txt | 8 sequences. This file is not meant to be a conformance test. It does 18 sequences, as well as correctly encoded UTF-8 sequences of Unicode code 32 mandate this. In any case, just ignoring malformed sequences or 52 malformed sequences is replaced by a single replacement character. 95 3 Malformed sequences | 121 3.2.1 All 32 first bytes of 2-byte sequences (0xc0-0xdf), | 127 3.2.2 All 16 first bytes of 3-byte sequences (0xe0-0xef), | 132 3.2.3 All 8 first bytes of 4-byte sequences (0xf0-0xf7), | 137 3.2.4 All 4 first bytes of 5-byte sequences (0xf8-0xfb), | 142 3.2.5 All 2 first bytes of 6-byte sequences (0xfc-0xfd), | [all …]
|
| /external/grpc-grpc/third_party/utf8_range/utf8_corpus_dir/ |
| D | utf8_corpus_kuhn.txt | 8 sequences. This file is not meant to be a conformance test. It does 18 sequences, as well as correctly encoded UTF-8 sequences of Unicode code 32 mandate this. In any case, just ignoring malformed sequences or 52 malformed sequences is replaced by a single replacement character. 95 3 Malformed sequences | 121 3.2.1 All 32 first bytes of 2-byte sequences (0xc0-0xdf), | 127 3.2.2 All 16 first bytes of 3-byte sequences (0xe0-0xef), | 132 3.2.3 All 8 first bytes of 4-byte sequences (0xf0-0xf7), | 137 3.2.4 All 4 first bytes of 5-byte sequences (0xf8-0xfb), | 142 3.2.5 All 2 first bytes of 6-byte sequences (0xfc-0xfd), | [all …]
|
| /external/zstd/lib/compress/ |
| D | zstd_ldm.h | 34 * Generates the sequences using the long distance match finder. 35 * Generates long range matching sequences in `sequences`, which parse a prefix 36 * of the source. `sequences` must be large enough to store every sequence, 43 * sequences. 46 ldmState_t* ldms, rawSeqStore_t* sequences, 52 * Compresses a block using the predefined sequences, along with a secondary 54 * secondary block compressor, and those sequences are interspersed with the 55 * predefined sequences. Returns the length of the last literals. 56 * Updates `rawSeqStore.pos` to indicate how many sequences have been consumed. 62 * sequences can be any size, and may be longer than the block. In the case that [all …]
|
| D | zstd_compress_sequences.c | 296 seqDef const* sequences, size_t nbSeq, int longOffsets) in ZSTD_encodeSequences_body() argument 314 BIT_addBits(&blockStream, sequences[nbSeq-1].litLength, LL_bits[llCodeTable[nbSeq-1]]); in ZSTD_encodeSequences_body() 316 BIT_addBits(&blockStream, sequences[nbSeq-1].mlBase, ML_bits[mlCodeTable[nbSeq-1]]); in ZSTD_encodeSequences_body() 322 BIT_addBits(&blockStream, sequences[nbSeq-1].offBase, extraBits); in ZSTD_encodeSequences_body() 325 BIT_addBits(&blockStream, sequences[nbSeq-1].offBase >> extraBits, in ZSTD_encodeSequences_body() 328 BIT_addBits(&blockStream, sequences[nbSeq-1].offBase, ofCodeTable[nbSeq-1]); in ZSTD_encodeSequences_body() 341 (unsigned)sequences[n].litLength, in ZSTD_encodeSequences_body() 342 (unsigned)sequences[n].mlBase + MINMATCH, in ZSTD_encodeSequences_body() 343 (unsigned)sequences[n].offBase); in ZSTD_encodeSequences_body() 352 BIT_addBits(&blockStream, sequences[n].litLength, llBits); in ZSTD_encodeSequences_body() [all …]
|
| /external/rust/crates/unicode-bidi/src/ |
| D | prepare.rs | 34 /// Compute the set of isolating run sequences. 40 /// Note: This function does *not* return the sequences in order by their first characters. 49 // Compute the set of isolating run sequences. in isolating_run_sequences() 51 let mut sequences = Vec::with_capacity(runs.len()); in isolating_run_sequences() localVariable 89 sequences.push(sequence); in isolating_run_sequences() 92 // Pop any remaning sequences off the stack. in isolating_run_sequences() 93 sequences.extend(stack.into_iter().rev().filter(|seq| !seq.is_empty())); in isolating_run_sequences() 97 sequences in isolating_run_sequences() 284 let mut sequences = isolating_run_sequences(para_level, classes, &Level::vec(levels)); in test_isolating_run_sequences() localVariable 285 sequences.sort_by(|a, b| a.runs[0].clone().cmp(b.runs[0].clone())); in test_isolating_run_sequences() [all …]
|
| /external/sdv/vsomeip/third_party/boost/fusion/include/boost/fusion/view/zip_view/ |
| D | zip_view.hpp | 47 template<typename Sequences> 49 …e fusion::result_of::find_if<Sequences, mpl::not_<is_reference<mpl::_> > >::type, typename fusion:… 102 template<typename Sequences> 105 typedef typename result_of::transform<Sequences, detail::seq_ref_size>::type sizes; 113 template<typename Sequences> 114 struct zip_view : sequence_base< zip_view<Sequences> > 116 typedef typename result_of::remove<Sequences, unused_type const&>::type real_sequences; 117 BOOST_MPL_ASSERT((detail::all_references<Sequences>)); 122 typedef typename fusion::result_of::as_vector<Sequences>::type sequences; typedef 127 const Sequences& seqs) in zip_view() [all …]
|
| /external/sdv/vsomeip/third_party/boost/algorithm/include/boost/algorithm/ |
| D | is_palindrome.hpp | 35 /// \note This function will return true for empty sequences and for palindromes. 36 /// For other sequences function will return false. 69 /// \note This function will return true for empty sequences and for palindromes. 70 /// For other sequences function will return false. 84 /// \note This function will return true for empty sequences and for palindromes. 85 /// For other sequences function will return false. 99 /// \note This function will return true for empty sequences and for palindromes. 100 /// For other sequences function will return false. 113 /// \note This function will return true for empty sequences and for palindromes. 114 /// For other sequences function will return false. [all …]
|
| /external/rust/crates/anes/src/ |
| D | lib.rs | 1 //! # ANSI Escape Sequences provider & parser 3 //! ## Sequences provider 5 //! The `anes` crate provides ANSI escape sequences you can use to control the terminal 10 //! trait. It means that these sequences can be used in macros like 14 //! Ask if you need more sequences or use the [`sequence!`](macro.sequence.html) macro to create 15 //! your own sequences. 20 //! Not all ANSI escape sequences are supported by all terminals. You can use the 47 //! ## Sequences parser 58 pub use self::sequences::{ 76 mod sequences; module
|
| /external/openscreen/third_party/abseil/src/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/webrtc/third_party/abseil-cpp/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/tensorflow/third_party/absl/abseil-cpp/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/cronet/third_party/abseil-cpp/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/abseil-cpp/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/libtextclassifier/abseil-cpp/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/sdv/vsomeip/third_party/boost/fusion/include/boost/fusion/algorithm/transformation/detail/preprocessed/ |
| D | zip10.hpp | 25 typedef mpl::vector< T0 , T1 > sequences; typedef 26 typedef typename mpl::transform<sequences, add_reference<mpl::_> >::type ref_params; 47 typedef mpl::vector< T0 , T1 , T2 > sequences; typedef 48 typedef typename mpl::transform<sequences, add_reference<mpl::_> >::type ref_params; 69 typedef mpl::vector< T0 , T1 , T2 , T3 > sequences; typedef 70 typedef typename mpl::transform<sequences, add_reference<mpl::_> >::type ref_params; 91 typedef mpl::vector< T0 , T1 , T2 , T3 , T4 > sequences; typedef 92 typedef typename mpl::transform<sequences, add_reference<mpl::_> >::type ref_params; 113 typedef mpl::vector< T0 , T1 , T2 , T3 , T4 , T5 > sequences; typedef 114 typedef typename mpl::transform<sequences, add_reference<mpl::_> >::type ref_params; [all …]
|
| D | zip20.hpp | 25 typedef mpl::vector< T0 , T1 > sequences; typedef 26 typedef typename mpl::transform<sequences, add_reference<mpl::_> >::type ref_params; 47 typedef mpl::vector< T0 , T1 , T2 > sequences; typedef 48 typedef typename mpl::transform<sequences, add_reference<mpl::_> >::type ref_params; 69 typedef mpl::vector< T0 , T1 , T2 , T3 > sequences; typedef 70 typedef typename mpl::transform<sequences, add_reference<mpl::_> >::type ref_params; 91 typedef mpl::vector< T0 , T1 , T2 , T3 , T4 > sequences; typedef 92 typedef typename mpl::transform<sequences, add_reference<mpl::_> >::type ref_params; 113 typedef mpl::vector< T0 , T1 , T2 , T3 , T4 , T5 > sequences; typedef 114 typedef typename mpl::transform<sequences, add_reference<mpl::_> >::type ref_params; [all …]
|
| /external/angle/third_party/abseil-cpp/absl/strings/ |
| D | escaping.h | 43 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 46 // The following unescape sequences can be handled: 48 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 49 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 52 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 56 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 85 // Escapes a 'src' string using C-style escapes sequences 87 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 98 // Escapes a 'src' string using C-style escape sequences, escaping 99 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/sdv/vsomeip/third_party/boost/fusion/doc/ |
| D | introduction.qbk | 59 returning full sequences such as vectors and lists, /Views/ are returned 70 __push_back__ is actually a generic algorithm that works on all sequences. 75 sequences are now implemented only once. 77 Fusion provides full round compatibility with __mpl__. Fusion sequences are 78 fully conforming __mpl__ sequences and __mpl__ sequences are fully compatible 79 with Fusion. You can work with Fusion sequences on __mpl__ if you wish to work 83 Fusion sequences follow __mpl__'s sequence-type preserving semantics (i.e. 87 __mpl__ using pure __mpl__ sequences, then, convert them to Fusion sequences as
|
| /external/webrtc/common_video/h264/ |
| D | h264_common.cc | 26 std::vector<NaluIndex> sequences; in FindNaluIndices() local 28 return sequences; in FindNaluIndices() 44 auto it = sequences.rbegin(); in FindNaluIndices() 45 if (it != sequences.rend()) in FindNaluIndices() 48 sequences.push_back(index); in FindNaluIndices() 58 auto it = sequences.rbegin(); in FindNaluIndices() 59 if (it != sequences.rend()) in FindNaluIndices() 62 return sequences; in FindNaluIndices()
|
| /external/sdv/vsomeip/third_party/boost/mpl/doc/src/refmanual/ |
| D | refmanual.toc | 1 Sequences 2 Sequences/Concepts 3 Sequences/Classes 4 Sequences/Views 5 Sequences/Intrinsic Metafunctions
|
| /external/sdv/vsomeip/third_party/boost/algorithm/doc/ |
| D | mismatch.qbk | 12 …he stl algorithm `mismatch`. The algorithm finds the first point in two sequences where they do no… 16 …ors and an optional comparison predicate. The four iterators define two sequences `[first1, last1)… 18 Consider the two sequences: 30 However, if the two sequences are specified completely, it's clear that where the mismatch occurs. 34 …rs which denote the first mismatching elements in each sequence. If the sequences match completely… 54 …c1.end(), c2.end(), c2.end()) --> <c1.end(), c2.end()> // empty sequences don't match at t… 71 * If the sequences are equal (or both are empty), then mismatch returns the end iterators of both s…
|
| D | equal.qbk | 12 …iants of a the stl algorithm `equal`. The algorithm tests to see if two sequences contain equal va… 16 …ors and an optional comparison predicate. The four iterators define two sequences `[first1, last1)… 18 Consider the two sequences: 28 You can argue that `true` is the correct answer in the first case, even though the sequences are no… 30 However, if the two sequences are specified completely, it's clear that they are not equal. 34 The function `equal` returns true if the two sequences compare equal; i.e, if each element in the s… 52 equal ( c1.end (), c1.end (), c2.end (), c2.end ()) --> true // empty sequences are …
|