Home
last modified time | relevance | path

Searched full:unstructured (Results 1 – 25 of 390) sorted by relevance

12345678910>>...16

/external/rust/crates/arbitrary/src/
Dlib.rs31 pub mod unstructured; module
33 pub use unstructured::Unstructured;
57 /// Generate arbitrary structured values from raw, unstructured data.
61 /// raw, unstructured bytes provided by a fuzzer.
105 /// [`Unstructured`][crate::Unstructured] type helps you with these tasks.
114 /// use arbitrary::{Arbitrary, Result, Unstructured};
120 /// fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> {
137 /// Generate an arbitrary value of `Self` from the given unstructured data.
141 /// raw data in an `Unstructured`, and then you can call `<MyType as
143 /// from that unstructured data.
[all …]
Dunstructured.rs9 //! Wrappers around raw, unstructured bytes.
16 /// A source of unstructured data.
18 /// An `Unstructured` helps `Arbitrary` implementations interpret raw data
21 /// string" (the raw data wrapped by an `Unstructured`) results in a small
25 /// `Unstructured` is deterministic: given the same raw data, the same series of
27 /// like running out of memory). However, `Unstructured` does not guarantee
31 /// You shouldn't generally need to use an `Unstructured` unless you are writing
42 /// Below is what translating the fuzzer's raw input into an `Unstructured` and
47 /// use arbitrary::{Arbitrary, Unstructured};
61 /// // Wrap it in an `Unstructured`.
[all …]
Derror.rs7 /// No choices were provided to the Unstructured::choose call
21 "`arbitrary::Unstructured::choose` must be given a non-empty set of choices" in fmt()
/external/rust/crates/arbitrary/examples/
Dderive_enum.rs9 use arbitrary::{Arbitrary, Unstructured};
19 let raw = b"This is some raw, unstructured data!"; in main()
21 let mut unstructured = Unstructured::new(raw); in main() localVariable
23 let instance = MyEnum::arbitrary(&mut unstructured) in main()
24 .expect("`unstructured` has enough underlying data to create all variants of `MyEnum`"); in main()
/external/rust/crates/arbitrary/tests/
Dderive.rs9 let mut buf = Unstructured::new(input); in arbitrary_from()
54 let s1 = EndingInVec::arbitrary_take_rest(Unstructured::new(&bytes)).unwrap(); in test_take_rest()
55 let s2 = EndingInString::arbitrary_take_rest(Unstructured::new(&bytes)).unwrap(); in test_take_rest()
204 let _ = Nat::arbitrary(&mut Unstructured::new(&[])); in recursive_and_empty_input()
212 let _ = Nat2::arbitrary(&mut Unstructured::new(&[])); in recursive_and_empty_input()
219 let _ = Nat3::arbitrary(&mut Unstructured::new(&[])); in recursive_and_empty_input()
224 let _ = Nat4::arbitrary(&mut Unstructured::new(&[])); in recursive_and_empty_input()
232 let _ = Nat5::arbitrary(&mut Unstructured::new(&[])); in recursive_and_empty_input()
254 #[arbitrary(with = |u: &mut Unstructured| u.int_in_range(0..=100))] in test_field_attributes()
258 fn arbitrary_weight(u: &mut Unstructured) -> arbitrary::Result<Weight> { in test_field_attributes()
/external/rust/crates/arbitrary/
DREADME.md5 …<p><strong>The trait for generating structured data from arbitrary, unstructured input.</strong></…
81 // fn(&mut Unstructured) -> arbitrary::Result<T>
88 #[arbitrary(with = |u: &mut Unstructured| u.int_in_range(0..=64))]
92 fn arbitrary_b(u: &mut Unstructured) -> arbitrary::Result<u8> {
104 use arbitrary::{Arbitrary, Result, Unstructured};
114 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> {
DCHANGELOG.md91 * Fixed a bug where `Unstructured::int_in_range` could return out-of-range
107 * The `Unstructured::arbitrary_loop` method will consume fewer bytes of input
112 * Fixed a bug where `Unstructured::int_in_range` could return out-of-range
160 * Added the `Unstructured::ratio` method to generate a boolean that is `true` at
163 * Added the `Unstructured::arbitrary_loop` method to call a function an
174 * Fixed documentation for `Unstructured::fill_bytes`. We forgot to update this
203 * Use fewer bytes for `Unstructured::int_in_range()` [#80](https://github.com/rust-fuzz/arbitrary/p…
227 * Rename `Unstructured#get_bytes` to `Unstructured#bytes`. [#70](https://github.com/rust-fuzz/arbit…
228 * Passing an empty slice of choices to `Unstructured#choose` returns an error. Previously it would …
260 `Unstructured::{int_in_range, choose, etc..}`.
[all …]
/external/rust/crates/bitflags/src/external/
Darbitrary.rs8 pub fn arbitrary<'a, B: Flags>(u: &mut arbitrary::Unstructured<'a>) -> arbitrary::Result<B> in arbitrary()
30 let mut unstructured = arbitrary::Unstructured::new(&[0_u8; 256]); in test_arbitrary() localVariable
31 let _color = Color::arbitrary(&mut unstructured); in test_arbitrary()
/external/rust/crates/indexmap/src/
Darbitrary.rs4 use arbitrary::{Arbitrary, Result, Unstructured};
13 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
17 fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
27 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
31 fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
/external/rust/crates/uuid/src/external/
Darbitrary_support.rs3 use arbitrary::{Arbitrary, Unstructured};
6 fn arbitrary(u: &mut Unstructured<'_>) -> arbitrary::Result<Self> { in arbitrary()
28 let mut bytes = Unstructured::new(&[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); in test_arbitrary()
38 let mut bytes = Unstructured::new(&[]); in test_arbitrary_empty()
/external/google-cloud-java/java-run/proto-google-cloud-run-v2/src/main/java/com/google/cloud/run/v2/
DExecutionTemplateOrBuilder.java30 * Unstructured key value map that can be used to organize and categorize
50 * Unstructured key value map that can be used to organize and categorize
73 * Unstructured key value map that can be used to organize and categorize
93 * Unstructured key value map that can be used to organize and categorize
117 * Unstructured key value map that can be used to organize and categorize
138 * Unstructured key value map that may be set by external tools to store and
156 * Unstructured key value map that may be set by external tools to store and
177 * Unstructured key value map that may be set by external tools to store and
195 * Unstructured key value map that may be set by external tools to store and
217 * Unstructured key value map that may be set by external tools to store and
DRevisionTemplateOrBuilder.java57 * Unstructured key value map that can be used to organize and categorize
77 * Unstructured key value map that can be used to organize and categorize
100 * Unstructured key value map that can be used to organize and categorize
120 * Unstructured key value map that can be used to organize and categorize
144 * Unstructured key value map that can be used to organize and categorize
165 * Unstructured key value map that may be set by external tools to store and
183 * Unstructured key value map that may be set by external tools to store and
204 * Unstructured key value map that may be set by external tools to store and
222 * Unstructured key value map that may be set by external tools to store and
244 * Unstructured key value map that may be set by external tools to store and
DExecutionTemplate.java112 * Unstructured key value map that can be used to organize and categorize
144 * Unstructured key value map that can be used to organize and categorize
167 * Unstructured key value map that can be used to organize and categorize
197 * Unstructured key value map that can be used to organize and categorize
255 * Unstructured key value map that may be set by external tools to store and
285 * Unstructured key value map that may be set by external tools to store and
306 * Unstructured key value map that may be set by external tools to store and
334 * Unstructured key value map that may be set by external tools to store and
977 * Unstructured key value map that can be used to organize and categorize
1009 * Unstructured key value map that can be used to organize and categorize
[all …]
DExecutionOrBuilder.java98 * Output only. Unstructured key value map that can be used to organize and
113 * Output only. Unstructured key value map that can be used to organize and
131 * Output only. Unstructured key value map that can be used to organize and
146 * Output only. Unstructured key value map that can be used to organize and
165 * Output only. Unstructured key value map that can be used to organize and
181 * Output only. Unstructured key value map that may
195 * Output only. Unstructured key value map that may
212 * Output only. Unstructured key value map that may
226 * Output only. Unstructured key value map that may
244 * Output only. Unstructured key value map that may
/external/rust/crates/smallvec/src/
Darbitrary.rs2 use arbitrary::{Arbitrary, Unstructured};
8 fn arbitrary(u: &mut Unstructured<'a>) -> arbitrary::Result<Self> { in arbitrary()
12 fn arbitrary_take_rest(u: Unstructured<'a>) -> arbitrary::Result<Self> { in arbitrary_take_rest()
/external/google-cloud-java/java-dlp/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/
DTransformationConfigOrBuilder.java33 * can be used for unstructured content such as free-form text files. If this
35 * de-identify unstructured content.
50 * can be used for unstructured content such as free-form text files. If this
52 * de-identify unstructured content.
DTransformationConfig.java26 * unstructures, and image files. User must provide either a unstructured
85 * can be used for unstructured content such as free-form text files. If this
87 * de-identify unstructured content.
113 * can be used for unstructured content such as free-form text files. If this
115 * de-identify unstructured content.
440 * unstructures, and image files. User must provide either a unstructured
657 * can be used for unstructured content such as free-form text files. If this
659 * de-identify unstructured content.
684 * can be used for unstructured content such as free-form text files. If this
686 * de-identify unstructured content.
[all …]
/external/google-cloud-java/java-document-ai/grpc-google-cloud-document-ai-v1beta1/src/main/java/com/google/cloud/documentai/v1beta1/
DDocumentUnderstandingServiceGrpc.java24 * Service to parse structured information from unstructured or semi-structured
138 * Service to parse structured information from unstructured or semi-structured
164 * Service to parse structured information from unstructured or semi-structured
182 * Service to parse structured information from unstructured or semi-structured
221 * Service to parse structured information from unstructured or semi-structured
258 * Service to parse structured information from unstructured or semi-structured
/external/sdk-platform-java/java-common-protos/proto-google-common-protos/src/main/java/com/google/type/
DPostalAddressOrBuilder.java280 * Unstructured address lines describing the lower levels of an address.
296 * then geocoding is the recommended way to handle completely unstructured
310 * Unstructured address lines describing the lower levels of an address.
326 * then geocoding is the recommended way to handle completely unstructured
340 * Unstructured address lines describing the lower levels of an address.
356 * then geocoding is the recommended way to handle completely unstructured
371 * Unstructured address lines describing the lower levels of an address.
387 * then geocoding is the recommended way to handle completely unstructured
/external/rust/crates/dashmap/src/
Darbitrary.rs1 use arbitrary::{Arbitrary, Unstructured};
10 fn arbitrary(u: &mut Unstructured<'a>) -> arbitrary::Result<Self> { in arbitrary()
/external/aws-sdk-java-v2/.changes/2.13.x/
D2.13.11.json13unstructured clinical text and link them to RxNorm and ICD-10-CM codes respectively. This new feat…
/external/rust/beto-rust/common/derive_fuzztest/fuzz/src/bin/
Darbitrary.rs17 use arbitrary::{Arbitrary, Unstructured};
24 fn arbitrary(u: &mut Unstructured<'a>) -> arbitrary::Result<Self> { in arbitrary()
/external/rust/crates/num-bigint/src/biguint/
Darbitrary.rs23 fn arbitrary(u: &mut arbitrary::Unstructured<'_>) -> arbitrary::Result<Self> { in arbitrary()
27 fn arbitrary_take_rest(u: arbitrary::Unstructured<'_>) -> arbitrary::Result<Self> { in arbitrary_take_rest()
/external/rust/crates/num-bigint/src/bigint/
Darbitrary.rs24 fn arbitrary(u: &mut arbitrary::Unstructured<'_>) -> arbitrary::Result<Self> { in arbitrary()
30 fn arbitrary_take_rest(mut u: arbitrary::Unstructured<'_>) -> arbitrary::Result<Self> { in arbitrary_take_rest()
/external/google-cloud-java/java-apikeys/proto-google-cloud-apikeys-v2/src/main/java/com/google/api/apikeys/v2/
DKeyOrBuilder.java269 * Annotations is an unstructured key-value map stored with a policy that
281 * Annotations is an unstructured key-value map stored with a policy that
296 * Annotations is an unstructured key-value map stored with a policy that
308 * Annotations is an unstructured key-value map stored with a policy that
324 * Annotations is an unstructured key-value map stored with a policy that

12345678910>>...16