/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/python/cryptography/vectors/cryptography_vectors/keywrap/ |
D | kwp_botan.txt | 7 Input = c37b7e6492584340bed12207808941155068f738 12 Input = 466f7250617369 19 Input = 00 24 Input = 0001 29 Input = 000102 34 Input = 00010203 39 Input = 0001020304 44 Input = 000102030405 49 Input = 00010203040506 54 Input = 0001020304050607 [all …]
|
/external/python/cryptography/vectors/cryptography_vectors/KDF/ |
D | ansx963_2001.txt | 15 Hash input 1 = 1c7d7b5f0597b03d06a018466ed1a93e30ed4b04dc64ccdd00000001 23 Hash input 1 = 5ed096510e3fcf782ceea98e9737993e2b21370f6cda2ab100000001 31 Hash input 1 = 9fb06aa8dd20e947c9216359630e588b6cd522dd71865ab000000001 39 Hash input 1 = 613411bedfba26cbddec4fd68c3ae2c40a2255ae0f5c46ee00000001 47 Hash input 1 = 445776ec51f2c9aae125dd6d6832210eee69249c4c7ad2db00000001 55 Hash input 1 = 1c3a4b420de31f5092e0568847d8ba9f84376ccfe5224c1900000001 63 Hash input 1 = 0147fee06dd9918cd1654132227313b104bf99b1ad1f1c4600000001 71 Hash input 1 = 50ee47d625dcb6a6196c148d452e99bb0a1cf1fa82cdc3a900000001 79 Hash input 1 = ea2c79dc2ef00afa448cb8d390998d5a18f27f5d888e472c00000001 87 Hash input 1 = 424d414d4b63c7cafe05d4d8bf8b6ce4438eb329a650354f00000001 [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 …]
|
D | paper-textarea.html | 70 test('setting value sets the input value', function() { 71 var input = fixture('basic'); 72 input.value = 'foobar'; 73 … assert.equal(input.inputElement.bindValue, input.value, 'inputElement value equals input.value'); 76 test('empty required input shows error', function() { 77 var input = fixture('required'); 78 forceXIfStamp(input); 79 var error = Polymer.dom(input.root).querySelector('paper-input-error'); 80 assert.ok(error, 'paper-input-error exists'); 85 var input = fixture('basic'); [all …]
|
D | paper-input-container.html | 14 <title>paper-input-container tests</title> 25 <link rel="import" href="../../iron-input/iron-input.html"> 26 <link rel="import" href="../paper-input-container.html"> 34 <paper-input-container> 36 <input id="i"> 37 </paper-input-container> 43 <paper-input-container> 46 <input is="iron-input" id="i"> 47 </paper-input-container> 53 <paper-input-container> [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 | mkl_nn_ops.cc | 36 .Input("input: T") 37 .Input("filter: T") 55 .Input("input_sizes: Tshape") 56 .Input("filter: T") 57 .Input("out_backprop: T") 73 MKL version of Convolution3D backward input op that does not depend on layout 75 respect to the input. 82 .Input("input: T") 83 .Input("filter_sizes: int32") 84 .Input("out_backprop: T") [all …]
|
D | nn_ops.cc | 36 ShapeHandle input; in FractionalPoolShapeFn() local 37 TF_RETURN_IF_ERROR(c->WithRank(c->input(0), 4, &input)); in FractionalPoolShapeFn() 47 DimensionHandle d = c->Dim(input, i); in FractionalPoolShapeFn() 73 .Input("value: T") 83 .Input("orig_input_shape: int32") 84 .Input("grad: T") 96 .Input("t: T") 97 .Input("m: T") 98 .Input("v: T") 99 .Input("beta: T") [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 __anon652ace880102() 40 TF_RETURN_IF_ERROR(c->WithRank(c->input(1), 2, &h_prev)); in __anon652ace880102() 53 .Input("x: T") 54 .Input("h_prev: T") [all …]
|
D | experimental_dataset_ops.cc | 21 .Input("input_dataset: variant") 22 .Input("cardinality: int64") 29 TF_RETURN_IF_ERROR(c->WithRank(c->input(1), 0, &unused)); in __anon4afff42d0102() 34 .Input("input_dataset: variant") 35 .Input("transformations: string") 42 TF_RETURN_IF_ERROR(c->WithRank(c->input(1), 1, &unused)); in __anon4afff42d0202() 47 .Input("input_dataset: variant") 48 .Input("transformations: string") 55 TF_RETURN_IF_ERROR(c->WithRank(c->input(1), 1, &unused)); in __anon4afff42d0302() 60 .Input("input_dataset: variant") [all …]
|
D | dataset_ops.cc | 24 // The ops in this section can be composed to define an input 33 // take one as input) are marked "stateful". 36 .Input("components: Toutput_types") 48 .Input("components: Toutput_types") 60 .Input("indices: int64") 61 .Input("values: Tvalues") 62 .Input("dense_shape: int64") 70 .Input("init_func_other_args: Tinit_func_args") 71 .Input("next_func_other_args: Tnext_func_args") 72 .Input("finalize_func_other_args: Tfinalize_func_args") [all …]
|
/external/boringssl/src/crypto/evp/ |
D | evp_tests.txt | 8 Input = 308204bc020100300d06092a864886f70d0101010500048204a6308204a20201000282010100cd0081ea7b2ae1e… 15 Input = 30820122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c7… 21 Input = 30820121300d06092a864886f70d01010105000382010e003082010902820100cd0081ea7b2ae1ea06d59f7c73d… 26 Input = 30820120300b06092a864886f70d0101010382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c73d9f… 31 Input = 3083000122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7… 37 Input = 30820154020100300d06092a864886f70d01010105000482013e3082013a020100024100dd20403d976a38c9d79… 44 Input = 30820157020100300d06092a864886f70d0101010500048201413082013d0201000241054fa166e205e658bbe8a… 51 Input = 308187020100301306072a8648ce3d020106082a8648ce3d030107046d306b02010104208a872fb62893c4d1ffc… 58 Input = 3041020100301306072a8648ce3d020106082a8648ce3d0301070427302502010104208a872fb62893c4d1ffc5b… 65 Input = 308193020100301306072a8648ce3d020106082a8648ce3d0301070479307702010104208a872fb62893c4d1ffc… [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 …]
|
D | antlr3filestream.c | 3 * is a filesystem based input set and all the characters in the filestream 7 * sets can be supported from input files. The ANTLR3 C runtime expects 49 static void setupInputStream (pANTLR3_INPUT_STREAM input); 56 pANTLR3_INPUT_STREAM input; in antlr3FileStreamNew() local 63 input = antlr3CreateFileStream(fileName); in antlr3FileStreamNew() 64 if (input == NULL) in antlr3FileStreamNew() 72 input->encoding = encoding; in antlr3FileStreamNew() 77 setupInputStream(input); in antlr3FileStreamNew() 81 input->istream->streamName = input->strFactory->newStr8(input->strFactory, fileName); in antlr3FileStreamNew() 82 input->fileName = input->istream->streamName; in antlr3FileStreamNew() [all …]
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | CodedInputStreamReader.java | 53 private final CodedInputStream input; field in CodedInputStreamReader 58 public static CodedInputStreamReader forCodedInput(CodedInputStream input) { in forCodedInput() argument 59 if (input.wrapper != null) { in forCodedInput() 60 return input.wrapper; in forCodedInput() 62 return new CodedInputStreamReader(input); in forCodedInput() 65 private CodedInputStreamReader(CodedInputStream input) { in CodedInputStreamReader() argument 66 this.input = Internal.checkNotNull(input, "input"); in CodedInputStreamReader() 67 this.input.wrapper = this; in CodedInputStreamReader() 72 return input.shouldDiscardUnknownFields(); in shouldDiscardUnknownFields() 81 tag = input.readTag(); in getFieldNumber() [all …]
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-input/ |
D | paper-input-container.html | 17 `<paper-input-container>` is a container for a `<label>`, an `<input is="iron-input">` or 23 <paper-input-container> 25 <input is="iron-input"> 26 </paper-input-container> 28 Do not wrap `<paper-input-container>` around elements that already include it, such as `<paper-inpu… 31 ### Listening for input changes 37 ### Using a custom input element 39 You can use a custom input element in a `<paper-input-container>`, for example to implement a 40 compound input field like a social security number input. The custom input element should have the 41 `paper-input-input` class, have a `notify:true` value property and optionally implements [all …]
|
D | paper-input-behavior.html | 24 * Use `Polymer.PaperInputBehavior` to implement inputs with `<paper-input-container>`. This 25 * behavior is implemented by `<paper-input>`. It exposes a number of properties from 26 * `<paper-input-container>` and `<input is="iron-input">` and they should be bound in your 29 * The input element can be accessed by the `inputElement` property if you need to access 37 * Fired when the input changes due to user interaction. 43 * The label for this input. If you're using PaperInputBehavior to 44 * implement your own paper-input-like element, bind this to 53 * The value for this input. If you're using PaperInputBehavior to 54 * implement your own paper-input-like element, bind this to 55 * the `<input is="iron-input">`'s `bindValue` [all …]
|
/external/exoplayer/tree/library/extractor/src/test/java/com/google/android/exoplayer2/extractor/ |
D | DefaultExtractorInputTest.java | 46 DefaultExtractorInput input = in initialPosition() local 48 assertThat(input.getPosition()).isEqualTo(123); in initialPosition() 53 DefaultExtractorInput input = createDefaultExtractorInput(); in readMultipleTimes() local 57 bytesRead += input.read(target, 0, TEST_DATA.length); in readMultipleTimes() 59 bytesRead += input.read(target, 3, TEST_DATA.length); in readMultipleTimes() 61 bytesRead += input.read(target, 6, TEST_DATA.length); in readMultipleTimes() 63 assertThat(input.getPosition()).isEqualTo(9); in readMultipleTimes() 69 DefaultExtractorInput input = createDefaultExtractorInput(); in readAlreadyPeeked() local 72 input.advancePeekPosition(TEST_DATA.length); in readAlreadyPeeked() 73 int bytesRead = input.read(target, 0, TEST_DATA.length - 1); in readAlreadyPeeked() [all …]
|
/external/ImageMagick/PerlMagick/t/ |
D | setattribute.t | 31 testSetAttribute('input.miff','adjoin','True'); 34 testSetAttribute('input.miff','adjoin','False'); 37 testSetAttribute('input.miff','antialias','True'); 40 testSetAttribute('input.miff','antialias','False'); 43 testSetAttribute('input.miff','compression','None'); 46 testSetAttribute('input.miff','compression','JPEG'); 49 testSetAttribute('input.miff','compression','LZW'); 52 testSetAttribute('input.miff','compression','RLE'); 55 testSetAttribute('input.miff','compression','Zip'); 58 testSetAttribute('input.miff','density','72x72'); [all …]
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/ |
D | operations.cc | 270 int32_t CalculateOutputSizeBeforeStrides(int32_t input, int32_t kernel, in CalculateOutputSizeBeforeStrides() argument 273 return input + padding - dilated_kernel + 1; in CalculateOutputSizeBeforeStrides() 277 int32_t CalculateOutputWithoutStrides(const BHWC& input, in CalculateOutputWithoutStrides() argument 280 input.get<T>(), attr.weights.shape.get<T>(), in CalculateOutputWithoutStrides() 286 int32_t CalculateOutputWithoutStrides(const BHWDC& input, in CalculateOutputWithoutStrides() argument 289 input.get<T>(), attr.weights.shape.get<T>(), in CalculateOutputWithoutStrides() 295 int32_t CalculateOutputWithoutStrides(const BHWC& input, in CalculateOutputWithoutStrides() argument 298 input.get<T>(), attr.kernel.get<T>(), in CalculateOutputWithoutStrides() 304 int32_t CalculateOutputWithoutStrides(const BHWDC& input, in CalculateOutputWithoutStrides() argument 307 input.get<T>(), attr.kernel.get<T>(), in CalculateOutputWithoutStrides() [all …]
|
/external/llvm-project/llvm/test/tools/llvm-profdata/ |
D | invalid-profdata.test | 1 RUN: echo ":ir" > %t.input 2 RUN: echo "_ZN6Thread5StartEv" >> %t.input 3 RUN: echo "# Func Hash:" >> %t.input 4 RUN: echo "288793635542036872" >> %t.input 5 RUN: echo "# Num Counters:" >> %t.input 6 RUN: echo "3" >> %t.input 7 RUN: echo "# Counter Values:" >> %t.input 8 RUN: echo "0" >> %t.input 9 RUN: echo "12" >> %t.input 10 RUN: echo "12" >> %t.input [all …]
|
/external/tensorflow/tensorflow/core/grappler/costs/graph_properties_testdata/ |
D | large_function_graph.pbtxt | 29 input: "Const/Const" 87 input: "Const_1/Const" 145 input: "Const_2/Const" 203 input: "Const_3/Const" 233 input: "input_0_0" 234 input: "input_1_0" 235 input: "input_2_0" 236 input: "input_3_0" 237 input: "^input_0_0" 238 input: "^input_1_0" [all …]
|
/external/rust/crates/proc-macro2/src/ |
D | parse.rs | 65 fn skip_whitespace(input: Cursor) -> Cursor { in skip_whitespace() 66 let mut s = input; in skip_whitespace() 113 fn block_comment(input: Cursor) -> PResult<&str> { in block_comment() 114 if !input.starts_with("/*") { in block_comment() 119 let bytes = input.as_bytes(); in block_comment() 130 return Ok((input.advance(i + 2), &input.rest[..i + 2])); in block_comment() 145 fn word_break(input: Cursor) -> Result<Cursor, Reject> { in word_break() 146 match input.chars().next() { in word_break() 148 Some(_) | None => Ok(input), in word_break() 152 pub(crate) fn token_stream(mut input: Cursor) -> Result<TokenStream, LexError> { in token_stream() [all …]
|
/external/turbine/javatests/com/google/turbine/parse/ |
D | ParserIntegrationTest.java | 44 "anno1.input", in parameters() 45 "annodecl1.input", in parameters() 46 "annodecl2.input", in parameters() 47 "annodecl3.input", in parameters() 48 "annouse.input", in parameters() 49 "annouse2.input", in parameters() 50 "annouse3.input", in parameters() 51 "annouse4.input", in parameters() 52 "annouse5.input", in parameters() 53 "annouse6.input", in parameters() [all …]
|