| /external/chromium-trace/catapult/third_party/polymer/components/iron-input/test/ |
| D | iron-input.html | 14 <title>iron-input tests</title> 22 <link rel="import" href="../iron-input.html"> 24 <link rel="import" href="disabled-input.html"> 31 <input is="iron-input"> 37 <input is="iron-input" value="foobar"> 43 <input is="iron-input" bind-value="foobar"> 47 <test-fixture id="prevent-invalid-input"> 49 <input is="iron-input" prevent-invalid-input allowed-pattern="[0-9]"> 53 <test-fixture id="prevent-invalid-input-with-pattern"> 55 <input is="iron-input" prevent-invalid-input pattern="[a-zA-Z]{3}[0-9]*"> [all …]
|
| /external/chromium-trace/catapult/third_party/polymer/components/paper-input/test/ |
| D | paper-input.html | 14 <title>paper-input tests</title> 26 <link rel="import" href="../paper-input.html"> 34 <paper-input></paper-input> 40 <paper-input tabindex="0"></paper-input> 46 <paper-input label="foo"></paper-input> 52 <paper-input label="foo" value="bar"></paper-input> 58 … <paper-input auto-validate pattern="[0-9]*" value="foobar" error-message="error"></paper-input> 64 <paper-input auto-validate required error-message="error"></paper-input> 70 <paper-input required error-message="error"></paper-input> 76 <paper-input auto-validate char-counter required error-message="error"></paper-input> [all …]
|
| /external/tensorflow/tensorflow/core/ops/ |
| D | training_ops.cc | 26 ShapeHandle ShapeOrHandleShape(InferenceContext* c, int input) { in ShapeOrHandleShape() argument 27 auto* handle_data = c->input_handle_shapes_and_types(input); in ShapeOrHandleShape() 32 return c->input(input); in ShapeOrHandleShape() 36 ShapeHandle ShapeOrHandleShape<true>(InferenceContext* c, int input) { in ShapeOrHandleShape() argument 37 auto* handle_data = c->input_handle_shapes_and_types(input); in ShapeOrHandleShape() 42 // If a resource input is missing shape information, we should return in ShapeOrHandleShape() 43 // UnknownShape rather than the shape of the input, which is a scalar in ShapeOrHandleShape() 49 // <s> is an input+output parameter, containing the current known input shape to 61 TF_RETURN_IF_ERROR(c->WithRank(c->input(grad_idx + 1), 1, &indices)); in HandleGradAndIndicesInputs() 77 TF_RETURN_IF_ERROR(c->WithRank(c->input(1), 0, &unused)); // alpha in ApplyGradientDescentShapeFn() [all …]
|
| D | rnn_ops.cc | 27 .Input("x: T") 28 .Input("h_prev: T") 29 .Input("w_ru: T") 30 .Input("w_c: T") 31 .Input("b_ru: T") 32 .Input("b_c: T") 39 TF_RETURN_IF_ERROR(c->WithRank(c->input(0), 2, &x)); in __anonfdaf6b750102() 40 TF_RETURN_IF_ERROR(c->WithRank(c->input(1), 2, &h_prev)); in __anonfdaf6b750102() 53 .Input("x: T") 54 .Input("h_prev: T") [all …]
|
| /external/deqp/android/cts/main/vk-main-2019-03-01/ |
| D | renderpass.txt | 1225 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.clear 1226 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.clear… 1227 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.clear… 1228 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.clear… 1229 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.draw 1230 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.draw_… 1231 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.self_… 1232 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.self_… 1233 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.self_… 1234 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.self_… [all …]
|
| /external/grpc-grpc/src/core/lib/gprpp/ |
| D | if_list.h | 28 auto IfList(CheckArg input, ActionArg action_arg, ActionFail action_fail, in IfList() argument 30 if (check0(input)) return action0(action_arg); in IfList() 36 auto IfList(CheckArg input, ActionArg action_arg, ActionFail action_fail, in IfList() argument 38 if (check0(input)) return action0(action_arg); in IfList() 39 if (check1(input)) return action1(action_arg); in IfList() 46 auto IfList(CheckArg input, ActionArg action_arg, ActionFail action_fail, in IfList() argument 49 if (check0(input)) return action0(action_arg); in IfList() 50 if (check1(input)) return action1(action_arg); in IfList() 51 if (check2(input)) return action2(action_arg); in IfList() 59 auto IfList(CheckArg input, ActionArg action_arg, ActionFail action_fail, in IfList() argument [all …]
|
| /external/antlr/runtime/C/src/ |
| D | antlr3inputstream.c | 2 /// Base functions to initialize and manipulate any input stream 37 // Generic 8 bit input such as latin-1 55 static void antlr3InputClose (pANTLR3_INPUT_STREAM input); 56 static void antlr3InputReset (pANTLR3_INPUT_STREAM input); 57 static void antlr38BitReuse (pANTLR3_INPUT_STREAM input, pANTLR3_UINT8 i… 58 static void * antlr38BitLT (pANTLR3_INPUT_STREAM input, ANTLR3_INT32 lt); 59 static ANTLR3_UINT32 antlr38BitSize (pANTLR3_INPUT_STREAM input); 60 static pANTLR3_STRING antlr38BitSubstr (pANTLR3_INPUT_STREAM input, ANTLR3_MARKER start, ANTL… 61 static ANTLR3_UINT32 antlr38BitGetLine (pANTLR3_INPUT_STREAM input); 62 static void * antlr38BitGetLineBuf (pANTLR3_INPUT_STREAM input); [all …]
|
| /external/MPAndroidChart/MPChartLib/src/main/java/com/github/mikephil/charting/animation/ |
| D | Easing.java | 18 float getInterpolation(float input); in getInterpolation() argument 25 public float getInterpolation(float input) { 26 return input; 32 public float getInterpolation(float input) { 33 return input * input; 39 public float getInterpolation(float input) { 40 return -input * (input - 2f); 46 public float getInterpolation(float input) { 47 input *= 2f; 49 if (input < 1f) { [all …]
|
| /external/boringssl/src/crypto/evp/ |
| D | evp_tests.txt | 8 Input = 308204bc020100300d06092a864886f70d0101010500048204a6308204a20201000282010100cd0081ea7b2ae1e… 15 Input = 30820122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c7… 21 Input = 30820121300d06092a864886f70d01010105000382010e003082010902820100cd0081ea7b2ae1ea06d59f7c73d… 26 Input = 30820122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c7… 31 Input = 30820120300b06092a864886f70d0101010382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c73d9f… 36 Input = 3083000122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7… 42 Input = 30820154020100300d06092a864886f70d01010105000482013e3082013a020100024100dd20403d976a38c9d79… 49 Input = 30820157020100300d06092a864886f70d0101010500048201413082013d0201000241054fa166e205e658bbe8a… 56 Input = 308187020100301306072a8648ce3d020106082a8648ce3d030107046d306b02010104208a872fb62893c4d1ffc… 63 Input = 3041020100301306072a8648ce3d020106082a8648ce3d0301070427302502010104208a872fb62893c4d1ffc5b… [all …]
|
| /external/cronet/third_party/boringssl/src/crypto/evp/ |
| D | evp_tests.txt | 8 Input = 308204bc020100300d06092a864886f70d0101010500048204a6308204a20201000282010100cd0081ea7b2ae1e… 15 Input = 30820122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c7… 21 Input = 30820121300d06092a864886f70d01010105000382010e003082010902820100cd0081ea7b2ae1ea06d59f7c73d… 26 Input = 30820122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c7… 31 Input = 30820120300b06092a864886f70d0101010382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c73d9f… 36 Input = 3083000122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7… 42 Input = 30820154020100300d06092a864886f70d01010105000482013e3082013a020100024100dd20403d976a38c9d79… 49 Input = 30820157020100300d06092a864886f70d0101010500048201413082013d0201000241054fa166e205e658bbe8a… 56 Input = 308187020100301306072a8648ce3d020106082a8648ce3d030107046d306b02010104208a872fb62893c4d1ffc… 63 Input = 3041020100301306072a8648ce3d020106082a8648ce3d0301070427302502010104208a872fb62893c4d1ffc5b… [all …]
|
| /external/rust/crates/combine/src/parser/ |
| D | combinator.rs | 23 impl<Input, O, P> Parser<Input> for NotFollowedBy<P> 25 Input: Stream, 26 P: Parser<Input, Output = O>, 31 parse_mode!(Input); 36 input: &mut Input, in parse_mode_impl() argument 38 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error> in parse_mode_impl() 42 let checkpoint = input.checkpoint(); in parse_mode_impl() 43 let result = self.0.parse_mode(mode, input, state); in parse_mode_impl() 44 ctry!(input.reset(checkpoint).committed()); in parse_mode_impl() 46 CommitOk(_) | PeekOk(_) => PeekErr(Input::Error::empty(input.position()).into()), in parse_mode_impl() [all …]
|
| D | token.rs | 15 pub struct Any<Input>(PhantomData<fn(Input) -> Input>); 17 impl<Input> Parser<Input> for Any<Input> 19 Input: Stream, 21 type Output = Input::Token; 25 fn parse_lazy(&mut self, input: &mut Input) -> ParseResult<Input::Token, Input::Error> { in parse_lazy() 26 uncons(input) in parse_lazy() 44 pub fn any<Input>() -> Any<Input> in any() 46 Input: Stream, in any() 52 pub struct Satisfy<Input, P> { 54 _marker: PhantomData<Input>, [all …]
|
| D | range.rs | 31 pub struct Range<Input>(Input::Range) 33 Input: RangeStream; 35 impl<Input> Parser<Input> for Range<Input> 37 Input: RangeStream, 38 Input::Range: PartialEq + crate::stream::Range, 40 type Output = Input::Range; 46 input: &mut Input, in parse_lazy() argument 47 ) -> ParseResult<Self::Output, <Input as StreamOnce>::Error> { in parse_lazy() 50 let position = input.position(); in parse_lazy() 51 match input.uncons_range(self.0.len()) { in parse_lazy() [all …]
|
| /external/cronet/third_party/boringssl/src/crypto/keccak/ |
| D | keccak_tests.txt | 1 Input: 7 Input: 33 13 Input: ffe6 19 Input: 11a654 25 Input: 9fc87b9c 31 Input: 7c518d2209 37 Input: 8227c838da3e 43 Input: 4f662296b11190 49 Input: fae2503b2539e4ef 55 Input: 36ec9190843bde0cfd [all …]
|
| /external/boringssl/src/crypto/keccak/ |
| D | keccak_tests.txt | 1 Input: 7 Input: 33 13 Input: ffe6 19 Input: 11a654 25 Input: 9fc87b9c 31 Input: 7c518d2209 37 Input: 8227c838da3e 43 Input: 4f662296b11190 49 Input: fae2503b2539e4ef 55 Input: 36ec9190843bde0cfd [all …]
|
| /external/cronet/third_party/libc++/src/test/std/utilities/format/format.range/format.range.fmtset/ |
| D | format.functions.tests.h | 29 std::set input{CharT('a'), CharT('c'), CharT('b')}; // input not sorted. in test_char_default() 32 check(SV("{'a', 'b', 'c'}"), SV("{}"), input); in test_char_default() 34 check(SV("{a, b, c}"), SV("{::}"), input); in test_char_default() 36 check(SV("{'a', 'b', 'c'}"), SV("{::?}"), input); in test_char_default() 41 check(SV("{'a', 'b', 'c'} "), SV("{:20}"), input); in test_char_default() 42 check(SV("{'a', 'b', 'c'}*****"), SV("{:*<20}"), input); in test_char_default() 43 check(SV("__{'a', 'b', 'c'}___"), SV("{:_^20}"), input); in test_char_default() 44 check(SV("#####{'a', 'b', 'c'}"), SV("{:#>20}"), input); in test_char_default() 46 check(SV("{'a', 'b', 'c'} "), SV("{:{}}"), input, 20); in test_char_default() 47 check(SV("{'a', 'b', 'c'}*****"), SV("{:*<{}}"), input, 20); in test_char_default() [all …]
|
| /external/deqp/external/vulkancts/mustpass/main/vk-default/ |
| D | renderpass.txt | 1325 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.clear 1326 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.clear… 1327 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.clear… 1328 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.clear… 1329 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.draw 1330 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.draw_… 1331 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.self_… 1332 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.self_… 1333 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.self_… 1334 dEQP-VK.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.self_… [all …]
|
| /external/cronet/third_party/libc++/src/test/std/containers/container.adaptors/container.adaptors.format/ |
| D | format.functions.tests.h | 30 void test_char_default(TestFunction check, ExceptionTest check_exception, auto&& input) { in test_char_default() argument 32 check(SV("['H', 'e', 'l', 'l', 'o']"), SV("{}"), input); in test_char_default() 35 check(SV("[H, e, l, l, o]"), SV("{::}"), input); in test_char_default() 37 check(SV("['H', 'e', 'l', 'l', 'o']"), SV("{::?}"), input); in test_char_default() 42 check(SV("['H', 'e', 'l', 'l', 'o'] "), SV("{:30}"), input); in test_char_default() 43 check(SV("['H', 'e', 'l', 'l', 'o']*****"), SV("{:*<30}"), input); in test_char_default() 44 check(SV("__['H', 'e', 'l', 'l', 'o']___"), SV("{:_^30}"), input); in test_char_default() 45 check(SV("#####['H', 'e', 'l', 'l', 'o']"), SV("{:#>30}"), input); in test_char_default() 47 check(SV("['H', 'e', 'l', 'l', 'o'] "), SV("{:{}}"), input, 30); in test_char_default() 48 check(SV("['H', 'e', 'l', 'l', 'o']*****"), SV("{:*<{}}"), input, 30); in test_char_default() [all …]
|
| /external/swiftshader/tests/regres/testlists/vk-default/ |
| D | renderpass.txt | 19 dEQP-VK.renderpass.suballocation.formats.r5g6b5_unorm_pack16.input.clear.store.clear 20 dEQP-VK.renderpass.suballocation.formats.r5g6b5_unorm_pack16.input.clear.store.self_dep_clear 21 dEQP-VK.renderpass.suballocation.formats.r5g6b5_unorm_pack16.input.clear.store.draw 22 dEQP-VK.renderpass.suballocation.formats.r5g6b5_unorm_pack16.input.clear.store.self_dep_draw 23 dEQP-VK.renderpass.suballocation.formats.r5g6b5_unorm_pack16.input.clear.store.clear_draw 24 dEQP-VK.renderpass.suballocation.formats.r5g6b5_unorm_pack16.input.clear.store.self_dep_clear_draw 25 dEQP-VK.renderpass.suballocation.formats.r5g6b5_unorm_pack16.input.clear.store.clear_use_input_aspe… 26 dEQP-VK.renderpass.suballocation.formats.r5g6b5_unorm_pack16.input.clear.store.self_dep_clear_use_i… 27 dEQP-VK.renderpass.suballocation.formats.r5g6b5_unorm_pack16.input.clear.store.draw_use_input_aspect 28 dEQP-VK.renderpass.suballocation.formats.r5g6b5_unorm_pack16.input.clear.store.self_dep_draw_use_in… [all …]
|
| /external/deqp/external/vulkancts/mustpass/main/vksc-default/ |
| D | renderpass.txt | 1325 dEQP-VKSC.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.cle… 1326 dEQP-VKSC.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.cle… 1327 dEQP-VKSC.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.cle… 1328 dEQP-VKSC.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.cle… 1329 dEQP-VKSC.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.draw 1330 dEQP-VKSC.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.dra… 1331 dEQP-VKSC.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.sel… 1332 dEQP-VKSC.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.sel… 1333 dEQP-VKSC.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.sel… 1334 dEQP-VKSC.renderpass.dedicated_allocation.formats.a2b10g10r10_uint_pack32.input.clear.dont_care.sel… [all …]
|
| /external/cronet/third_party/libc++/src/test/std/utilities/format/format.range/format.range.fmtmap/ |
| D | format.functions.tests.h | 27 …std::map<CharT, CharT> input{{CharT('a'), CharT('A')}, {CharT('c'), CharT('C')}, {CharT('b'), Char… in test_char() 29 check(SV("{'a': 'A', 'b': 'B', 'c': 'C'}"), SV("{}"), input); in test_char() 34 check(SV("{'a': 'A', 'b': 'B', 'c': 'C'} "), SV("{:35}"), input); in test_char() 35 check(SV("{'a': 'A', 'b': 'B', 'c': 'C'}*****"), SV("{:*<35}"), input); in test_char() 36 check(SV("__{'a': 'A', 'b': 'B', 'c': 'C'}___"), SV("{:_^35}"), input); in test_char() 37 check(SV("#####{'a': 'A', 'b': 'B', 'c': 'C'}"), SV("{:#>35}"), input); in test_char() 39 check(SV("{'a': 'A', 'b': 'B', 'c': 'C'} "), SV("{:{}}"), input, 35); in test_char() 40 check(SV("{'a': 'A', 'b': 'B', 'c': 'C'}*****"), SV("{:*<{}}"), input, 35); in test_char() 41 check(SV("__{'a': 'A', 'b': 'B', 'c': 'C'}___"), SV("{:_^{}}"), input, 35); in test_char() 42 check(SV("#####{'a': 'A', 'b': 'B', 'c': 'C'}"), SV("{:#>{}}"), input, 35); in test_char() [all …]
|
| /external/cronet/third_party/libc++/src/test/std/utilities/format/format.range/format.range.formatter/ |
| D | format.functions.tests.h | 34 void test_char_default(TestFunction check, ExceptionTest check_exception, auto&& input) { in test_char_default() argument 36 check(SV("['H', 'e', 'l', 'l', 'o']"), SV("{}"), input); in test_char_default() 39 check(SV("[H, e, l, l, o]"), SV("{::}"), input); in test_char_default() 41 check(SV("['H', 'e', 'l', 'l', 'o']"), SV("{::?}"), input); in test_char_default() 46 check(SV("['H', 'e', 'l', 'l', 'o'] "), SV("{:30}"), input); in test_char_default() 47 check(SV("['H', 'e', 'l', 'l', 'o']*****"), SV("{:*<30}"), input); in test_char_default() 48 check(SV("__['H', 'e', 'l', 'l', 'o']___"), SV("{:_^30}"), input); in test_char_default() 49 check(SV("#####['H', 'e', 'l', 'l', 'o']"), SV("{:#>30}"), input); in test_char_default() 51 check(SV("['H', 'e', 'l', 'l', 'o'] "), SV("{:{}}"), input, 30); in test_char_default() 52 check(SV("['H', 'e', 'l', 'l', 'o']*****"), SV("{:*<{}}"), input, 30); in test_char_default() [all …]
|
| /external/sdv/vsomeip/third_party/boost/algorithm/include/boost/algorithm/string/ |
| D | erase.hpp | 28 part(s) of the input according to a searching criteria. 38 Remove the given range from the input. The result is a modified copy of 39 the input. It is returned as a sequence or copied to the output iterator. 42 \param Input An input sequence 43 \param SearchRange A range in the input to be removed 45 a modified copy of the input 52 const RangeT& Input, in erase_range_copy() argument 59 Input, in erase_range_copy() 61 ::boost::algorithm::empty_formatter(Input) ); in erase_range_copy() 70 const SequenceT& Input, in erase_range_copy() argument [all …]
|
| /external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/ |
| D | DefaultExtractorInputTest.java | 46 DefaultExtractorInput input = new DefaultExtractorInput(testDataSource, 123, C.LENGTH_UNSET); in initialPosition() local 47 assertThat(input.getPosition()).isEqualTo(123); in initialPosition() 52 DefaultExtractorInput input = createDefaultExtractorInput(); in readMultipleTimes() local 56 bytesRead += input.read(target, 0, TEST_DATA.length); in readMultipleTimes() 58 bytesRead += input.read(target, 3, TEST_DATA.length); in readMultipleTimes() 60 bytesRead += input.read(target, 6, TEST_DATA.length); in readMultipleTimes() 62 assertThat(input.getPosition()).isEqualTo(9); in readMultipleTimes() 68 DefaultExtractorInput input = createDefaultExtractorInput(); in readAlreadyPeeked() local 71 input.advancePeekPosition(TEST_DATA.length); in readAlreadyPeeked() 72 int bytesRead = input.read(target, 0, TEST_DATA.length - 1); in readAlreadyPeeked() [all …]
|
| /external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/ |
| D | DefaultExtractorInputTest.java | 46 DefaultExtractorInput input = new DefaultExtractorInput(testDataSource, 123, C.LENGTH_UNSET); in initialPosition() local 47 assertThat(input.getPosition()).isEqualTo(123); in initialPosition() 52 DefaultExtractorInput input = createDefaultExtractorInput(); in readMultipleTimes() local 56 bytesRead += input.read(target, 0, TEST_DATA.length); in readMultipleTimes() 58 bytesRead += input.read(target, 3, TEST_DATA.length); in readMultipleTimes() 60 bytesRead += input.read(target, 6, TEST_DATA.length); in readMultipleTimes() 62 assertThat(input.getPosition()).isEqualTo(9); in readMultipleTimes() 68 DefaultExtractorInput input = createDefaultExtractorInput(); in readAlreadyPeeked() local 71 input.advancePeekPosition(TEST_DATA.length); in readAlreadyPeeked() 72 int bytesRead = input.read(target, 0, TEST_DATA.length - 1); in readAlreadyPeeked() [all …]
|